php – fopen权限被拒绝

我尝试加载我的一个php页面时收到以下错误:

[Fri Apr 08 22:59:50 2011] [error] [client ::1] PHP Warning: fopen(tracking_id.txt): failed to open stream: Permission denied in /var/www/basic.php on line 61

第61行是下面脚本的第二行:

$ourFileName = "tracking_id.txt";
$ourFileHandle = fopen($ourFileName, 'w') or die("can't open file");
fwrite($ourFileHandle, $trackingId);
fclose($ourFileHandle);

任何人都知道如何解决这个问题?

我使用Ubuntu作为操作系统,使用apache作为Web服务器.

我使用tasksel来安装LAMP-server

解决方法:

创建一个名为tracking_id.txt的文件并对其执行以下命令:

chmod a+w tracking_id.txt
上一篇:PHP fopen()内存效率和用法


下一篇:PHP文件上传不断抛出错误