cgi script

I am having a problem with this simple script and was wondering if anyone could maybe help me out.
I,m very new to Perl and cgi scripts and as of now have only got one to opperate correctly on my web site. so here it is.
Stop: I have had to leave out some tags (<>) to show this script and html code. so that is not the prob.
###########################################
###########################################
#!/usr/local/bin/perl -wT
use strict;

print "Content-type: text/html\n\n";
print " p The browser you're using to view this page is: $ENV{'HTTP_USER_AGENT'}";

and the call:
"href="http://fire.prohosting.com/crater1/browser.cgi">who
are you</a>"
###########################################
###########################################
I tried to chmod .cgi to 755 but the server has chmod disabled but says it will assign permission automactically. hmmm automactically?
But anyway I uploaded to my isp server And chmod to 755 and it still do'nt work. At my isp server, I worked with the "real time" help to resolve this issue. but with no luck.
 
Last edited:
Top