使用 apache 和 crontab fopen 相同的文件 - 权限被拒绝
我的 fopen 文件有这个问题。也许有人有解决方案...
当 fopen 通过浏览器创建文件时,该文件由“无人”拥有,如果我通过 crontab 运行相同的脚本,我会被拒绝权限。 当文件由 crontab 创建时,它由我的 cpanel 用户名拥有,然后我无法通过网络浏览器打开它。
因此,问题在于所使用的每种方法都使用不同的用户来拥有所创建的文件。我该如何解决这个问题?我搜索了如何以无人身份运行 crontab,但你必须是 root,这看起来很复杂。我没有找到任何有关以 cpanel 用户身份运行网页的信息。我的 php 脚本有 chmod 777,文件所在的文件夹也有 777,请确定。
有什么想法吗?谢谢。
i have this problem with fopen files. Maybe someone has a solution...
When fopen creates a file via the browser, the file is owned by "nobody", if i run the same script via crontab i get permission denied.
When the file is created by crontab, its owned by my cpanel username and then i cant fopen it via the web browser.
So the problem is that each of the methods used is using a different user to own the files created. How can i go around this? I searched how to run crontab as nobody but you have to be root and it seems complicated. I didnt find anything about running my web pages as my cpanel user. My php script has chmod 777 and the folder where the files are also have 777 just be be sure.
Any ideas? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不是系统管理员大师,但如果您有权访问服务器,您可以尝试
如果您无权访问服务器,则比较棘手,但可以解决。不要直接通过 cron 运行脚本,而是使用“wget”下载网页,或者在 URL 上调用“file_get_contents”的 php 脚本,在 Web 服务器本身上运行脚本。这假设服务器没有锁定得太紧......
I'm not a sysadmin guru, but if you have access to the server you can try this
If you don't have access to the server it's trickier, but solvable. Instead of running the script directly by cron, run the script on the web server itself by downloading the web page using "wget" or alternatively a php script calling "file_get_contents" on an URL. This assumes that the server is not locked down too tight...