Re: cgi help

2001-07-05 Thread Gabor Szabo
It is most likely the missing first line : make sure you print this as the first line of the output print "Content-type: text/html\n\n"; then comes your HTML output or better yet use the following: use CGI; my $q=new CGI; print $q->header; read about the CGI module by typing perldoc CGI on y

Re: cgi help

2001-07-05 Thread Maxim Berlin
Hello Michael, Saturday, June 23, 2001, Michael P. Carel <[EMAIL PROTECTED]> wrote: MPC> Hi there, Is there any one who can help with my problem regarding perl MPC> cgi's. MPC> I've encountering problemwith my webpages when i execute my cgi prog, heres MPC> my error messages in my page: [...] M

Re: cgi help

2001-07-05 Thread Michael P. Carel
> Hello Michael, Hi Maxim, > > Saturday, June 23, 2001, Michael P. Carel <[EMAIL PROTECTED]> wrote: > > > MPC> Hi there, Is there any one who can help with my problem regarding perl > MPC> cgi's. > MPC> I've encountering problemwith my webpages when i execute my cgi prog, heres > MPC> my error mes

RE: cgi help

2001-07-05 Thread Sally
I've had problems similar to this, they were caused because I had the absolute path to the file wrong -Original Message- From: Michael P. Carel [mailto:[EMAIL PROTECTED]] Sent: 23 June 2001 23:16 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: cgi help > Hello Mic