1 (edited by Wuu 2009-03-19 10:42)

Topic: stop common.php from sending header

How to stop common.php from sending header i need to set this for chat

    header("Expires: Mon, 26 Jul 1997 05:00:00 GMT" ); 
header("Last-Modified: " . gmdate( "D, d M Y H:i:s" ) . "GMT" ); 
header("Cache-Control: no-cache, must-revalidate" ); 
header("Pragma: no-cache" );
header("Content-Type: text/xml; charset=utf-8");

Re: stop common.php from sending header

In most cases, headers are sent in "header.php". Replace it or add an if-statement, if your want to send special headers only for some pages.