I wanna run php script which has got curl on it.
but following functions are disabled by php.ini:
exec,passthru,shell_exec,system,proc_open,popen,curl_exec,curl_multi_exec,show_source
I have changed following line in php.ini:
disable_functions = exec,passthru,shell_exec,system,proc_open,popen,show_source
and run service httpd restart command on ssh,but when I run phpinfo() function it will show curl_exec and curl_multi_exec are disabled again.
where is the problem and how should I solve it?