Re: [TYPO3-english] Session data

2011-03-31 Thread Tomiţă MILITARU
Thanks guys, the problem was actually that a hook was not executed with the code for session data, turned out it worked just fine. On Wed, Mar 30, 2011 at 4:54 PM, Dmitry Dulepov wrote: > Hi! > > > Jigal van Hemert wrote: > >> According to the chapter in TSRef [1] (and the TYPO3 source code) 'ses

Re: [TYPO3-english] Session data

2011-03-30 Thread Dmitry Dulepov
Hi! Jigal van Hemert wrote: According to the chapter in TSRef [1] (and the TYPO3 source code) 'ses' refers to session data and is bound to a browser session. 'user' refers to user data and is bound to a fe_user record. Oh, I did not realize it is about 'ses' data... May be I read too fast. Fo

Re: [TYPO3-english] Session data

2011-03-30 Thread Jigal van Hemert
Hi, On 30-3-2011 11:39, Dmitry Dulepov wrote: Tomiţă MILITARU wrote: I'm using extension sr_feuser_register with TYPO3 4.2.10 and I want to save some data in a session to have it available on other pages. My approach was: $sessionData['key'] = value $GLOBALS['TSFE']->fe_user->setKey('ses', 'sr

Re: [TYPO3-english] Session data

2011-03-30 Thread Dmitry Dulepov
Hi! Tomiţă MILITARU wrote: I'm using extension sr_feuser_register with TYPO3 4.2.10 and I want to save some data in a session to have it available on other pages. My approach was: $sessionData['key'] = value $GLOBALS['TSFE']->fe_user->setKey('ses', 'sr_feuser_register', $sessionData); $GLOBALS[

[TYPO3-english] Session data

2011-03-28 Thread Tomiţă MILITARU
Hello, I'm using extension sr_feuser_register with TYPO3 4.2.10 and I want to save some data in a session to have it available on other pages. My approach was: $sessionData['key'] = value $GLOBALS['TSFE']->fe_user->setKey('ses', 'sr_feuser_register', $sessionData); $GLOBALS['TSFE']->fe_user->stor