Enter the username of the website user. This is needed to login. Enter the username of the website user. This is needed to login. A username is required and must be in lowercase without spaces in it. The username must be unique among other usernames in the page where it's saved. If it is not unique a number will be prepended automatically. A username is required and must be in lowercase without spaces in it. The username must be unique among other usernames in the page where it's saved. If it is not unique a number will be prepended automatically. Creating Frontend Users and Groups | http://typo3.org/documentation/document-library/doc_tut_quickstart/Create_users_group/ Creating Frontend Users and Groups | http://typo3.org/documentation/document-library/doc_tut_quickstart/Create_users_group/ Enter the password for the username above. This is needed to login. Enter the password for the username above. This is needed to login. A password is required and must be in lowercase without spaces in it. A password is required and must be in lowercase without spaces in it. Select a user group for the username. Select a user group for the username. When a user logs in he is able to view all content which is access restricted to the user <em>group(s)</em> the user is a member of. Therefore the user login primarily makes sense with regard to the member groups. When a user logs in he is able to view all content which is access restricted to the user <em>group(s)</em> the user is a member of. Therefore the user login primarily makes sense with regard to the member groups. Enter the host name from which the user is forced to login. Enter the host name from which the user is forced to login. A TYPO3 system may have multiple domains pointing to it. Therefore this option secures that users can login only from a certain host name. A TYPO3 system may have multiple domains pointing to it. Therefore this option secures that users can login only from a certain host name. Either a domain name, "www.typo3.com" or an IP address, "10.34.222.83" Either a domain name, "www.typo3.com" or an IP address, "10.34.222.83" fe_groups:lockToDomain fe_groups:lockToDomain Enter the regular name of the user, both first- and surname. Enter the regular name of the user, both first- and surname. Enter the street address of the user. Enter the street address of the user. Enter the homepage URL Enter the homepage URL Enter the job title, eg. 'Director' or 'Accountant'. Enter the job title, eg. 'Director' or 'Accountant'. Enter the name of the company in which the user is employed. Enter the name of the company in which the user is employed. Insert a photo of the user. Insert a photo of the user. This option will temporarily disable the user from logging in. This option will temporarily disable the user from logging in. fe_users:starttime,fe_users:endtime fe_users:starttime,fe_users:endtime Enter the date from which the account is active. Enter the date from which the account is active. The syntax is dd-mm-yy, but you can just enter a "d" in the field to insert todays date. Or "d+10" to insert the date 10 days from now etc. The field will re-format any input to fit the format it understands so you can just experiment and you will be able to clearly see how dates should be entered. The syntax is dd-mm-yy, but you can just enter a "d" in the field to insert todays date. Or "d+10" to insert the date 10 days from now etc. The field will re-format any input to fit the format it understands so you can just experiment and you will be able to clearly see how dates should be entered. fe_users:disable,fe_users:endtime fe_users:disable,fe_users:endtime Enter the date from which the account is disabled. Enter the date from which the account is disabled. See "Start" See "Start" fe_users:disable,fe_users:starttime fe_users:disable,fe_users:starttime This field shows the user's last log in date. This field shows the user's last log in date. Enter additional TSconfig for the user (advanced). Enter additional TSconfig for the user (advanced). This field allows you to enter TypoScript style configuration values for the user. Currently there are no system defined keys. If there ever will be, they will be described in detail in the administrative documentation. The primary use of this field (as well as the 'sister'-field in the Website usergroup table) is for custom purposes. In this case, you should use the root-key "user" for your customly defined values. Thus you don't risk any future system keys to interfere with your configuration. You access the values of the configuration from your frontend plugins by calling the function <em>$GLOBALS["TSFE"]->fe_user->getUserTSconf()</em> which will return an array with the valuetree in it. <b>Warning:</b> You should use Website user/group TSconfig in your PHP-scripts ONLY if your resulting content is NOT being cached! So call it from TypoScript USER_INT cObjects or disable caching from your PHP-code by calling <em>$GLOBALS["TSFE"]->set_no_cache();</em> <b>TSconfig from Website usergroups:</b> Notice that the configuration from the field TSconfig in the member groups of the user is accumulated and prepended to the TSconfig of the user before it's parsed. This means for instance that a key defined in the TSconfig of the user (this field) will override the same key defined in the last (bottom) usergroup in the list which will again override the same key defined in the first (top) usergroup in the list. <b>Example:</b> Let's imagine you want to define for a user that his name is printed in the bottom of the webpages when he is logged in. First of all you must write a PHP-function and insert the result from it as a USER_INT cObject in the bottom of the page. But your function needs to know, whether or not this user is configured to have his name printed. So you decide to use a custom TSconfig key, 'user.printUserName': <em>In the TSconfig field of the user or usergroup:</em> user.printUserName = 1 <em>In your PHP-function:</em> $userTSConfig = $GLOBALS["TSFE"]->fe_user->getUserTSconf(); if ($userTSConfig["user."]["printUserName"]) { return $GLOBALS["TSFE"]->fe_user->user["name"]; } This field allows you to enter TypoScript style configuration values for the user. Currently there are no system defined keys. If there ever will be, they will be described in detail in the administrative documentation. The primary use of this field (as well as the 'sister'-field in the Website usergroup table) is for custom purposes. In this case, you should use the root-key "user" for your customly defined values. Thus you don't risk any future system keys to interfere with your configuration. You access the values of the configuration from your frontend plugins by calling the function <em>$GLOBALS["TSFE"]->fe_user->getUserTSconf()</em> which will return an array with the valuetree in it. <b>Warning:</b> You should use Website user/group TSconfig in your PHP-scripts ONLY if your resulting content is NOT being cached! So call it from TypoScript USER_INT cObjects or disable caching from your PHP-code by calling <em>$GLOBALS["TSFE"]->set_no_cache();</em> <b>TSconfig from Website usergroups:</b> Notice that the configuration from the field TSconfig in the member groups of the user is accumulated and prepended to the TSconfig of the user before it's parsed. This means for instance that a key defined in the TSconfig of the user (this field) will override the same key defined in the last (bottom) usergroup in the list which will again override the same key defined in the first (top) usergroup in the list. <b>Example:</b> Let's imagine you want to define for a user that his name is printed in the bottom of the webpages when he is logged in. First of all you must write a PHP-function and insert the result from it as a USER_INT cObject in the bottom of the page. But your function needs to know, whether or not this user is configured to have his name printed. So you decide to use a custom TSconfig key, 'user.printUserName': <em>In the TSconfig field of the user or usergroup:</em> user.printUserName = 1 <em>In your PHP-function:</em> $userTSConfig = $GLOBALS["TSFE"]->fe_user->getUserTSconf(); if ($userTSConfig["user."]["printUserName"]) { return $GLOBALS["TSFE"]->fe_user->user["name"]; } TypoScript syntax, without conditions and constants. TypoScript syntax, without conditions and constants. TSconfig for TSFE | http://typo3.org/documentation/document-library/doc_core_tsconfig/TCEMAIN/ pages:TSconfig, fe_groups:TSconfig, be_users:TSconfig, be_groups:TSconfig TSconfig for TSFE | http://typo3.org/documentation/document-library/doc_core_tsconfig/TCEMAIN/ pages:TSconfig, fe_groups:TSconfig, be_users:TSconfig, be_groups:TSconfig A website login user. A website login user. These are users with a username and password who are allowed specific access to otherwise restricted areas on your website. These are users with a username and password who are allowed specific access to otherwise restricted areas on your website. fe_groups be_users fe_groups be_users EXT:context_help/cshimages/feusers_1.png, EXT:context_help/cshimages/feusers_2.png, EXT:context_help/cshimages/feusers_1.png, EXT:context_help/cshimages/feusers_2.png, Part of the form for editing a frontend user. A typical login box (standard) on the website where frontend users can login. Part of the form for editing a frontend user. A typical login box (standard) on the website where frontend users can login.