The -c path option tells PHP where to find the php.ini. That is not the issue.
I found out what happened. For some reason on my install curl fails to access https URLs. I replaced it with flle_get_contents($url) and it works now.
I'll use this as a workaround for now. Still would like to know what's happening to curl
Thanks anyway
PHP is 5.2.6, curl is enabled with libcurl/7.16.0
Hi
I guess its because of the -c path option which you have specified which I guess is invalidating the command line args. Try without giving it (assuming you have php5.2 and the necessary curl version - check the prereqs) . Let me know if it works fine. Thanks
--R