I am trying to use CakeResque plugin in cakephp 2.4 and follow all installation instruction as per link
http://kamisama.me/2012/10/16/background-jobs-with-php-and-resque-part-6-integration-into-cakephp/
When I fire command
cake CakeResque.CakeResque start
Getting error
Error: Class CakeResqueShell could not be loaded.
Any help appreciated
Thank you
You have to load the CakeResque plugin into your CakePHP app first.
In your app/Config/bootstrap.php, make sure that the plugin is loaded with
or with
the
bootstrap
key is needed to load resque settings. (you can also specify a path to your own bootstrap file instead oftrue
)If that still does not work, maybe you're not using the "right" cake shell. You seems to use
Just make sure that the
cake
command in your environment is the one inside you app. Test that:It it still doesn't work, you're welcome to report your issue in CakeResque issues tracker.
This is not the only way to workout, you will have to configure
Fresque
to work withphp-resque-Ex.