为Vbulletin计划任务添加了自定义脚本,但无效

时间:2013-12-06 18:18:37

标签: php scheduled-tasks vbulletin

我写了一个php文件来更新页面。

这是一些代码

    <?php

require_once('./global.php');

Eventlist();

function Eventlist() {

    $line = 'some text';

    $myFile = "utf8_event.html";
    $fh = fopen($myFile, 'w') or die("can't open file");
    fwrite($fh, $line);
    fclose($fh);
    return true;
}
?>

如果我像http://www.abc.com/script.php那样运行它,它会更新文件。

但是,如果我将其添加到计划任务中,则无效。我试图手动运行它。它不会更改文件。

0 个答案:

没有答案