Ok. I've solved it like this.
1. Create file cron.php in Laravel root directory (not public directory)
2. Add exec to cron.php
3. Add cron.php to Cron Manager with
Still this is not something that should work like this. crontab supports executing artisan commands like
So I don't see why Sentora shouldn't
Thanks for thumbs up, btw
1. Create file cron.php in Laravel root directory (not public directory)
2. Add exec to cron.php
PHP Code:
<?php
exec('php /path/to/laravel/artisan schedule:run');
Code:
/path/to/cron/cron.php
Still this is not something that should work like this. crontab supports executing artisan commands like
Code:
php artisan make:model User
Thanks for thumbs up, btw