How To Store Your WordPress Password
I’ve noticed that the current version of Wordpress insists that I enter my FTP password every time I use the WP interface to install a theme, plugin or make an upgrade.
This never used to be the case and as I use the most ridiculously complex passwords it’s been a bit of a headache.
Thankfully you can hard-wire your FTP details into the wp-config.php file by pasting the code below …
define("FTP_HOST", "domain.tld");
define("FTP_USER", "username");
define("FTP_PASS", "password");
This may save you a little frustration and time.
Popularity: 3% [?]
