使用 PHP 打开或创建文件时权限被拒绝

发布于 2025-01-03 13:58:37 字数 708 浏览 1 评论 0原文

我无法使用 php 创建文件,因为该文件没有获得该权限。 我收到此错误:

警告:fopen(test.txt):无法打开流:第 20 行 /web/com/example.com/index.php 中的权限被拒绝
警告:fwrite() 期望参数 1 为资源,布尔值在 /web/com/example.com/index.php 第 21 行给出
警告:fclose() 期望参数 1 为资源,布尔值在 /web/com/example.com/index.php 第 22 行给出

这是我使用的代码:

<?php
 $file = fopen("test.txt","w");
 echo fwrite($file,"Hello World. Testing!");
 fclose($file);
 ?> 

就这么简单!这是来自 w3schools 的示例代码

因此,我需要帮助来找出如何授予文件所需的权限。 如果重要的话,我会使用 net2ftp FTP Web 应用程序将文件上传到我的网站。

I can't create files with php, because the file dosent got permission for that.
I get this error:

Warning: fopen(test.txt): failed to open stream: Permission denied in /web/com/example.com/index.php on line 20
Warning: fwrite() expects parameter 1 to be resource, boolean given in /web/com/example.com/index.php on line 21
Warning: fclose() expects parameter 1 to be resource, boolean given in /web/com/example.com/index.php on line 22

This is the code I was using:

<?php
 $file = fopen("test.txt","w");
 echo fwrite($file,"Hello World. Testing!");
 fclose($file);
 ?> 

Simple as that! This is example code from w3schools.

So I need help to find out how to give the file the needed permissions.
I'm uploading files to my site with the net2ftp FTP web application, if it matters.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

征棹 2025-01-10 13:58:37

PHP 脚本尝试写入的文件夹可能由 root 用户拥有。如果您使用默认的 Ubuntu/Apache/PHP 设置,您的 PHP 脚本很可能在 www-data 用户下运行。

因此,您需要:

chown -R www-data:www-data folder
chmod -R g+w folder

如果您发现 PHP 运行在与 www-data 不同的用户下,则只需在第一行代码中更改用户组即可。

附言。将“文件夹”更改为您的实际文件夹名称。

The folder your PHP script is trying to write to will probably be owned by the root user. Your PHP script is more than likely running under the www-data user if you're using a default Ubuntu/Apache/PHP setup.

As such you need to:

chown -R www-data:www-data folder
chmod -R g+w folder

If you find PHP is running under a user that is different from www-data then just change the user a group in the first line of code.

PS. change "folder" for your actual folder name.

梦年海沫深 2025-01-10 13:58:37

运行 PHP 的用户(通常是 apache 用户)对运行脚本的文件夹没有写权限。尝试使用绝对路径,例如“/tmp/test.txt”——tmp 通常可由任何用户写入,但内容往往会在重新启动时被清除。

The user running PHP (usually the apache user) doesn't have write permission on the folder the script is running in. Try using an absolute path, like "/tmp/test.txt" -- tmp is usually writable by any user, but the contents tend to be wiped out on reboot.

无言温柔 2025-01-10 13:58:37

我正在使用 Ubuntu,我通过在我写入文件的文件夹(.ie uploads)上方的一个目录中运行下面的命令来解决这个问题。

sudo chmod 777 ./uploads

I am using Ubuntu and i solved it by running the command below in one directory up from the folder(.i.e uploads) i was writing the files in.

sudo chmod 777 ./uploads
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文