Re: [PHP-DB] session troubles

2001-07-05 Thread Dobromir Velev

Hi,
This error means that something has been already sent to the browser and the
session Cookie cannot be set.
To fix it
 - check for any white spaces or html tags before the 
To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
Date: Thursday, July 05, 2001 6:18 PM
Subject: [PHP-DB] session troubles


>Hi all,
>Im new to this mailing list so im not sure what to expect from 'y'all' but
>i'm hoping this will be the beginning of a long and beautiful friendship.
>
>My question:
>
>i have a series of PHP4 pages that if I start a session (session_start())
on
>the first page (adminLogin.php), all is fine and dandy...all the
>session_resources get passed to the next page (login2.php) and i can get
>acccess to those session resources. Te problem is, at the top of the page a
>warning message is displayed:
>
>Warning: Cannot send session cache limiter - headers already sent (output
>started at /home/e-smith/files/ibays/test/html/login2.php:1) in
>/home/e-smith/files/ibays/test/html/login2.php on line 1
>
>
>What does this mean?? If i comment out the "session_start()" line,  i dodnt
>get this message BUT i also dont get the session variuables i need.
>
>Hope Im making some sense, Hope someone can help.
>
>Thanks,
>Brad
>
>
>--
>PHP Database 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]
>
>


-- 
PHP Database 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]




Re: [PHP-DB] session troubles

2001-07-05 Thread Nicolas

You must set your session before any html-code, not only head tag.

Mark Collin a écrit :
> 
> are you setting your session before the
> 
> 
> 
> 
> tags ?? if not that could be your problem
> 
> - Original Message -
> From: "Brad Wright" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, July 05, 2001 4:16 PM
> Subject: [PHP-DB] session troubles
> 
> > Hi all,
> > Im new to this mailing list so im not sure what to expect from 'y'all' but
> > i'm hoping this will be the beginning of a long and beautiful friendship.
> >
> > My question:
> >
> > i have a series of PHP4 pages that if I start a session (session_start())
> on
> > the first page (adminLogin.php), all is fine and dandy...all the
> > session_resources get passed to the next page (login2.php) and i can get
> > acccess to those session resources. Te problem is, at the top of the page
> a
> > warning message is displayed:
> >
> > Warning: Cannot send session cache limiter - headers already sent (output
> > started at /home/e-smith/files/ibays/test/html/login2.php:1) in
> > /home/e-smith/files/ibays/test/html/login2.php on line 1
> >
> >
> > What does this mean?? If i comment out the "session_start()" line,  i
> dodnt
> > get this message BUT i also dont get the session variuables i need.
> >
> > Hope Im making some sense, Hope someone can help.
> >
> > Thanks,
> > Brad
> >
> >
> > --
> > PHP Database 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]
> >
> >
> 
> --
> PHP Database 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]

-- 
PHP Database 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]




Re: [PHP-DB] session troubles

2001-07-05 Thread Mark Collin

are you setting your session before the




tags ?? if not that could be your problem

- Original Message -
From: "Brad Wright" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, July 05, 2001 4:16 PM
Subject: [PHP-DB] session troubles


> Hi all,
> Im new to this mailing list so im not sure what to expect from 'y'all' but
> i'm hoping this will be the beginning of a long and beautiful friendship.
>
> My question:
>
> i have a series of PHP4 pages that if I start a session (session_start())
on
> the first page (adminLogin.php), all is fine and dandy...all the
> session_resources get passed to the next page (login2.php) and i can get
> acccess to those session resources. Te problem is, at the top of the page
a
> warning message is displayed:
>
> Warning: Cannot send session cache limiter - headers already sent (output
> started at /home/e-smith/files/ibays/test/html/login2.php:1) in
> /home/e-smith/files/ibays/test/html/login2.php on line 1
>
>
> What does this mean?? If i comment out the "session_start()" line,  i
dodnt
> get this message BUT i also dont get the session variuables i need.
>
> Hope Im making some sense, Hope someone can help.
>
> Thanks,
> Brad
>
>
> --
> PHP Database 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]
>
>


-- 
PHP Database 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]