WordPress 安装插件提示FTP
问题
在后台安装或卸载插件时,wp提示要提供FTP账户资料
解决方法
在 wp-config.php
中添加
define("FS_METHOD", "direct");
并且,将 wp-content/plugins
目录所有者/用户组改为 www-data
(同样,修改 wp-content/uploads
也可以解决媒体文件上传的问题)
sudo chown -R www-data:www-data plugins
P.s.: 只更改
wp-content/plugins
不足够,可能需更改整个 wordpress 目录为www-data