Re: Re: multiple sessions for the same user

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



"Larry Martell" wrote in message news:CACwCsY4RA6hEp4+-FgZ4L3MV2QrVo6z-JDnOPB2sdbANytRR=Q@xxxxxxxxxxxxxx...

On Fri, Apr 4, 2014 at 10:54 AM, Tony Marston <TonyMarston@xxxxxxxxxxx> wrote:
"Larry Martell"  wrote in message
news:CACwCsY4xBbdzKE0imoqSTPMpOR-LuELmO1LkZgv4yZ31RqnpOg@xxxxxxxxxxxxxx...


I have a php app that uses a session to share data across requests
(using session_start())

I have a situation where a user wants to open 2 invocations of the app
in 2 browser tabs and look at different things, but because of the
session, both tabs have the same data. Is there a way to have a
separate session for each tab they open?


Yes, this is possible because I have implemented this feature in my
framework. It allows any user to have any number of independent sessions in
any browser. My solution is documented in
www dot tonymarston.net/php-mysql/client-clones.html

Thank you very much Tony. I am going to look into implementing this
now. One question - does use_trans_sid have to be set for this to
work? I asked because I am getting some push back from my admins about
setting that.

I use following settings in my htaccess file:

"Larry Martell" wrote in message news:CACwCsY4RA6hEp4+-FgZ4L3MV2QrVo6z-JDnOPB2sdbANytRR=Q@xxxxxxxxxxxxxx...

On Fri, Apr 4, 2014 at 10:54 AM, Tony Marston <TonyMarston@xxxxxxxxxxx> wrote:
"Larry Martell"  wrote in message
news:CACwCsY4xBbdzKE0imoqSTPMpOR-LuELmO1LkZgv4yZ31RqnpOg@xxxxxxxxxxxxxx...


I have a php app that uses a session to share data across requests
(using session_start())

I have a situation where a user wants to open 2 invocations of the app
in 2 browser tabs and look at different things, but because of the
session, both tabs have the same data. Is there a way to have a
separate session for each tab they open?


Yes, this is possible because I have implemented this feature in my
framework. It allows any user to have any number of independent sessions in
any browser. My solution is documented in
www dot tonymarston.net/php-mysql/client-clones.html

Thank you very much Tony. I am going to look into implementing this
now. One question - does use_trans_sid have to be set for this to
work? I asked because I am getting some push back from my admins about
setting that.

This procedure uses session cookies only, so I use the following settings in my htaccess file:

php_value session.use_cookies 1
php_value session.use_only_cookies 1
php_value session.use_trans_sid 0

--
Tony Marston


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php





[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux