I used to implement my queueing using php-resque-ex (a fork), but this project seemed a better fit due to some new functions. However, I seem to get this error when trying to enqueue a new job:
PHP Fatal error: Class 'Resque_Job' not found in /var/www/html/php-resque/lib/Resque.php on line 204
I've installed it correctly by doing a git clone and using composer to check the prequisites. The only thing that is in my script is:
Hi,
I used to implement my queueing using php-resque-ex (a fork), but this project seemed a better fit due to some new functions. However, I seem to get this error when trying to enqueue a new job:
PHP Fatal error: Class 'Resque_Job' not found in /var/www/html/php-resque/lib/Resque.php on line 204
I've installed it correctly by doing a git clone and using composer to check the prequisites. The only thing that is in my script is:
require_once('../php-resque/lib/Resque.php'); Resque::enqueue($messagetype, 'ProcessMessage', $args);