文件在浏览器中运行但在 Cron Job 中失败

发布于 2024-10-19 19:42:35 字数 270 浏览 2 评论 0原文

我创建了一个脚本来读取我的提要并对其进行处理。

我正在按照以下代码加载我的提要:

$doc = new DOMDocument();
$doc->load( 'http://www.xyz.com/feed' );

我的文件在浏览器中运行良好,但是当我为此文件设置了 cron 作业时, 我在电子邮件中收到错误,如下所示:

Failed to Load External entity

I have created a script which read my feed and process it.

I am loading my feed as per blow code:

$doc = new DOMDocument();
$doc->load( 'http://www.xyz.com/feed' );

My file works well in Browser, but when I have set up the cron job for this file,
I have got error in email which is as below :

Failed to Load External entity

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

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

发布评论

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

评论(2

想挽留 2024-10-26 19:42:35

尝试检查 CLI 和 CGI​​/Apace 的 PHP 设置
例如在 Debian 中:
/etc/php5/

Try to check PHP settings for CLI and CGI/Apace
For example in debian there in:
/etc/php5/

摘星┃星的人 2024-10-26 19:42:35

从本地服务器运行时,我的 cron 作业的命令看起来像这样: /ramdisk/bin/php5 -q /home/king/public_html/crondailyemail.php >/dev/null 2>&1

我正在尝试弄清楚如何在我的 cron 作业中获取另一台服务器的内容,但它不起作用(可能是安全问题阻止它)

The command for my cron jobs look something like this when run from local server: /ramdisk/bin/php5 -q /home/king/public_html/crondailyemail.php >/dev/null 2>&1

I'm trying to figure out how to get contents of another server within my cron job, but its not working (probably a security issue preventing it)

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