Re: [PHP] solved Re: [PHP] sessions, IE and pop-up windows

2003-06-10 Thread Emma Jane Hogbin
On Tue, Jun 10, 2003 at 10:47:58AM +0100, Ford, Mike [LSS] wrote: > Well, first of all the fact that this solution works means it has nothing to do with > the output buffering setting, nor whether there's a session_write_close() in the > calling script (although that's good practice

RE: [PHP] solved Re: [PHP] sessions, IE and pop-up windows

2003-06-10 Thread Ford, Mike [LSS]
> -Original Message- > From: Kevin Stone [mailto:[EMAIL PROTECTED] > Sent: 09 June 2003 23:54 > > - Original Message - > From: "Emma Jane Hogbin" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > > > What ended up working was passing the session ID to the > pop-up window > > "manua

RE: [PHP] sessions, IE and pop-up windows

2003-06-10 Thread Ford, Mike [LSS]
> -Original Message- > From: Jason k Larson [mailto:[EMAIL PROTECTED] > Sent: 09 June 2003 22:23 > > Try adding the SessionID to the URL. > > openEdit("add=event&cellid=10& ().'='.Session_ID();?>"); > > or a little better: > $thisSession = Session_Name().'='.Session_ID(); > openEdit("add

Re: [PHP] solved Re: [PHP] sessions, IE and pop-up windows

2003-06-09 Thread Kevin Stone
- Original Message - From: "Emma Jane Hogbin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 09, 2003 4:21 PM Subject: [PHP] solved Re: [PHP] sessions, IE and pop-up windows > On Mon, Jun 09, 2003 at 03:56:28PM -0600, Kevin Stone wrote: &

Re: [PHP] solved Re: [PHP] sessions, IE and pop-up windows

2003-06-09 Thread Jason k Larson
*woot!* :) I love being right. ;) -- Jason k Larson Emma Jane Hogbin wrote: What ended up working was passing the session ID to the pop-up window "manually" by including it in the function (and thus the URL). emma -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] solved Re: [PHP] sessions, IE and pop-up windows

2003-06-09 Thread Emma Jane Hogbin
On Mon, Jun 09, 2003 at 03:56:28PM -0600, Kevin Stone wrote: > I still believe what's happening is the edit script is being executed before > the parent script has died. Are you doing some kind of looping background > process or something that's keeping the parent script from exiting? No. In fact

Re: [PHP] sessions, IE and pop-up windows

2003-06-09 Thread Emma Jane Hogbin
On Mon, Jun 09, 2003 at 03:23:16PM -0600, Jason k Larson wrote: > or a little better: > $thisSession = Session_Name().'='.Session_ID(); > openEdit("add=event&cellid=10&"); This plus a reboot did the trick, THANKYOU!! > Then of course the editsmall.php must still do a session_start somewhere. Alr

Re: [PHP] sessions, IE and pop-up windows

2003-06-09 Thread Kevin Stone
- Original Message - From: "Emma Jane Hogbin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 09, 2003 2:32 PM Subject: Re: [PHP] sessions, IE and pop-up windows > On Mon, Jun 09, 2003 at 02:27:50PM -0600, Kevin Stone wrote: > > I'll b

Re: [PHP] sessions, IE and pop-up windows

2003-06-09 Thread Jason k Larson
Try adding the SessionID to the URL. openEdit("add=event&cellid=10&"); or a little better: $thisSession = Session_Name().'='.Session_ID(); openEdit("add=event&cellid=10&"); Then of course the editsmall.php must still do a session_start somewhere. -- Jason k Larson Emma Jane Hogbin wrote: On Mon,

Re: [PHP] sessions, IE and pop-up windows

2003-06-09 Thread Emma Jane Hogbin
On Mon, Jun 09, 2003 at 02:27:50PM -0600, Kevin Stone wrote: > I'll bet you're using an onLoad command to launch the popup aren't you. Use > Output Buffering to keep stdout from flushing before the parent script dies. > If my assumption about onLoad is correct then that'll solve your problem. Um

Re: [PHP] sessions, IE and pop-up windows

2003-06-09 Thread Kevin Stone
- Original Message - From: "Emma Jane Hogbin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 09, 2003 1:08 PM Subject: Re: [PHP] sessions, IE and pop-up windows > On Mon, Jun 09, 2003 at 09:26:45PM +0200, winst0n wrote: > > Hi, try to

Re: [PHP] sessions, IE and pop-up windows

2003-06-09 Thread Emma Jane Hogbin
On Mon, Jun 09, 2003 at 09:26:45PM +0200, winst0n wrote: > Hi, try to write a @session_start(); in ur popup windows... it will call the > last session opened by the client. I already do thatboth the parent and the main window call a file which has the session_start in it. I believe the problem

[PHP] sessions, IE and pop-up windows

2003-06-09 Thread Emma Jane Hogbin
I'm working on a Calendar script right now that uses sessions. When a user clicks on the "edit" button a pop-up window appears so that the full calendar is still available along with the new event that's being editted. It works fine in Mozilla but in IE the pop-up window appears to log out the user