^ i already saw that when googled can u explain more clearly that like i rRemove all functions from disable_functions in php.ini
and leave it blank ''
Add functions in php.ini suhosin.executor.func.blacklist = “” those you want to disable globally.
so in the end of php.ini i add this code
suhosin.executor.func.blacklist = “”
those you want to disable globally.
i dont understand this
and
<VirtualHost 127.0.0.1>
………..
<IfModule mod_php5.c>
php_admin_value suhosin.executor.func.blacklist = “shell_exec”
</IfModule>
……
</VirtualHost>

In this example shell_exec has been enabled for the VirtualHost.
what the heck is the VirtualHost section please explain ?