我在AWS上有EC2。它运行Ubuntu。安装后,我使用此命令更改许可:
sudo chown -R -v ubuntu /var/www/
我使用这个PHP简单的示例代码来创建文件。
<?php
$myfile = fopen("newfile.txt", "w") or die("Unable to open file!");
$txt = "John Doen";
fwrite($myfile, $txt);
$txt = "Jane Doen";
fwrite($myfile, $txt);
fclose($myfile);
?>
但我不能用PHP创建文件。有什么解决方案吗?
确保执行php脚本的用户或组有权访问该目录。这个用户通常是www数据。