Skip to content
vesse edited this page Mar 15, 2013 · 2 revisions
  • How can I import the production database to my development environment?
  • Can I run QA Reports with multiple servers, e.g., two application servers + one database server?
    • Yes, you can. However, your application servers need to have shared file system for <application root>/shared -folder. Otherwise, uploading the attachments will fail.
  • Can I configure QA Reports to use LDAP as an authentication method?
    • Currently QA Reports supports authentication only with QA Reports accounts. However, you can configure Apache to require HTTP Basic authentication with LDAP. With this kind of setup, only authenticated users can access the site.
  • How can I reset a user password?
    • If a user has forgotten his password you need to login to your production environment, go to folder qa-reports/current, and run RAILS_ENV=production rails console. To update the reset the password run the following:
user = User.where(:email => '[email protected]`)
user.password = 'new_password'
user.password_confirmation = 'new_password'
user.save()
Clone this wiki locally