Replace disable_functions in php.ini with value of your choice which may be different on different servers
-bash-2.05b# grep disable_functions /usr/local/lib/php.ini
disable_functions = 1 2 e weq t ret rye y etyhty rt et e
-bash-2.05b# replace "$(grep disable_functions /usr/local/lib/php.ini)" "disable_functions = exec" -- /usr/local/lib/php.ini | grep disable_functions
-bash-2.05b# grep disable_functions /usr/local/lib/php.ini
disable_functions = exec
I was successful above, but how to do it the awk or sed way?
Thanks