Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: Stop WordPress Asking For FTP details To Upgrade Plugins  (Read 2781 times)

0 Members and 1 Guest are viewing this topic.

Vinil

  • Guest
Stop WordPress Asking For FTP details To Upgrade Plugins
« on: November 19, 2013, 10:18:06 pm »
To stop WordPress Asking For FTP details To Upgrade Plugins,

- Open up your wp-config.php file.
- Here you need to add your ftp login information so you will never have to type it in again. Now add the following bit of code to your wp-config.php file.


Code: [Select]
//*added ftp login credentials to avoid WordPress asking for FTP details every time I wanted to upgrade a plugin*
define('FTP_HOST', 'ftp.yoursite.com');
define('FTP_USER', 'Your_FTP_Username');
define('FTP_PASS', 'Your_FTP_password');
//*If you can use a SSL connection set this to true*
define('FTP_SSL', true);