My error log is filling up with the following messages:
Jan 23 15:20:40 2003] [error] [client 208.190.195.131] Premature end of script headers: /home/absolute/public_html/cgi-bin/cadmin/clanadmin.cgi
[Thu Jan 23 15:20:40 2003] [error] [client 208.190.195.131] unable to include "cgi-bin/cadmin/clanadmin.cgi?parse=roster&show=retired" in parsed file /home/absolute/public_html/members.shtml
This happens whenever anyone looks at the "members" page. The error displays on the page too. Any ideas for me?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
My error log is filling up with the following messages:
Jan 23 15:20:40 2003] [error] [client 208.190.195.131] Premature end of script headers: /home/absolute/public_html/cgi-bin/cadmin/clanadmin.cgi
[Thu Jan 23 15:20:40 2003] [error] [client 208.190.195.131] unable to include "cgi-bin/cadmin/clanadmin.cgi?parse=roster&show=retired" in parsed file /home/absolute/public_html/members.shtml
This happens whenever anyone looks at the "members" page. The error displays on the page too. Any ideas for me?
hmm, i just recently found this bug last night
seems to only happen on apache 1.3.26 servers running on linux (atleast in my case)
i will be patching it up and re-releasing tonigh
ok, heres the fix until i re-package
in members.pl line 584 you have an if statment that looks like this
if ($i < 1) {
exit;
}
just edit it to look like this
if ($i < 1) {
print "Content-type: text/html\n\n";
exit;
}
and that should fix you up
Thanks so much, that took care of it.