reneeshtk Posted May 21, 2007 Share Posted May 21, 2007 Hi All I have written some curl commands for retreving data from a site. the code of test.php is $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://php.net/"); $test = curl_exec($ch); echo $test; curl_close($ch); This code is working fine in localhost . but not working when I uploaded into the server. There showing a dialogue box telling "you have chosen to open test.php....what should firefox do with this file.. open with or save to disk... etc... I checked the phpinfo of server and found curl is enabled.. Then why this dialogue box coming and not working the code. what we do to overcome this? Please help.. the Php version in which my curl working is : PHP Version 5.1.6 Not working version is : PHP Version 4.3.2 Thanks in advance........ Quote Link to comment https://forums.phpfreaks.com/topic/52411-curlanybody-know-about-it/ Share on other sites More sharing options...
btherl Posted May 22, 2007 Share Posted May 22, 2007 That's an issue with your server configuration. You should talk to your hosting provider about it. Btw, it's not related to curl. You'll have the same problem with any php script. Quote Link to comment https://forums.phpfreaks.com/topic/52411-curlanybody-know-about-it/#findComment-258681 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.