WordPress Automatic Upgrade Tip
As a tip to everyone who uses WordPress 2.5 and needs to input their FTP details every time, you can force WordPress to remember them by adding this to your wp-config.php:
define('FTP_HOST', 'ftp://example.com/');
define('FTP_USER', 'example_user');
define('FTP_PASS', 'example_pass');
//Set to true if your host uses SSL connections
define('FTP_SSL', false);
This can be reduced to just your password, if your database already remembers the other details.
Wordpress automatic plugin upgrade ftp details fix | David Parkinson - Internet Entrepreneur - My Journey
Trackback at 4:56 am on April 17th, 2008Hmm… Fixed.