Bacysoft.cn
标题:
failed to open stream: Permission denied
[打印本页]
作者:
bacy001
时间:
2011-7-25 18:51
标题:
failed to open stream: Permission denied
本帖最后由 bacy001 于 2011-7-25 18:52 编辑
问题源码:
<?php
$content = "Hello World!";
$file = "Hello.txt";
$handle = fopen($file,"w");
if (!is_writable($file))
{
die ("File ".$file." cant write! Please Check first.");
}
if (!fwrite($file,$content))
{
die ("Write ".$file." failed!");
}
fclose($file);
die ("Succeed!");
?>
复制代码
执行以上代码后出现如下错误提示:
Warning: fopen(Hello.txt) [function.fopen]: failed to open stream: Permission denied in /home/www/wwwroot/example/1.php on line 4
File Hello.txt cant write! Please Check first.
复制代码
错误分析: Permission denied 表明是权限错误,一般是服务器目录权限设置问题!
解决办法:
1、登录到服务器,找到本程序所在目录,假设为“example”;
2、执行命令“chown www:www example -R”;
欢迎光临 Bacysoft.cn (http://www.ponf.cfan.cc/)
Powered by Discuz! X3.3