enable curl_exec on php.ini
centos, curl, php
Solution
The command line php may be using a different ini file to the one loaded up by Apache.
you must be find which php configuration in used. you need to edit current configuration file.
$> php -i | grep "Loaded Configuration File"
Loaded Configuration File => /usr/local/lib/php.ini
$> vim /usr/local/lib/php.ini
and remove disabled function. and final step is :
/etc/init.d/httpd restart
Problem
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?