-
Notifications
You must be signed in to change notification settings - Fork 11.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Laravel 6 proc_open #30054
Comments
I faced with the same issue when I wanted to put my Laravel 6 application on a shared host(PHP 7.2) and faced the error:
Problem happens on |
I think this issue related to Symfony Process package. |
For solving this issue you have to enable proc_open and proc_get_status functions in your php. Mine actually looks like this:
After this edit you've to restart your php. If you aren't sure where is located your php.ini you can call |
Heya, this seems to be related to Symfony and not Laravel. |
It is because of Flare error reporting service enabled in debug mode Publish flare config file and in config/flare.php Set 'collect_git_information' => false 'reporting' => [
'anonymize_ips' => true,
'collect_git_information' => false,
'report_queries' => true,
'maximum_number_of_collected_queries' => 200,
'report_query_bindings' => true,
'report_view_data' => true,
], |
This is working for Php 7.2, shared hosting. thanks |
Muchas gracias... esta solución sirvió de mucho... thank!!! |
thanks man works for PHP 7.2 |
Thanks you very much! ♥ |
Thanks a lot from Amsterdam! |
i did all, but my shared host still not working |
@nguyenbinh23 What is the problem now? Is it still the same exception? can you share your |
i added ./config/flare.php in my cpanel shared host, and changed it like u but still not working |
Yes. Just share more information. Like what is the current exception? and what is the code inside your |
thanks sir, i waited 30min and my website worked @@ |
thanks @ManuKN it works for php7.3 |
Work for me on shared hosting and PHP 7.3 |
The solution by manukn works, but keep in mind that the configuration might be cached in /bootstrap/cache/config.php. If that file still contains a |
I solved this issue by deleting everything inside /bootstrap/cache |
save my day |
doesn't work for me:
and my bootstrap/cache is empty (I empty this after every try) What i did is just install the laravel boilerplate running within WSL by the way. ************** UPDATE ************ |
Thanks!!, works for php 7.4 |
Not working for me |
@hafizSiddiq7678 > Not working for me Why? What have you tried so far? Can you share your flare config file? |
Hey everyone, I'm locking this issue because it either has gone off-topic, become a dumping ground for things which shouldn't be in an issue tracker or is just too old. Please try to discuss things further on one of the below channels: |
Description:
After installing Laravel 6, i get the following error message:
The Process class relies on proc_open, which is not available on your PHP installation.
I don't have find anything in the docs about this?
The text was updated successfully, but these errors were encountered: