PDA

View Full Version : Cannot ass header error...


EJMack
01-12-2002, 06:46 PM
I keep getting this error:

Warning: Cannot add header information - headers already sent by (output started at C:\Inetpub\wwwroot\start.php:7) in C:\Inetpub\wwwroot\admin\functions.php on line 1490

any ideas on how to troubleshoot it?

Thanks
Eric

Admin
01-13-2002, 10:31 AM
What's start.php? For some reason you echo (or send other kinds of headers) in line 7 of it.

EJMack
01-13-2002, 11:21 AM
its my main page(non-vb), i have a log in part on there that seems to cause this error.

Scott MacVicar
01-13-2002, 01:21 PM
are you trying to set cookies?
if so they have to be sent before any output, this includes whitespace and text.

Do you have an echo, print or even ?> html here <? on line 7 you will have to relocate it to above the part where content is being sent to the browser.

EJMack
01-13-2002, 07:57 PM
well i attached the file, if anyone can take a look at it i'd really appreciate it, i have been tryin to figure this out for afew days and have had no luck....
thanks..

Admin
01-14-2002, 11:48 AM
Move this bit:
<?PHP
chdir("");
require("/global.php");
error_reporting(7);
//connect to database

mysql_connect("localhost", "AllAboutSpeed", "aasfast");
mysql_select_db("aas");
$usernum = mysql_query("Select count(*) from user");
$users = mysql_fetch_array($usernum);
?>
to the very top of the file, before <html>.

EJMack
01-14-2002, 04:18 PM
thanks a lot, it seems to be workin now.....

Freddie Bingham
01-14-2002, 05:49 PM
cannot ass would be a serious problem.

EJMack
01-14-2002, 09:08 PM
hey now i tried changin it.... :D