首先开启 web/index.php defined('YII_DEBUG') or define('YII_DEBUG', true);
将此改 true;查看报错的问题,如下:
Exception (Invalid Configuration) 'yii\base\InvalidConfigException' with message 'The directory is not writable by the Web process: /home/wwwroot/1XX.2X.XX3.X2/xhedu/backend/web/assets'in /home/wwwroot/12X.2X.XXX.1X/xhedu/vendor/yiisoft/yii2/web/AssetManager.php:213
原因分析:
(推荐教程:yii框架)
assests 文件夹及其文件权限不足,导致无法访问 AssetManager.php 将其改为777即可。
解决方法:
之前的项目的所有者和组的名称是 www ,权限是最大的777,后来的项目的用户名是 root ,权限不是最大,所以需要将项目assests文件夹改为777就可以了。
更多编程相关内容,请关注php中文网编程入门栏目!
以上是yii2服务器500错误的详细内容。更多信息请关注PHP中文网其他相关文章!