Page 1 of 1

Laravel job issue

Posted: 12 Oct 2015, 12:36
by obayesshelton
Hey,

I am trying to run a job however I keep getting the following errors:

Code: Select all

php artisan aimeos:jobs Jobs_Order_Email_Payment
Executing the Aimeos jobs for "default"
                                                                                                                     
  [Controller_Jobs_Exception]                                                                                        
  Invalid controller "jobs_order_email_payment" in "jobs_order_email_payment"  
                                                                                                                     
vagrant@precise64:/www/Shop$ php artisan aimeos:jobs OrderEmailPayment
Executing the Aimeos jobs for "default"
                                                               
  [Controller_Jobs_Exception]                                  
  Class "Controller_Jobs_Orderemailpayment_Factory" not found  
What is the exact command to run when trying to run Jobs_Order_Email_Payment ?

Re: Laravel job issue

Posted: 12 Oct 2015, 12:51
by aimeos
obayesshelton wrote: php artisan aimeos:jobs Jobs_Order_Email_Payment

[Controller_Jobs_Exception]
Invalid controller "jobs_order_email_payment" in "jobs_order_email_payment"

What is the exact command to run when trying to run Jobs_Order_Email_Payment ?
You have to use

Code: Select all

php artisan aimeos:jobs order/email/payment
as argument like described here:
https://aimeos.org/docs/Laravel/Configu ... jobs#Setup

Re: Laravel job issue

Posted: 12 Oct 2015, 13:36
by obayesshelton
Perfect thanks :)