Enabling/Disabling PHP Native Functions In Php.ini File
Edit php.ini file to enable/disable native PHP functions like proc_open & proc_close by modifying "disable_functions" directive in /etc/php.ini or equivalent location.
In this article I want to give you the step by step procedure to enable or disable php native functions editing the “disable_functions” directive in the php.ini file. Sometimes the default PHP configuration on your server needs to be customized to accommodate the compatibility of your system with the production environment. Why this tutorial I'm the author of Inspector.dev the real-time monitoring package for Laravel and Symfony. This package uses pro_open and proc_close php native functions to perform data transfer from your server to the Inspector API asynchronously. It can also be...