|
|
Administrator
|
Posts: 1223
Join Date: Mar 2005
|
The header command puts info in the html header of a page. This header is sent before any html. Notice the code:
Code:
<?php
require ('seo-board_options.php');
include ('./lang/eng.php');
error_reporting(E_ALL);
set_magic_quotes_runtime(0);
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
header("Expires: Mon,26 Jul 1997 05:00:00 GMT"); When the header command executes, it outputs a warning. This is possible only when something is outputed before that. Php would output text when you tell it to do so or when some error happens and php outputs it. That's why a suggested you put the error_reporting code on the top of the file.
Anyway, it does not matter. Just delete the 3 header commands and run it again. That should fix the problem.
|