您的位置:首页 > 大数据 > 人工智能

Stop WordPress Asking For FTP details When You Install / Upgrade Plugins

2013-09-08 23:30 232 查看
When you want to install or upgrade a plugin, WordPress will most probably display this message:


Connection Information

To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host.


If you are on shared hosting you might not have this problem but if you are on a VPS or Dedicated server you will most probably get asked to supply FTP credentials every time you want to install or upgrade plugin or even WordPress. This can become an annoyance if you install plugins a lot so this is one of the first things I always fix when I install new WordPress site.

Here is how to solve it: open your
wp-config.php
file (by default it can be found in your root WordPress directory) with text editor and simply add your ftp login information near the bottom of the wp-config.php file (just above the /** Sets up WordPress vars and included files. */ comment for example):

After you do this your won’t be asked for FTP credentials anymore. There are other solutions like settings permission with chown via shell or installing suPHP on your server but this one seems to be the easiest.

If the above fails for whatever reason you can comment the above code and try adding the following code in the
wp-config.php
file,somewhere at the top:

This forces files to be writable by the server. You should only use this if adding FTP credentials method fails.

copy from: http://www.elcoderino.com/stop-wordpress-asking-for-ftp-details-when-you-installupgrade-plugins/

The red line work for me,although I have changed the wordpress dir into 777.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐