Wordpress plugin install: Could not create directory

前端 未结 16 1518
[愿得一人]
[愿得一人] 2021-02-01 01:38

I\'m using WordPress on centos 6.

I try to install a plugin. But I got this error:

Installing Plugin: bbPress 2.5.9 Downloading install package

16条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-01 01:48

    To solve permission issue on plugins and themes on localhost or production quickly, you just run this

    sudo chmod 757 wp-content/themes
    sudo chmod 757 wp-content/plugins
    

    if take care permission on production, you can run

    sudo chown -R www-data:www-data wp-content/themes
    sudo chown -R www-data:www-data wp-content/plugins
    

提交回复
热议问题