Reputation: 163
I'm new to Akeneo and have just set up a docker environment with version 1.4.12. The site is working, but I have copied over our production database and cannot log in now. I can see the oro_user table with the salt and passwords, but need to reset the admin password for my development environment. Our administrator who knows the password is away for a while (Xmas season).
I found the php app/console security:encode-password
utility. This outputs values to be inserted in the database but these do not seem to be working. The generated password hash is in the form of mypassword{HASHSTRING}
- and the HASHSTRING is matching the salt value (which seems wrong). I've tried the exact generated password value and only the HASHSTRING within the braces. These values are put into the corresponding database fields.
So far no luck. Any tips are appreciated.
Upvotes: 3
Views: 3117
Reputation: 31
Try running app/console server:run and logging through localhost:8000
Upvotes: 0
Reputation: 841
The reason why you cannot login is because your secret parameter in app/config/parameters.yml is not the same between your development environment and your production environment.
You can also use our reset password feature available here: http://yourinstall/user/reset-request
Upvotes: 3