wordpress下载不了插件和主题的解决办法
在linux中找到wp-config.php文件
find / -name “wp-config.php”

在wp-config.php最后加入一下代码
if(is_admin()) { add_filter('filesystem_method',create_function('$a','return "direct";')); define('FS_CHMOD_DIR', 0751); }
wordpress下载不了插件和主题的解决办法
cd到目录 /usr/local/apache/htdocs/ 对 wp-content/ 目录加入775 所有者、所属组加入775权限
chmod -R 775 wp-content/

相关文章:

  • 2021-10-01
  • 2022-12-23
  • 2021-12-28
  • 2022-12-23
  • 2021-07-31
  • 2022-12-23
  • 2021-10-28
  • 2021-12-11
猜你喜欢
  • 2022-12-23
  • 2021-04-14
  • 2021-12-29
  • 2021-11-06
  • 2021-06-16
  • 2021-10-02
  • 2021-08-01
相关资源
相似解决方案