tidas Posted October 23, 2008 Share Posted October 23, 2008 Warning: fopen(http://localhost/site/service.php) [function.fopen]: failed to open stream: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. in C:\wamp\www\site\API.php on line 47 Fatal error: Maximum execution time of 30 seconds exceeded in C:\wamp\www\site\API.php on line 47 I installed WAMP on Vista and got the above error . Can some one help me !!!Really urgent Link to comment https://forums.phpfreaks.com/topic/129844-fopen-not-working-in-vista/ Share on other sites More sharing options...
DarkWater Posted October 23, 2008 Share Posted October 23, 2008 1) It's not really urgent. 2) We need to see code in order to help you with anything. Link to comment https://forums.phpfreaks.com/topic/129844-fopen-not-working-in-vista/#findComment-673144 Share on other sites More sharing options...
discomatt Posted October 23, 2008 Share Posted October 23, 2008 If it's so urgent, get a PHP consultant. We're volunteers and you're no more important than anyone else asking for help. Link to comment https://forums.phpfreaks.com/topic/129844-fopen-not-working-in-vista/#findComment-673146 Share on other sites More sharing options...
aeonsky Posted October 23, 2008 Share Posted October 23, 2008 Try 'file_get_contents();'. Link to comment https://forums.phpfreaks.com/topic/129844-fopen-not-working-in-vista/#findComment-673149 Share on other sites More sharing options...
kenrbnsn Posted October 23, 2008 Share Posted October 23, 2008 Why are you trying to open a web based file? You probably just want to open a local file: <?php $fp = fopen('service.php'); ?> Ken Link to comment https://forums.phpfreaks.com/topic/129844-fopen-not-working-in-vista/#findComment-673157 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.