我有以下问题。在index.html我有
PHP Warning: require_once(/var/www/html/vendor/autoload.php): failed to open stream: Permission denied in /var/www/html/index.php on line 9
PHP Fatal error: require_once(): Failed opening required '/var/www/html/vendor/autoload.php' (include_path='.:/usr/share/pear:/usr/share/php') in /var/www/html/index.php on line 9
我收到了这个错误。
href
但是对于整个/ var / www / html我设置了" chmod -R 777"
的权限我在哪里可以犯错?
非常感谢。
答案 0 :(得分:0)
尝试运行这两个命令:
chown www-data: ./* -R
并且:
chmod 775 ./* -R
(假设您在/var/www/html
文件夹中)