wp-config.php uses ” instead of ‘ for the password
-
I just started using Duplicator and had a problem getting it running in the first place. I debugged and found the problem: In wp-config.php the Password is inside Double Qutation marks instead of single ones. This is the file I get when running the installer.php
define(‘DB_NAME’, ‘name’);/** MySQL database username */
define(‘DB_USER’, ‘name’);/** MySQL database password */
define(‘DB_PASSWORD’, “password”);And this is the original file from the backup:
define(‘DB_NAME’, ‘name’);/** MySQL database username */
define(‘DB_USER’, ‘name’);/** MySQL database password */
define(‘DB_PASSWORD’, ‘password’);Only the original one works for me. Maybe because of special characters in the password, even though I don’t have ” or ‘ in my password.
I thought this was noteworthy, since it took me some time to figure it out. Couldn’t find the problem in the forum. Do you already know about it?
Other than that, awesome plugin, works really well!
All the best
Johannes
- The topic ‘wp-config.php uses ” instead of ‘ for the password’ is closed to new replies.