Gossamer Forum
Home : Products : DBMan : Installation :

please help

Quote Reply
please help
Could you please remind me what's wrong when the browser displays the text, instead of executing the script. I checked the permissions(755) and that it was uploaded in ASCII. I tried searching the Forum, but it didn't come up with anything relevant. I'd appreaciate any help I can get.

~Margaret

"There is nothing so unequal as the equal treatment of unequals." ~ Thomas Jefferson
Quote Reply
Re: please help In reply to
Hi Margaret, this error is usually encountered if the bolded line below has been removed when you edit the html.pl file.

sub html_home {
# --------------------------------------------------------
# The database manager home page.

&html_print_headers;
print qq|

If that line is present in your file, check that the following lines are accurate at the very bottom of the html.pl file.

sub html_print_headers {
# --------------------------------------------------------
# Print out the headers if they haven't already been printed.

if (!$html_headers_printed) {
print "Content-type: text/html\n\n";
$html_headers_printed = 1;
}
}
1;