我有一个需要在我的站点上运行的 cron 作业。我已经设置了模型和控制器,然后将以下 cron 作业设置为每小时运行一次:
/usr/bin/php /path/to/directory/index.php cron resetViews;
我的 config.php 文件中 $config 的 URI_PROTOCOL 索引设置为 AUTO 并且没有拼写错误。
当我运行命令时,我得到了我的主页的 4 个 html,这也是我的默认控制器。有任何想法吗?
编辑
我已将命令更改为:
cd /path/to/directory; /usr/bin/php index.php cron resetViews;
现在我在主页的打印输出顶部收到以下错误:
PHP:在第 1 行解析 /home/crowston/public_html/2012/php.ini 时出错
这是我的整个 php.ini 文件:
error_reporting(E_ALL);
ini_set('display_errors', 'On');
我也尝试过使用空白的 php.ini 文件,但无济于事。
php.ini 文件在整个网站建设过程中没有引起任何错误:S