php错误提示 open_basedir restriction in effect 解决
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-20 22:01:53 浏览: 评论:0
今天在帮助一个朋友配置一台服务器时发现网站配置好了缓存目录读写不成功,在打开错误时发现提示 Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(../license.php) is not within the allowed path(s): 错误了,下面一起来看此问题解决办法.
先来看配置文件:
- $cache = new Cache(43200,'D:/wwwroot/cache/tmp/anzhuo/');//参数1 秒,参数2内容
- //开源软件:phpfensi.com
- $page = intval(isset($_GET['page'])?$_GET['page']:1);
- $key = 'anzhuo_data_4'.$page;
- $values = $cache->display($key);
这个是生成缓存文件了,但是发现生成是提示
Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(../license.php) is not within the allowed path(s):
问题是出现在了PHP.INI上面了,原因是php.ini里设置了:
opendir=/var/web/w0895/:/tmp:/usr/lib/php
解答:其实open_basedir 这个是用来限制php的目录访问权限什么的,如果不在允许的范围内,php就不能访问.
这个 open_basedir 在 php.ini 里可以设定,也可以在 apache的httpd.conf 里面设定
例如:php_admin_value open_basedir "D:/wwwroot/cache/tmp/anzhuo/"
再比如:php_admin_value open_basedir =/var/web/w0895/:/tmp:/usr/lib/php
好了再重启apache问题解决了.
Tags: php错误提示 open_basedir restriction
相关文章
- ·浅谈php错误提示及查错方法(2021-06-12)
- ·php中open_basedir存在安全隐患(2014-08-22)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)