Home > php教程 > php手册 > php include提示failed to open stream: Permission denied in错误

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

WBOY
Release: 2016-06-13 09:24:19
Original
1129 people have browsed it

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

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

  在打开浏览器时提示

  Warning: include (/global.php) [function.include]: failed to open stream: Permission denied in \index.php on line 21

  Warning: include() [function.include]: Failed opening '/global.php' for inclusion (include_path='.;C:\php5\pear') in index.php on line 21

  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目录是一样的才可以哦。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template