Re: [PHP] Session ?

2012-12-08 Thread Jim Giner
On 12/7/2012 3:20 PM, Sebastian Krebs wrote: 2012/12/7 Daniel Brown On Fri, Dec 7, 2012 at 3:04 PM, Jim Giner wrote: OK - now that I've messed us all up, help me to understand your proposed solution. I added the ini-set line to my first script. Then I called my second one and still had th

Re: [PHP] Session ?

2012-12-08 Thread Jim Giner
On 12/7/2012 4:02 PM, Jim Giner wrote: So i need the ini set in both scripts. Thx. Ill try that later jg OK - I put the line: ini_set('session.cookie_domain','.albanyhandball.com'); session_start(); into each of my scripts. Didn't work. Let me explain my domain names. My main domain is "a

Re: [PHP] Session ?

2012-12-08 Thread Daniel Brown
On Sat, Dec 8, 2012 at 10:52 AM, Jim Giner wrote: > Didn't work. > > Let me explain my domain names. My main domain is "albanyhandball.com". I > have two subs called "x.albanyhandball.com" and "y.albanyhandball.com". > Attached to each of these is what my isp calls an "add-on domain" name. > The

Re: [PHP] Session ?

2012-12-08 Thread Jim Giner
On 12/8/2012 11:04 AM, Daniel Brown wrote: You can pass the session ID and reactivate the session that way, sure. Not pretty, and it does lead to security considerations, but it would work. OK - I've done this in script 1: if (isset($_REQUEST['sess'])) $sess_id = $_REQUEST['sess'

Re: [PHP] Session ?

2012-12-08 Thread Jim Giner
On 12/8/2012 11:41 AM, Jim Giner wrote: On 12/8/2012 11:04 AM, Daniel Brown wrote: You can pass the session ID and reactivate the session that way, sure. Not pretty, and it does lead to security considerations, but it would work. OK - I've done this in script 1: if (isset($_REQUEST['ses

Re: [PHP] Session ?

2012-12-08 Thread David OBrien
On Sat, Dec 8, 2012 at 12:10 PM, Jim Giner wrote: > On 12/8/2012 11:41 AM, Jim Giner wrote: > >> On 12/8/2012 11:04 AM, Daniel Brown wrote: >> >>> You can pass the session ID and reactivate the session that way, >>> sure. Not pretty, and it does lead to security considerations, but it >>> wo

Re: [PHP] Session ?

2012-12-08 Thread Jim Giner
On 12/8/2012 12:10 PM, Jim Giner wrote: On 12/8/2012 11:41 AM, Jim Giner wrote: On 12/8/2012 11:04 AM, Daniel Brown wrote: You can pass the session ID and reactivate the session that way, sure. Not pretty, and it does lead to security considerations, but it would work. OK - I've done th