There's a line in your php.ini file which loads the curl extension. Look for php_curl.dll. Uncomment that line in php.ini. Then locate php_curl.dll (easiest thing might be to do a search - it should be in a subdirectory of your PHP install). You'll need to copy this DLL to a directory in your system's path variable (or include the PHP path in your path variable). Then stop/start Apache. Run phpinfo() to verify you have curl installed. And you should be good to go...

    Write a Reply...