So you can open www.google.com in a browser but can't get it via get()?

        Copy and Paste this code and run just it (adjusting your path to perl of 
course):
#!/usr/bin/perl -w

use strict;
use LWP::Simple;
print "Content-type: text/html\n\n";
print get("http://216.239.33.100/";);    

        If that works but this doesn't :
#!/usr/bin/perl -w

use strict;
use LWP::Simple;
print "Content-type: text/html\n\n";
print get("http://www.google.com/";);    

        Then it would seem you have a dns resolving issue.


--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to