日韩精品欧美激情国产一区_中文无码精品一区二区三区在线_岛国毛片AV在线无码不卡_亞洲歐美日韓精品在線_使劲操好爽好粗视频在线播放_日韩一区欧美二区_八戒八戒网影院在线观看神马_亚洲怡红院在线色网_av无码不卡亚洲电影_国产麻豆媒体MDX

open_basedir restriction in effect解決方法

時(shí)間:2018-05-22 00:57:19 類(lèi)型:Linux
字號(hào):    

在linux服務(wù)器部署站點(diǎn)的時(shí)候PHP報(bào)了這個(gè)錯(cuò)誤

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/zhuangzi/public/index.php on line 20
Warning: require(/www/wwwroot/zhuangzi/thinkphp/start.php): failed to open stream: Operation not permitted in /www/wwwroot/zhuangzi/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/zhuangzi/public/index.php on line 20

出現(xiàn)問(wèn)題的原因:

查看問(wèn)題描述以及資料,發(fā)現(xiàn)是php open_basedir 配置的問(wèn)題,PHP不能引入其授權(quán)目錄上級(jí)及其以上的文件;

一般情況下是不會(huì)出現(xiàn)這種問(wèn)題的,之所以出現(xiàn)這個(gè)問(wèn)題絕大多數(shù)情況是由于服務(wù)器的原因,為了安全才做了這樣的限制!

fpm/fastcgi user.ini 修改方法

打開(kāi) 項(xiàng)目根目錄下找到 user.ini 文件,搜索 open_basedir,把
open_basedir=/home/wwwroot/www.zhuangzi.com/public/:/tmp/:/proc/
修改為
open_basedir=/home/wwwroot/www.zhuangzi.cn/:/tmp/:/proc/

然后重新啟動(dòng) web 服務(wù)器 即可生效