Re: mod_python and PHP sharing same session

2006-04-04 Thread K Raghu Prasad
Scott wrote: > I am trying to get a mod_python application to read an existing PHP > session. I need some data that was set in the session by the PHP > application. I am using the mod_python Session class but even when I > specify the session id that PHP uses the Session(req, sid) call > ret

Re: mod_python and PHP sharing same session

2006-04-03 Thread Jim Gallacher
Scott wrote: > I am trying to get a mod_python application to read an existing PHP > session. I need some data that was set in the session by the PHP > application. I am using the mod_python Session class but even when I > specify the session id that PHP uses the Sesssion(req, sid) call > returns

Re: mod_python and PHP sharing same session

2006-04-03 Thread Diez B. Roggisch
Scott wrote: > I am trying to get a mod_python application to read an existing PHP > session. I need some data that was set in the session by the PHP > application. I am using the mod_python Session class but even when I > specify the session id that PHP uses the Sesssion(req, sid) call > return

mod_python and PHP sharing same session

2006-04-03 Thread Scott
I am trying to get a mod_python application to read an existing PHP session. I need some data that was set in the session by the PHP application. I am using the mod_python Session class but even when I specify the session id that PHP uses the Sesssion(req, sid) call returns a new session id. The