文件在浏览器中运行但在 Cron Job 中失败
我创建了一个脚本来读取我的提要并对其进行处理。
我正在按照以下代码加载我的提要:
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试检查 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/
从本地服务器运行时,我的 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)