Reputation: 13
File name: /config/settings.inc.php
, this file includes server
, dbname
, dbuser
, dbpassword
, etc...
This is the line which I am having problems:
define('_DB_PASSWD_', '(x02SPOv(1');
I don't know how is encrypted that value, I tried MD5, because is the way the user's passwords are stored in the users table ((value + key)->md5)
, but it didn't work.
Any idea which is the encryption of this field?
Upvotes: 1
Views: 1384
Reputation: 2035
This string is not encrypted at all. It's an actual password for the database. You can find more information about the config files here: http://doc.prestashop.com/display/PS16/System+Administrator+Guide#SystemAdministratorGuide-MySQLconfiguration
Upvotes: 1