* Thus wrote Dac Chartrand ([EMAIL PROTECTED]):
> The following code used to work until i upgraded to 4.3.6
> 
> Code:
> ---------------
> // Get RSS feed
> $c =
> curl_init('http://www.vegguide.org/rss/feed.rss?all=1&omit_hours=1');
> curl_setopt($c, CURLOPT_ENCODING, 'gzip');
> curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
> curl_setopt($c, CURLOPT_COOKIEFILE, $cookie_jar);
> // *** This next line is the problem! ***
> $data = curl_exec($c);
> curl_close($c);

Check curl_errno() and curl_error().

it sounds like there is a problem with your libcurl


Curt
-- 
"I used to think I was indecisive, but now I'm not so sure."

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to