06-26-2008, 12:14 PM
|
#2 (permalink)
|
|
TalkPHP Loves You
Join Date: Sep 2007
Location: Oldham (Manchester)
Posts: 1,461
Thanks: 72
|
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
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
|
|
|