[TYPO3-english] Login failure when adding TypoScript 'Felogin'

Christian Futterlieb christian at futterlieb.ch
Thu Sep 19 10:15:08 CEST 2013


Hi Salander

> Could you explain me more about "apply the condition checkbox"?
Take a look at this image: 
http://wiki.typo3.org/File:10000201000002E5000002E48EE03A3D.png

At the bottom you'll see the condition checkboxes. When you apply them, 
the typoscript in the object browser is shown as "if the selected 
conditions are true".

 > temp.navigationArea = TEMPLATE
 > temp.navigationArea {
 >    [...]
 >    subparts.login_footer < plugin.tx_felogin_pi1
 >    [globalVar = TSFE:id=20]
 >    subparts.login_footer >
 >    [global]
 >
 >    subparts.login.detailsPage = 2
 >
 >    subparts.register_footer < plugin.tx_srfeuserregister_pi1
 > }

Be sure that the condition is *not* inside the curly braces ("{}") of 
another object (in this case "temp.navigationArea"). So change from this:

> temp.navigationArea = TEMPLATE
> temp.navigationArea {
>     subparts.login_footer < plugin.tx_felogin_pi1
>     [globalVar = TSFE:id=20]
>     subparts.login_footer >
>     [global]
> }

to that:

temp.navigationArea = TEMPLATE
temp.navigationArea {
     subparts.login_footer < plugin.tx_felogin_pi1
}
[globalVar = TSFE:id=20]
temp.navigationArea.subparts.login_footer >
[global]


Regards, Christian


More information about the TYPO3-english mailing list