View Single Post
Old 07-01-2008, 10:36 AM   #9 (permalink)
codefreek
Super Moderator
Inquisitive 
 
codefreek's Avatar
 
Join Date: Sep 2007
Location: Near you.
Posts: 791
Thanks: 241
codefreek is on a distinguished road
Default

Quote:
Originally Posted by Wildhoney View Post
Do you normally see errors on your development server? I imagine it is causing errors, but you're not displaying them, and possibly logging them. You need to enable the cURL module in order for it to work.

First you may wish to enable the displaying of errors. Find the following 2 lines and change them to what they are below. Those are the only 2 lines, or so I think.

Code:
error_reporting  =  E_ALL
display_errors = On
And then to enable cURL, acquire the DLL/SO (depending on OS) from PHP.net, and last of all uncomment the following line, again in php.ini:

Code:
extension=php_curl.dll
PHP Code:
error_reporting(E_ALL & ~E_NOTICE); 
PHP: error_reporting - Manual
PHP: cURL - Manual
codefreek is offline  
Reply With Quote