in reply to Apache CGi's

Hi kitsonrp,

A quick Super Search returned Panic: Can't find bfs section which may be worth a read.
Failing that, perhaps a search of ASPN would be helpful.

Hope this helps

Martin

Replies are listed 'Best First'.
Re^2: Apache CGi's
by Sifmole (Chaplain) on May 10, 2006 at 18:20 UTC
    You are most likley not printing your header first before anything else is being printed.

    A header would be like

    print "Content-type: text/html\n\n" or print $q->header();
    If your code is erroring then what is getting printed might be going to the browser and causing this error -- you can check your error logs to see if this is happening.
    Another quick check type of thing is to do a print as the first thing:
    print "Content-type: text/plain\n\n"
    and then let the rest of the existing code execute; if your code is erroring you will see it show up in plain text in the browser. Also you can see when your expected header is coming out and if anything is being printed before that.