0

我有 PHP cron 作业,每 30 分钟运行一次。PHP cron 作业在 Godaddy 托管环境中运行,Godaddy 告诉他们这不是他们的问题。我像这样运行PHP

/web/cgi-bin/php5 "$HOME/html/wp-content/themes/twentyten/totalview.php"

totalview.php 中的代码是

<?php
include_once("../../../wp-config.php");
include_once("tplinclude/functions.php");
session_start();

    $res=mysql_query("select sum(`total_num`) from `some_table`");
    $row = mysql_fetch_row($res);
    echo $row[0] ;
?>

但是偶尔这会给出错误信息,


状态:404 Not Found 内容类型:text/html

未指定输入文件。


问题是我有时会收到此错误。例如,在 48 次执行 8-10 次中,它会显示此错误。休息它会正常工作的。我从数据库中提取了一些数据,所以我知道它大部分时间都有效。

但是为什么它有时会出错?

4

1 回答 1

0

godady的客户面临的类似问题..

检查这个..

http://support.godaddy.com/groups/web-hosting/forum/topic/404-not-found-error-using-cron-job/

于 2012-09-05T06:58:51.327 回答