On Mon, Jan 27, 2003 at 06:12:54AM +0100, Emiliano wrote: > > Look closely at the title bar on your web browser when you visit > > http://stevesobol.com:8001/nf.php - it's a midgard site but that > > particular page is served off the filesystem. > > > > Source code: > > > > header("Status: HTTP/1.0 404 Not Found"); > > Shouldn't that be either: > > header("HTTP/1.0 404 Not Found"); > or > header("Status: 404 Not Found");
I use the first form on my own site, and it simply reports the 404. You must use this from code-init (or code-global, or code-compat) so it will be sent out before any other data, as noted by others, but It Works For Me. Emile --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
