tenchunk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: establishing a database connection errorThanks @mateusgetulio, finally, I resolved this problem. The password is actual plain text. I let godaddy reset my password, it’s working now.
Thanks so much dude!Forum: Fixing WordPress
In reply to: establishing a database connection error@mateusgetulio, I installed two new version wordpress on two different folders just now, the passwords are same like encrypt, even if I use same password for both, the encrypt results are different, I think they use different salts.
Forum: Fixing WordPress
In reply to: establishing a database connection error@mateusgetulio, but my old wp-config.php file is using an encrypted password.
like this:
/** MySQL database password */
define(‘DB_PASSWORD’, ‘f4D#34fvAcJO9’);
…define(‘AUTH_KEY’, ‘# 7n_wQAQ*O0PUpm(@c#’);
define(‘SECURE_AUTH_KEY’, ‘_6H3Ntajb(pryvPO3RKaW’);
define(‘LOGGED_IN_KEY’, ‘GZYz2s*((cyr&%/8Jc!Cxf’);
define(‘NONCE_KEY’, ‘*EpVHbqr0BG1x-6HAp ‘);
define(‘AUTH_SALT’, ‘DN@z%%zZIr_9zG(tRtKhX’);
define(‘SECURE_AUTH_SALT’, ‘MTBr*pRItpM3f6V/#GBzG’);
define(‘LOGGED_IN_SALT’, ‘YK&0IRvxuYfb!_yv@wxAO’);
define(‘NONCE_SALT’, ‘DZ8vBQMI1=yWk*%Z=1mbL’);It’s not plain text(I know my old password, but it’s not ‘f4D#34fvAcJO9’), so how should I set the password as same as my reset password?