I'm using laravel5.8 and when i run my project in local it's ok but in shared host i change php version from multiphp in cpanel to php7.3 and i get this error:
The Process class relies on proc_open, which is not available on your PHP installation
my cronjob code:
/usr/local/bin/ea-php73 /home/username/artisan schedule:run 1>> /dev/null 2>&1
and in kernel.php my shedule is:
protected function schedule(Schedule $schedule)
{
$schedule->command('queue:work')->everyMinute();
}
in shared host i can't enable proce_open for security reasons...