Menu

Need help with this error message

Help
2003-01-24
2003-01-25
  • Nobody/Anonymous

    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?

     
    • Jeremy Collins

      Jeremy Collins - 2003-01-24

      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

       
    • Jeremy Collins

      Jeremy Collins - 2003-01-24

      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

       
    • Nobody/Anonymous

      Thanks so much, that took care of it.

       

Log in to post a comment.