Hi There,
I'm trying to setup a site that uses a simple perl script:
Other perl scripts work fine however this one gives a permission denied error? Can you tell me what I've missed?
Thanks
Luke
I'm trying to setup a site that uses a simple perl script:
Code:
#!/usr/bin/perl
use LWP::Simple;
print "Content-type: text/html\n\n";
@content=get('http://some_url');
foreach$line(@content) {
$line=~s/<HEAD>/<HEAD>\n<BASE target=\"_top\">\n/;
print $line;
}
Thanks
Luke