thinkphp5出現500錯誤,如下圖所示:
#相關推薦:《ThinkPHP教學》
require(): open_basedir restriction in effect. File(/home/wwwroot/pic/thinkphp/start.php) is not within the allowed
解決方法:
1、我是lnmp1.4 php5.6,php.ini裡面的open_basedir 是註解掉的。
2、查找到是fastcgi問題。
3、修改fastcgi的設定檔。
/usr/local/nginx/conf/fastcgi.conffastcgi_param PHP_ADMIN_VALUE "open_basedir=$document_root/:/tmp/:/proc/";
修改為
fastcgi_param PHP_ADMIN_VALUE "open_basedir=$document_root/../:/tmp/:/proc/";
4、重啟 service nginx restart。
以上是thinkphp5出現500錯誤怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!