不知道几天前我在Wordpress中做了什么更改,但今天我无法更新/安装任何插件。我跟着https://community.bitnami.com/t/wordpress-permissions-unable-to-create-directory/42048/3 并应用了以下权限:
sudo find ~/apps/wordpress/htdocs/ -type f -exec chmod 644 {} \\;
sudo find ~/apps/wordpress/htdocs/ -type d -exec chmod 755 {} \\;
sudo chmod 750 ~/apps/wordpress/htdocs/wp-config.php
sudo find ~/apps/wordpress/htdocs/wp-content -type d -exec chmod 775 {} \\;
sudo find ~/apps/wordpress/htdocs/wp-content -type f -exec chmod 664 {} \\;
sudo chmod 750 ~/apps/wordpress/htdocs
sudo chown -R bitnami:daemon ~/apps/wordpress/htdocs
sudo chown -R bitnami:daemon ~/apps/wordpress/htdocs/wp-content/plugins
sudo chown -R bitnami:bitnami ~/apps/wordpress/htdocs/wp-content/upgrade
sudo chown -R daemon:daemon ~/apps/wordpress/htdocs/wp-content/uploads
现在我可以更新和安装插件了,但需要的时间更长了,大约是几天前(坏之前)的两倍
-它告诉我安装/更新失败,即使它成功了!
无法安装更新,因为我们无法复制某些文件。这通常是由于文件权限不一致造成的。
当然,这并不是那么糟糕,但我希望它是应该的,而不是这样的结果<有什么想法吗?