在服务器终端扫描 wp-config.php 文件在什么位置
sudo find / -name wp-config.php 2>/dev/null
扫描结果 :(每个人的存放都不一样,这里只是演示)
/opt/1panel/apps/openresty/openresty/www/sites/index.com/index/wordpress/wp-config.php
使用 vim 打开 wp-config.php文件
sudo vim /opt/1panel/apps/openresty/openresty/www/sites/index.com/index/wordpress/wp-config.php
在wp-config.php文件 底部加上代码 保存退出,
// 设置权限0777
define("FS_METHOD", "direct");
define("FS_CHMOD_DIR", 0777);
define("FS_CHMOD_FILE", 0777);
示例图片:
执行 sudo chmod 777 -R 这后面的地址是你刚刚扫描出来的wp-config.php的根目录地址,只需要存放wp-config.php文件目录,不需要wp-config.php文件名
示例:
sudo chmod 777 -R /opt/1panel/apps/openresty/openresty/www/sites/index.com/index/wordpress/