I tried the upgrade and everything seems to be working fine, except the logout message which I don't see it on the logged out session.

I tried to debug the code, even compared it to the 1.0 module and I don't see any rare thing. What might be the problem?

To reproduce, using google chrome and firefox.

I log in in one, then in the other one, and when I go back to the first browser, the user is logged out but I see no logout error message.

a.=

Comments

eric.chenchao’s picture

subscribe

eric.chenchao’s picture

Just find a solution. The session value will be encrypted after the installation of suhosim. Therefore the value added manually and be updated in table 'sessions' will be not be encrypted and will not be displayed.

A quick solution is to disable suhosim.session.encrypt in the .htaccess by adding php_flag suhosin.session.encrypt Off in the following script assuming you are using php5 and apache2

# PHP 5, Apache 1 and 2.
<IfModule mod_php5.c>
  php_value magic_quotes_gpc                0
  php_value register_globals                0
  php_value session.auto_start              0
  php_value mbstring.http_input             pass
  php_value mbstring.http_output            pass
  php_value mbstring.encoding_translation   0
  php_flag suhosin.session.encrypt Off
</IfModule>

Cheers, Eric

johnennew’s picture

Version: 6.x-2.1 » 6.x-2.x-dev
Status: Active » Closed (fixed)

Closing old issue. This does not appear to be a problem with the latest development releases 6.x-2.x and 7.x-2.x. Automated tests check for the message on logout by session limit.

Please reopen if you feel this is a problem with latest development releases.