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

前端 未结 19 988
孤独总比滥情好
孤独总比滥情好 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 02:51

    Try following. Make sure {yourpath} is replaced with correct path

    Creates upload directory with super user permission

    sudo mkdir -p /var/www/{yourpath}/wp-content/uploads
    

    Change ownership to the current user

    sudo chown -R $USER:$USER /var/www/{yourpath}/wp-content/uploads
    

提交回复
热议问题