编程语言
首页 > 编程语言> > php – fopen权限被拒绝

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,lamp,ubuntu-10-04,fopen
来源: https://codeday.me/bug/20190614/1237529.html