好的,事实证明,在ubuntu/debian上,wordpress文件位于文件系统的3个位置-/var/lib/wordpress、/srv/www/wp-content和/usr/share/wordpress。我必须为这三个人做这件事:
sudo chown -R www-data .
sudo chgrp -R www-data .
sudo find . -type f -exec chmod 644 {} \\;
sudo find . -type d -exec chmod 755 {} \\;
现在一切正常。现在甚至可以通过仪表板进行安装。