Unable to create directory in wp-content/uploads in Wordpress

前端 未结 19 779
孤独总比滥情好
孤独总比滥情好 2020-12-29 02:20

I am not able to upload any images to the Media section. I get this error message:

\"Unable to create directory wp-content/uploads/2015/05. Is its par

相关标签:
19条回答
  • 2020-12-29 03:03

    Change permissions on the /wp-content directory to 0775 and try it again.

    sudo chmod 0775 {yourpath}/wp-content/uploads
    

    If it fails, change the permissions to 0777 and try again.

    sudo chmod 0777 {yourpath}/wp-content/uploads
    

    Once it is successful, be sure to return the permissions on /wp-content to whatever they were when you started.

    You may also want to put the permissions back on any other files you changed while attempting to resolve the issue.

    More options you can find here: https://www.tipsandtricks-hq.com/how-to-fix-the-unable-to-create-directory-error-in-wordpress-5264

    Reggards

    0 讨论(0)
提交回复
热议问题