Nope. Looks like yours only because the "Content-Type: text/html; charset=ISO-8859-1" shows up top, and the page is titled "Untitled Document", but no source. Must be because I uploaded the Perl modules locally. Maybe I did it wrong. I created a folder named modules in the
I wasn't allowed to create a folder where
cgi-bin folders reside. I uploaded all the Perl modules for
to the modules folder (including folder names such as HTTP and LWP). Then I added the line
Code:
use lib '/mnt/web_i/d26/s15/b01eb8dc/[URL unfurl="true"]www/modules/';[/URL]
to use the modules in the folder. So my EXACT code is:
[code}
#!/usr/bin/perl
print "Content-type: text/html\n\n";
use lib '/mnt/web_i/d26/s15/b01eb8dc/
use CGI::Carp 'fatalsToBrowser';
use warnings;
use CGI qw/:standard/;
use LWP::Simple;
print header, start_html();
my $to_get = "
my @caught = get($to_get);
print @caught;
[/code]
But no dice. I'm starting to think about paying for web hosting. I can't really afford it if it's $10/month since I have a crapload of other bills plus rent, but it might be the only thing I can do to get this working.