WordPress asking for FTP credentials
If you’re asked to enter your FTP credentials when you try to install or update a plugin or theme in the WordPress dashboard, it’s because of a specific setting in the wp-config.php file. Follow the steps below to prevent WordPress from displaying this FTP prompt.
- Find the folder with your WordPress files and open the wp-config.phpfile.
- At the bottom of the wp-config.phpfile, above the line that says/* That's all, stop editing! Happy publishing. */,
 add the following lines of code:
defined('FS_METHOD')     or define('FS_METHOD', 'direct');
defined('FS_CHMOD_DIR')  or define('FS_CHMOD_DIR',0755);
defined('FS_CHMOD_FILE') or define('FS_CHMOD_FILE',0644);
Leave a Reply