We wouldn’t get the typical “can’t write files” error on this blog. Instead we were provided a screen with FTP login. The problem was that we would fill in the FTP credentials and it would still fail… this time based on good credentials!
I got in touch with our friends at Lifeline Data Centers, Indiana’s largest data center, since they have some Apache geeks and have configured their own servers. They provided me with a simple solution – adding the FTP credentials directly within the wp-config.php file to hardcode the FTP credentials:
define('FTP_HOST', 'localhost'); define('FTP_USER', 'username'); define('FTP_PASS', 'password');
For some reason, the identical credentials that did not work in the form, worked perfectly when put in the configuration file! As well, it makes WordPress act just like it would without the need for FTP…. just click update and go!