问题
报错原因是open_basedir配置问题,PHP不能引入上一层及以上的文件
解决方法
在nginx配置文件中找到/conf/fastcgi.conf打开后查找open_basedir如果找到就注释后添加,没有的话就直接添加下面这句话
fastcgi_param PHP_ADMIN_VALUE “open_basedir=/www/wwwroot/:/tep/:/proc/“;
/www/wwwroot/ 这个是你项目的根目录。
博客列表 >php报错Warning: include(): open_basedir restriction in effect.
报错原因是open_basedir配置问题,PHP不能引入上一层及以上的文件
在nginx配置文件中找到/conf/fastcgi.conf打开后查找open_basedir如果找到就注释后添加,没有的话就直接添加下面这句话
fastcgi_param PHP_ADMIN_VALUE “open_basedir=/www/wwwroot/:/tep/:/proc/“;
/www/wwwroot/ 这个是你项目的根目录。