ホームページ > 記事 > PHPフレームワーク > thinkphp5で500エラーが発生した場合の対処方法
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 に変更されます。サービス nginx restart を再起動します。
以上がthinkphp5で500エラーが発生した場合の対処方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。