RE: [PHP] Cannot send session cache limiter SOLVED

2004-01-06 Thread john
>> from the code: >> >> > include 'navigationStart3.php4'; > > Are these indents in the code (changeAlertDetails3.php4 I think)? You > can't have anything before the , sorted, thanks everyone J -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/

RE: [PHP] Cannot send session cache limiter

2003-12-31 Thread Vail, Warren
ailto:[EMAIL PROTECTED] Sent: Wednesday, December 31, 2003 10:25 AM To: Vail, Warren; [EMAIL PROTECTED] Subject: RE: [PHP] Cannot send session cache limiter > perhaps you could show some code snippets. Thanks Warren, at least I know my message is getting through :-) Well, I just got this:

RE: [PHP] Cannot send session cache limiter

2003-12-31 Thread Brad Pauly
On Wed, 2003-12-31 at 11:24, [EMAIL PROTECTED] wrote: > > perhaps you could show some code snippets. > > Thanks Warren, at least I know my message is getting through :-) > > Well, I just got this: > > Warning: Cannot send session cookie - headers already sent by (output > started at /home/sites/

Re: [PHP] Cannot send session cache limiter

2003-12-31 Thread Brad Pauly
On Wed, 2003-12-31 at 10:59, [EMAIL PROTECTED] wrote: > Hi > > (apologies if you've seen this, but I sent it and it both came back from > the list server, and it bounced back as a failed email, so I'm going to > try again) > > I'm new to the list, but I've been PHP programming for almost 2 years

RE: [PHP] Cannot send session cache limiter

2003-12-31 Thread john
> perhaps you could show some code snippets. Thanks Warren, at least I know my message is getting through :-) Well, I just got this: Warning: Cannot send session cookie - headers already sent by (output started at /home/sites/site191/web/test2/changeAlertDetails3.php4:1) in /home/sites/site191/w

RE: [PHP] Cannot send session cache limiter

2003-12-31 Thread Vail, Warren
have you placed echo's on both sides of the session_start to make sure that is where your error message is coming from; echo "point 1"; session_start(); echo "point 2"; I am assuming that your send entry is in via the Is there any thing different about that URL like appended get parameters as i

Re: [PHP] Cannot send session cache limiter - headers already sent Cannot send session cookie - headers already sent by

2001-01-11 Thread Teodor Cimpoesu
Hi JB! On Wed, 10 Jan 2001, JB wrote: > actually.. still give me the same error after i fixed that. new code as > follows along with the error: > > if (!session_is_registered('cart')) { > $cart = array(); > session_register('cart'); > } > else { > session_start(); > } > > any other ideas? =)

Re: [PHP] Cannot send session cache limiter - headers already sent Cannot send session cookie - headers already sent by

2001-01-10 Thread Richard Lynch
I think you want to do more like this: session_start(); if (!session_is_registered('cart')){ session_register('cart'); $cart = array(); } - Original Message - From: "JB" <[EMAIL PROTECTED]> Newsgroups: php.general Sent: Wednesday, January 10, 2001 3:43 PM Subject: [PHP] Cannot se