php - Laravel - Task Scheduling(The system cannot find the path specified.) -


when run :

php /path/to/artisan schedule:run 1>> nul 2>&1 

it gives me error

the system cannot find path specified. 

the tutorial says /path/to/artisan project folder located. project folder located in

c:/xampp/htdocs/project/ 

but when run :

php c:/xampp/htdocs/project/ schedule:run 1>> nul 2>&1 

or

php c:/xampp/htdocs/project/artisan schedule:run 1>> nul 2>&1 

it gives me same error

try this:

php c:/xampp/htdocs/project/artisan schedule:run 1>> /dev/null 2>&1 

Comments

Popular posts from this blog

how to insert data php javascript mysql with multiple array session 2 -

multithreading - Exception in Application constructor -

windows - CertCreateCertificateContext returns CRYPT_E_ASN1_BADTAG / 8009310b -