Quote Originally Posted by msk19994 View Post
^ 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 ''

so in the end of php.ini i add this code
suhosin.executor.func.blacklist = “”

i dont understand this
and

what the heck is the VirtualHost section please explain ?
You should have suhosin installed for this to work.

At your disable_functions line on your php.ini file you should see this:
Code: 
disable_functions = show_source,system,shell_exec,passthru,exec,phpinfo,proc_open
or something quite similar to that, Replace that line with this:

Code: 
disable_functions = show_source,system,passthru,phpinfo,proc_open;


After that, restart Apache by executing the following command:

Code: 
service httpd restart
The virtual host thing is needed only if you want to apply those rules for a single Domain