Re: [TYPO3-english] Clear FE user session data on logoff

2011-12-13 Thread Victor Livakovsky
Hi, Jigal. If you want to store data about a logged in user you can use setKey('user', $name, $data). This will even survive between logins. Yes, I also was looking into this, but I don't need so long life of data, so I rejected this way and made it a bit different: $name variable contains

[TYPO3-english] Clear FE user session data on logoff

2011-12-09 Thread Victor Livakovsky
Hi, list. I wonder, if there is a way to instruct the core to remove session data of current FE user, when he logs of? I'm intensively using at one of the webs: $GLOBALS['TSFE']-fe_user-setKey('ses', $name, $data); and that data stays in a session even, if user logs out. So, if another user

Re: [TYPO3-english] Clear FE user session data on logoff

2011-12-09 Thread Jigal van Hemert
Hi, On 9-12-2011 19:08, Victor Livakovsky wrote: I wonder, if there is a way to instruct the core to remove session data of current FE user, when he logs of? I'm intensively using at one of the webs: $GLOBALS['TSFE']-fe_user-setKey('ses', $name, $data); and that data stays in a session even, if