首页 > 开发 > PHP > 正文

php include提示failed to open stream: Permission denied in错误

2024-05-04 21:59:53
字体:
来源:转载
供稿:网友

出现failed to open stream: Permission denied in是apache运行用户没用权限去访问指定的文件了,所以导致目录文件打不开了.

在打开浏览器时提示:

  1. Warning: include(/global.php) [function.include]: failed to open stream: Permission denied in \index.php on line 21 //开源软件:Vevb.com 
  2. Warning: include() [function.include]: Failed opening '/global.php' for inclusion (include_path='.;C:\php5\pear') in index.php on line 21 
  3. Fatal error: Class 'fl_global' not found in \index.php on line 22 

从这么多错误提示中我们可以看出一句failed to open stream: Permission denied in了,意思是说没有权限访问这个问题.

linux解决办法

linux下

chmod -R 777 ./dirname 赋予目录可写权限

chmod 777 ./filename 赋予文件可写权限.

windows 2003解决办法

我是apache用户所以只需要给apache用户权限就可以了,如果是iis用户还需要在iis中设置权限哦.

例子:右击www或web目录,然后在弹出点击“安全与共享”或“属性”也可以打开之后选择安全之类的,然后增加用户并设置访问用户的权限必须选中了,注意了,我们增加访问用户必须与apache目录是一样的才可以哦.

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表