关于WordPress 安装主题或插件时提示需要登陆FTP解决方法

wp-config.php里加入下面代码:

在wp-config.php里加入下面代码:

1
2
3
define( 'FS_METHOD',  'direct');
define( 'FS_CHMOD_DIR', 0777);
define( 'FS_CHMOD_FILE', 0777);

加入完毕后不再提示FTP登录, 但是有可能安装插件时提示 安装失败,无法创建目录

解决方案:

1
2
3
4
chmod -R 777 wp-content/ 
chmod -R 777 theme/
chmod -R 777 plugin/
chmod -R 777 language/

乱码三千 – 点滴积累 ,欢迎来到乱码三千技术博客站

0%