Make sure that the <? that starts the php script is the VERY first line of
the file, and that there are NO spaces before it anywhere.

I had the same problem, I was used to html and even PHP being rather syntax
flexible.
As soon as I removed the spaces and extra line at the beginning of the file,
life was back to normal.

Let me know if this works. I'm curious....

----- Original Message -----
From: "JB" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, January 10, 2001 9:04 AM
Subject: [PHP] Session Errors, do you recognize?


Hey, I keep getting the same error messages when trying to fire up sessions
in this code i wrote. i've written some test scripts to test sessions on my
machine, and they are working, so the problem must lie within my code. Here'
what I'm getting, anyone know how to resolve this?

Warning: Cannot send session cookie - headers already sent by (output
started at C:\Program Files\Apache
Group\Apache\htdocs/store/index.php:2) in ../../wpdbcon.php on line 14

Warning: Cannot send session cache limiter - headers already sent (output
started at C:\Program Files\Apache
Group\Apache\htdocs/store/index.php:2) in ../../wpdbcon.php on line 14


wpdbcon.php --------------

<?
$db = "mydb";
$user = "mybot";
$pw = "mypw";
$mysql_access = mysql_connect("localhost", $user, $pw);
mysql_select_db($db, $mysql_access);

session_start();

if (!session_is_registered('cart') {
$cart = array();
session_register('cart');
}

?>

i also tried doing

if (!session_is_registered('cart') {
$cart = array();
session_register('cart');
}
else {
session_start();
}

i thought it was sending conflicting data when it was trying to initialize,
didn't work either.

thanks in advance.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to