Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Session cookies not working in specific use cases #185

Open
marcosmenendez opened this issue Oct 30, 2015 · 9 comments
Open

Session cookies not working in specific use cases #185

marcosmenendez opened this issue Oct 30, 2015 · 9 comments
Assignees

Comments

@marcosmenendez
Copy link

If I logout in the website and try to relogin as a different user, initial session persists

@atrandafir
Copy link
Contributor

@marcosmenendez I've tried logging with both my username and the admin user and I can see it works fine for me. Can you provide more details on this?

@marcosmenendez
Copy link
Author

You are right. Now it is working. Don't know why.

@marcosmenendez
Copy link
Author

I have reproduced the error. It happens when you logout in the website. Logging out in the extension works.

@marcosmenendez marcosmenendez reopened this Dec 1, 2015
@JorgelieHD
Copy link
Contributor

@marcosmenendez can't reproduce this error. I logged in with the admin user, then my username and it seems fine. Tried this twice and works for me. Can you be more specific?

@atrandafir
Copy link
Contributor

Maybe related to server side cache? I think when the sys admin did some tweaking on Nginx sometimes pages were cached, so maybe we should check that is not something like that.

El 1/12/2015, a las 16:54, jorgerayware [email protected] escribió:

@marcosmenendez can't reproduce this error. I logged in with the admin user, then my username and it seems fine. Tried this twice and works for me. Can you be more specific?


Reply to this email directly or view it on GitHub.

@calidadesystems
Copy link

Hello, I have checked webserver configuratión, sessions are stored in files not in any kind of caches, and i don't saw any kind of cache in nginx
One question, could be that sessions aren't being destroyed correctly?

http://7php.com/php-5-3-how-to-completely-destroy-session-variables-in-php/

//remove PHPSESSID from browser
if ( isset( $_COOKIE[session_name()] ) )
setcookie( session_name(), “”, time()-3600, “/” );
//clear session from globals
$_SESSION = array();
//clear session from disk
session_destroy();

@atrandafir
Copy link
Contributor

I know that maybe Adrian activated some kind of page-cache in nginx when we
were doing stress tests, but again, this is just an idea that we must check
along with other possibilities of the issue to see what could be the cause.
If Marcos can reproduce this "live", maybe he can do a Skype with Jorge and
maybe we can understand it better.

2015-12-01 18:32 GMT+01:00 Calidade Systems [email protected]:

Hello, I have checked webserver configuratión, sessions are stored in
files not in any kind of caches, and i don't saw any kind of cache in nginx
One question, could be that sessions aren't being destroyed correctly?

http://7php.com/php-5-3-how-to-completely-destroy-session-variables-in-php/

//remove PHPSESSID from browser
if ( isset( $_COOKIE[session_name()] ) )
setcookie( session_name(), “”, time()-3600, “/” );
//clear session from globals
$_SESSION = array();
//clear session from disk
session_destroy();


Reply to this email directly or view it on GitHub
#185 (comment).

@calidadesystems
Copy link

I've seen this behavior several times, and causes were a varnish cache bad configured,or session errors. I've checked again and don't see any kind of cache, just nginx raw performance optimizations
if we can reproduce this bug we can check what's happening in session printing a dump of session variable content.

@marcosmenendez
Copy link
Author

I'm on skype to reproduce it now if you want

On Tue, Dec 1, 2015 at 7:00 PM, Calidade Systems [email protected]
wrote:

I've seen this behavior several times, and causes were a varnish cache bad
configured,or session errors. I've checked again and don't see any kind of
cache, just nginx raw performance optimizations
if we can reproduce this bug we can check what's happening in session
printing a dump of session variable content.


Reply to this email directly or view it on GitHub
#185 (comment).

@marcosmenendez marcosmenendez changed the title Session cookies not longer working Session cookies not working in specific use cases Mar 8, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants