Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re^2: Apache CGi's

by Sifmole (Chaplain)
on May 10, 2006 at 18:20 UTC ( [id://548534]=note: print w/replies, xml ) Need Help??


in reply to Re: Apache CGi's
in thread Apache CGi's

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.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://548534]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (3)
As of 2024-04-20 03:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found