require(): open_basedir restriction in effect. 解決方法
在linux服務器部署thinkphp5的時候PHP報了這個錯誤,
如下:
Warning: require(): open_basedir restriction in effect. File(/www/wwwroot/zhuyuyun/thinkphp/start.php) is not within the allowed path(s): (/www/wwwroot/zhuyuyun/public/:/tmp/:/proc/) in /www/wwwroot/zhuyuyun/public/index.php on line 20 Warning: require(/www/wwwroot/zhuyuyun/thinkphp/start.php): failed to open stream: Operation not permitted in /www/wwwroot/zhuyuyun/public/index.php on line 20 Fatal error: require(): Failed opening required ‘/www/wwwroot/zhuyuyun/public/../thinkphp/start.php‘ (include_path=‘.:/www/server/php/56/lib/php‘) in /www/wwwroot/zhuyuyun/public/index.php on line 20
解決方法:
我首先要申明的是,下面的方法適合所有報“PHP報:require(): open_basedir restriction in effect”錯誤的項目,並不僅僅只是適合thinkphp5的人。只要你的PHP報此錯誤都可以得到解決。
如果把ThinkPHP5
部署在了LAMP/LNMP
環境上很有可能出現白屏的情況,這個時候需要開啟 php 錯誤提示來判斷是否是因為設置了open_basedir
選項出錯。
打開 php.ini 搜索 display_errors
,把 Off 修改為 On就開啟了 php 錯誤提示,這時再訪問之前白屏的頁面就會出現錯誤信息。如果錯誤信息如下那麽很有可能就是因為open_basedir
一、php.ini 修改方法
把權限作用域由入口文件目錄修改為框架根目錄
打開 php.ini 搜索 open_basedir
,把
open_basedir = "/home/wwwroot/tp5/public/:/tmp/:/var/tmp/:/proc/"
修改為
open_basedir = "/home/wwwroot/tp5/:/tmp/:/var/tmp/:/proc/"
註意:
如果你的 php.ini
文件的 open_basedir
設置選項是被註釋的或者為 none,那麽你需要通過 Apache 或者 Nginx 來修改> php.ini 文件通常是在 /usr/local/php/etc 目錄中,當然了這取決於你 LAMP 環境配置。
二、Apache 修改方法
Apache 需要修改 httpd.conf
或者同目錄下的 vhost
目錄下 你的域名.conf
文件,如果你的生成環境是 LAMP 一鍵安裝包配置那麽多半就是直接修改 你的域名.conf
文件
apache ├─vhost ├─www.thinkphp.cn.conf ├─...... ├─httpd.conf
打開 你的域名.conf 文件 搜索 open_basedir
,把
php_admin_value open_basedir "/home/wwwroot/www.thinkphp.cn/public/:/tmp/:/var/tmp/:/proc/"
修改為
php_admin_value open_basedir "/home/wwwroot/www.thinkphp.cn/:/tmp/:/var/tmp/:/proc/"
然後重新啟動 apache
即可生效
> 域名.conf 文件通常是在 /usr/local/apache/conf 目錄中,當然了這取決於你 LAMP 環境配置
三、Nginx/Tengine 修改方法
Nginx
需要修改 nginx.conf
或者 conf/vhost
目錄下 你的域名.conf 文件,如果你的生成環境是 LNMP/LTMP 一鍵安裝包配置那麽多半就是直接修改 你的域名.conf 文件
nginx ├─conf ├─vhost ├─www.thinkphp.cn.conf ├─nginx.conf ├─...... ├─nginx.conf
打開 你的域名.conf 文件 搜索 open_basedir
,把
fastcgi_param PHP_VALUE "open_basedir=/home/wwwroot/www.thinkphp.cn/public/:/tmp/:/proc/";
修改為
fastcgi_param PHP_VALUE "open_basedir=/home/wwwroot/www.thinkphp.cn/:/tmp/:/proc/";
然後重新啟動 Nginx 即可生效
> 域名.conf 文件通常是在 /usr/local/nginx/conf/vhost 目錄中,當然了這取決於你 LNMP/LTMP 環境配置
四、fpm/fastcgi user.ini 修改方法
打開 項目根目錄下找到 user.ini 文件,搜索 open_basedir
,把
open_basedir=/home/wwwroot/www.thinkphp.cn/public/:/tmp/:/proc/
修改為
open_basedir=/home/wwwroot/www.thinkphp.cn/:/tmp/:/proc/
然後重新啟動 web 服務器
即可生效
總結:
一定要仔細讀此篇文章,否則你會選錯適合你的方法。
一定要根據自己的服務器環境來選擇你的修改方法。
原文鏈接:https://www.fujieace.com/php/open_basedir.html
require(): open_basedir restriction in effect. 解決方法