Jump to content

islex

Members
  • Posts

    6
  • Joined

  • Last visited

islex's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi I changed my IP. So the issue is SOLVED. Thank you for your help.
  2. Thanks I have no connections open. The site is not public yet! (So I guess nobody else is either). Could the admin please check and unblock.
  3. Thank you wolstech for the fast response. ALL OTHER websites are working. islander.heliohost.org worked until last monday than suddenly stopped! No changes to any firewall settings since than. Could you steer me in the right direction. Thank you very much.
  4. Username: islander Server: stevie Domain: islander.heliohost.org Am I suspended? I can not connect to my domain and not even connect to cpanel. No site pops up. Browser just hangs on >>Connecting<<. I tried with different computers already. No success. Thank you
  5. Thank you for your fast response. In my earlier post I forgot to mention that I transferred the script from another 'free web hosting' and I never experienced any problems there. I have not contacted Google support yet but I will do.
  6. Hello I am on 'stevie' and want to retrieve some data from 'Google - maps.googleapis.com'. I use LWP::UserAgent. From heliohost.org the download works sometimes but most of the times it does not. The 'response->status_line' is: 500 Can't connect to maps.googleapis.com:80 The strange thing is, when it works at some point it works for a while and then stops working again. With other tested url's it's working without any issues. The url works from the browser and with wget without any problems. The snipplet of the program is: #!/usr/bin/perl -wT use strict; use warnings; require LWP::UserAgent; print "Content-type: text/html\n\n"; my $ua = LWP::UserAgent->new; $ua->timeout(5); my $response = $ua->get('http://maps.googleapis.com/maps/api/directions/xml?origin=49.29,-123.13&destination=49.32,-123.12'); print $response->status_line; print "<br>"; if ($response->is_success) { my @googleResponse = $response->decoded_content; print qq(success<br>); print qq(@googleResponse); print "<br>"; } else { print qq(err_timeout<br>); } ... and its uploaded to: http://islander.heli...gi-bin/test.cgi Any help would be greatly appreciated.
×
×
  • Create New...