07-01-2008, 11:36 AM
|
#9 (permalink)
|
|
Moderator
Join Date: Sep 2007
Location: Near you.
Posts: 450
Thanks: 228
|
Quote:
Originally Posted by Wildhoney
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
__________________
inquisitive
1. Eager to acquire knowledge.
2. Too curious; overly interested; nosy.
|
|
|
|