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
Post a Comment