01
Jul
How to stop wordpress asks you to provide ftp to upgrade Worpress or Plugin?
Posted On : July 1, 2013
| No Comment
Are you hosting your WordPress sites on one of those hosts where WordPress asks you to provide FTP details before upgrading itself or upgrading plugins?
So Now WordPress will stop asking you for FTP details Here’s how you can do it
Open your wp-config.php file locate in your wordpress root directory
And copy and past below detail after your database detail block in wp-config.php file
View Code PHP
1 2 3 4 5 | ==================================== define(“FTP_HOST”, “ftp.yourhost.com”); define(“FTP_USER”, “ftpusername”); define(“FTP_PASS”, “ftppassword”); ==================================== |
Replace ftp.yourhost.com , ftpusername and frppassword with your actual ftp host,username and password.
- Tags: