次のコマンドを使用して、cpanel で cron ジョブを作成しようとしています。
/usr/bin/php -q /home/mystuff/public_html/application/controllers/scripts.php scripts release_reviews
私のscripts.phpコントローラーは次のとおりです。
<?php
class Scripts extends CI_Controller
{
public function __construct()
{
parent::__construct();
if (!$this->input->is_cli_request()) show_error('Direct access is not allowed');
}
public function release_reviews()
{
echo release_reviews(); //where the actual logic will sit once the cron job works
}
}
cron ジョブを実行しようとすると得られるフィードバック:
Fatal error : Class 'CI_Controller' not found in /home/mystuff/public_html/application/controllers/scripts.php on line 3
誰かが私と同じ問題を抱えているという証拠を見つけることができません.これに関するほとんどのトピックは私と同じように動作し、明らかにうまく機能します.
よろしくお願いします!