Is laravel required to activate proc_open () and passthru ()?

I am installing laravel on shared hosting on KVC web hosting. It shows a blank page. I checked the log and it says that proc_open () and passthru () are not enabled on my server, which causes errors. I contacted my web hosting for solutions, but they can only work on VPS. Any other solutions?

+4
source share
1 answer

In the default Laravel application, nothing exists, which requires proc_open() or passthru() to serve the site. They may be required for command line processes.

Make a complete build of the application locally (for example, composer install ), then deploy the files to the server.

0
source

All Articles