Quote:
Originally Posted by Barbaro
Hello, sorry for my bad English
Would you say exactly?
thanks
|
Look in your php.ini file which depends to your installation or create a phpinfo to list your php settings:
Code:
<?php phpinfo(); ?>
(save as phpinfo.php to your server and call it)
search for "disable_functions" and remove "curl" and "curl_exec" if its in there.
Example:
Code:
before:
disable_functions =exec,passthru,shell_exec,system,proc_open,popen,curl,curl_exec,curl_multi_exec,parse_ini_file,show_source;
after:
disable_functions =exec,passthru,shell_exec,system,proc_open,popen,curl_multi_exec,parse_ini_file,show_source;