Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does laravel necessarily need proc_open() and passthru() enabled?

I am installing laravel on a shared hosting at KVC webhost. It shows a blank page. I checked the log and it says that the proc_open() and passthru() aren't enabled on my server which is causing the errors. I have contacted my webhosting for solutions but they can only enable on VPS. Any other solutions?

like image 911
Bharat Geleda Avatar asked Nov 09 '22 08:11

Bharat Geleda


1 Answers

There doesn't seem to be anything in a default Laravel application that requires proc_open() or passthru() to serve a site. These may be needed for commandline processes though.

Do a complete build the application locally (eg composer install), then deploy the files to the server.

like image 163
dave1010 Avatar answered Nov 15 '22 11:11

dave1010