Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Writing link on HTML page

by smitz (Chaplain)
on Nov 04, 2002 at 09:28 UTC ( [id://210145]=note: print w/replies, xml ) Need Help??


in reply to Writing link on HTML page

It sounds like BrowserUK is right, it could be a firewall issue.
Try acessing this test script from any browser/location that doesn't work:
#!/usr/bin/perl use strict; use CGI; my $q = CGI->new; print $q->header; print $q->start_html; print '<ul>'; foreach my $var (keys %ENV) { print '<li>', $var, ' => ', $ENV{$var}, '</li><br>'; } print '</ul>'; print $q->end_html;
This should print out some nice %ENV ironment variables for you, enabling you to eliminate your code as the source of the problem.

SMiTZ
Warning: Untested code, possible typos, possibly $author eq 'stupid + tired'

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://210145]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (6)
As of 2024-04-23 10:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found