#1  
Alt 30.03.09, 16:46
Benutzerbild von hydrococcus
Forum Newbie
 
Registriert seit: 30.03.09
Alter: 35
Beiträge: 17
Frage Fe-User mehrere Benutzergruppen zuordnen/Passwort vergessen

Hallo zusammen,

ich benutze 'direct_mail' und 'sr_fe_user_register' sowie 'newloginbox' für die Benutzeranmeldung auf einer meiner Seiten (inklusive DoubleOptIn).

Die Seite ist in drei Themen unterteilt und ausschließlich angemeldeten FE-Usern zugängig. Bisher wurden die FE-User von Hand den einzelnen
Bereichen per Benutzergruppe zugeordnet.

Jetzt soll das ganze ein wenig automatisiert werden. Bei der Registrierung
soll der Benutzer bereits vorher angeben, für welche Bereiche er den Zugang wünscht. Er macht also ein Häckchen wie bspw. bei der Kategoriesierung beim Newsletter und Ihm sollen dann automatisch die entsprechenden Benutzergruppen zugeordnet werden.

Brauch einen Gedankenanstoss, wie sich das realisieren lässt. Vielen Dank schonmal im Voraus.

Geändert von hydrococcus (26.06.09 um 12:10 Uhr)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
  #2  
Alt 30.03.09, 17:29
Benutzerbild von LittleD
Forum Aktivist
 
Registriert seit: 19.02.09
Ort: Aachen
Beiträge: 51

Lässt sich doch über die TypoScript Constants der Extension (sr_fe_user_register) lösen oder nicht?
Also einfach im Bereich TS template constants (nicht setup!) folgendes eintragen:

Typoscript-Code:
1:
2:
3:
plugin.tx_srfeuserregister_pi1.allowUserGroupSelection = 1
plugin.tx_srfeuserregister_pi1.allowUserGroupUpdate = 1
plugin.tx_srfeuserregister_pi1.allowMultipleUserGroupSelection = 1
allowUserGroupSelection
Allow selection of usergroup on registration. If set, the user may select to adhere to user group(s) when registering.
Note: The selectable usergroups must be located in the page identified by the pid constant.
Note: If constants userGroupUponRegistration and userGroupAfterConfirmation are set, the usergroups they specify are not selectable.
Note: Field usergroup must be included in the list specified by constant formFields.


allowUserGroupUpdate
Allow selection of usergroup on editing. If set, the user may edit the list of user groups to which he(she) belongs.
Note: See also constant allowUserGroupSelection.


allowMultipleUserGroupSelection
Allow selection of multiple usergroups. If set, the user may select to adhere to multiple user groups.
Note: See also constants allowUserGroupSelection and allowUserGroupUpdate.
__________________
MfG,
LittleD
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
  #3  
Alt 30.03.09, 17:45
Benutzerbild von hydrococcus
Forum Newbie
 
Registriert seit: 30.03.09
Alter: 35
Beiträge: 17

Super, vielen Dank. Das war's was ich suchte. Das Feld wird jetzt angezeigt, zwar noch ohne Benutzergruppen, aber das find ich noch raus.

PS: Falls einer schneller ist - immer raus damit
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
  #4  
Alt 30.03.09, 17:54
Benutzerbild von LittleD
Forum Aktivist
 
Registriert seit: 19.02.09
Ort: Aachen
Beiträge: 51

User group(s) upon registration
plugin.tx_srfeuserregister_pi1.userGroupUponRegistration = #id1,#id2,#id3
The value of the user group field. Must be a list of integers WITHOUT spaces between the comma separated values! Furthermore these integers MUST belong to actual fe_groups records!
__________________
MfG,
LittleD
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
  #5  
Alt 30.03.09, 17:59
Benutzerbild von hydrococcus
Forum Newbie
 
Registriert seit: 30.03.09
Alter: 35
Beiträge: 17

Da hab ich schon die ID's der Benutzergruppen drin stehen, leider bleibt die SelectBox leer.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
  #6  
Alt 30.03.09, 18:05
Benutzerbild von LittleD
Forum Aktivist
 
Registriert seit: 19.02.09
Ort: Aachen
Beiträge: 51

Hast du vielleicht auch eine ID für userGroupAfterConfirmation angegeben?
Note: If constants userGroupUponRegistration and userGroupAfterConfirmation are set, the usergroups they specify are not selectable.
__________________
MfG,
LittleD
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
  #7  
Alt 30.03.09, 22:05
Benutzerbild von hydrococcus
Forum Newbie
 
Registriert seit: 30.03.09
Alter: 35
Beiträge: 17

Nein, da steht nichts. Ic häng einfach meine Constants hier mal an:
Typoscript-Code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
## $Id: constants.txt 12065 2008-09-17 17:31:39Z franzholz $


plugin.tx_srfeuserregister_pi1 {

    # cat=plugin.tx_srfeuserregister_pi1/file; type=file[html,htm,tmpl,txt]; label= Template File: HTML-template file
file.templateFile = EXT:sr_feuser_register/pi1/tx_srfeuserregister_pi1_css_tmpl.html

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Force file deletion: On record deletion, related images and files will be deleted even if the record is only marked 'deleted'
forceFileDelete = 1

    # cat=plugin.tx_srfeuserregister_pi1/file; type=file[pdf,doc,sxw,txt]; label= Attachment file: File to be attached to the confirmation email.
file.attachmentFile = EXT:sr_feuser_register/pi1/tx_srfeuserregister_pi1_sample.txt

  # cat=plugin.tx_srfeuserregister_pi1/file; type=file[gif]; label= Icon used for deletion of uploaded files.
file.icon_delete = EXT:sr_feuser_register/pi1/icon_delete.gif

    # cat=plugin.tx_srfeuserregister_pi1/file; type=file[css]; label= HTML emails stylesheet: If HTML emails are enabled, this file contains the CSS stylesheet to be incorporated in these mails.
HTMLMailCSS = EXT:sr_feuser_register/pi1/tx_srfeuserregister_htmlmail_xhtml.css

    # cat=plugin.tx_srfeuserregister_pi1//; type=string; label= Administration email: Enter the administration email address here. This email address will be the sender email and also receive administration notifications.
email = typo3@brandperfection.de

    # cat=plugin.tx_srfeuserregister_pi1//; type=string; label= Site name: Enter the name of the registering site here. If set, this will be used as the email address name in the mails sent as well as signature on the mails.
siteName = brandperfection typo

    # cat=plugin.tx_srfeuserregister_pi1//; type=string; label= Registration form fields: List of fields to be included on the front end user registration form.
formFields = username, password, gender, first_name, last_name, status, date_of_birth, email, address, city, zone, static_info_country, zip, telephone, fax, language, title, company, www, module_sys_dmail_html, module_sys_dmail_category, image, comments, disable
  #formFields = username, password, first_name, last_name, email, module_sys_dmail_html, module_sys_dmail_category, image

    # cat=plugin.tx_srfeuserregister_pi1//; type=string; label= Required fields: List of fields that must be filled in on the front end user registration form.
requiredFields = username,password,first_name,last_name,email

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Use email as username: If set, the user email will be used as the username.
useEmailAsUsername = 0

      # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Generate the username: If set, the username is assumed to be generated. Appropriate hook must be configured.
generateUsername = 0

      # cat=plugin.tx_srfeuserregister_pi1/enable; type=int+; label= Generate the password: If non-zero, a random password is generated. The number of characters in the password is given by this parameter.
generatePassword = 0

    # cat=plugin.tx_srfeuserregister_pi1//; type=string; label= Authentication code fields: List of fields that are used in the calculation of authentication codes. Direct Mail uses only uid.
authcodeFields = uid

    # cat=plugin.tx_srfeuserregister_pi1//; type=int+; label= Authentication code length: Length of the authentication codes. Direct Mail uses 8.
codeLength = 12

    # cat=plugin.tx_sremailsubscribe//; type=string; label= Name of the table: The name is used for the records in the frontend.
tableName = fe_users

    # cat=plugin.tx_srfeuserregister_pi1//; type=string; label= Country onchange attribute: Javascript to execute when the selected country is changed in the country selector box.
onChangeCountryAttribute = javascript:window.document.getElementById('tx-srfeuserregister-pi1-fe_users_form').submit();

    # cat=plugin.tx_srfeuserregister_pi1//; type=int+; label= Front end user records PID: If the records edited/created are located in another page than the current, enter the PID of that page here.
pid = 6

    # cat=plugin.tx_srfeuserregister_pi1//; type=string; label= PID title override: If set, this will be used as the name of the System Folder containing the Front end user records when this name is used in online or email messages.
pidTitleOverride =

    # cat=plugin.tx_srfeuserregister_pi1//; type=int+; label= Registration page PID: PID of the page on which the plugin is inserted with the intent of serving as the front end user registration page.
registerPID =

    # cat=plugin.tx_srfeuserregister_pi1//; type=int+; label= Profile editing page PID: PID of the page on which the plugin is inserted with the intent of serving as the front user profile editing page.
editPID =

    # cat=plugin.tx_srfeuserregister_pi1//; type=int+; label= Confirmation page PID: PID of the page on which the plugin is inserted with the intent of serving as the front end user confirmation page (or setfixed page!).
confirmPID =

    # cat=plugin.tx_srfeuserregister_pi1//; type=int+; label= Confirmation of invitation page PID: PID of the page on which the plugin is inserted with the intent of serving as the front end user confirmation page (or setfixed page!) when replying to an invitation.
confirmInvitationPID =

    # cat=plugin.tx_srfeuserregister_pi1//; type=int+; label= Confirmation page Type: Type (or pageNum) of the confirmation page.
confirmType = 0

    # cat=plugin.tx_srfeuserregister_pi1//; type=int+; label= Login page PID: PID of the page on which the New login box plugin is inserted with the intent of serving as the front user login page.
loginPID =

    # cat=plugin.tx_srfeuserregister_pi1//; type=int+; label= Link to after edit PID: PID of the page to be linked to after the user has completed the edition of his/her profile.
linkToPID =

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Add a button to link to after edit PID: If set, an additional button is displayed on the profile editing page to save the changes and link to the page specified by linkToPID.
linkToPIDAddButton = 0

    # cat=plugin.tx_srfeuserregister_pi1//; type=string; label= Default CODE: Default CODE, when not specified on the inserted plugin record. May be CREATE or EDIT or empty.
defaultCODE =

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable preview on registration: If set, the registration dialogue will include a preview of the front end user data before it is saved.
enablePreviewRegister = 1

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable preview on profile update: If set, the profile update dialogue will include a preview of the front end user data before it is saved.
enablePreviewEdit = 1

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable administrative review: If set, the site administrator will be asked to accept the registration before it becomes enabled.
enableAdminReview = 0

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable email confirmation request: If set, an email will be sent to the prospective front end user requesting a confirmation of registration.
enableEmailConfirmation = 1

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable email on approval: If set, an email will be sent to the front end user when he(she) confirms his(her) registration.
enableEmailOnApprove = 1

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable email on refusal: If set, an email will be sent to the prospective front end user when he refuses to confirm his(her) registration.
enableEmailOnRefuse = 1

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable email on registration: If set, an email will be sent to the front end user confirming his(her) registration. This is ignored if email confirmation request is enabled.
enableEmailOnRegister = 1

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable email on profile update: If set, an email will be sent to the front end user to confirm the update of his(her) profile.
enableEmailOnUpdate = 1

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable email on delete: If set, an email will be sent to the front end user to confirm the deletion of his(her) account.
enableEmailOnDelete = 1

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable admin notification on confirmation request: If set, an email will be sent to the site administration when a request for confirmation of registration is sent to a user.
enableAdminNotifyConfirmation = 1

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable admin notification on approval: If set, an email will be sent to the site administration when a user confirms his(her) registration.
enableAdminNotifyOnApprove = 1

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable admin notification on refusal: If set, an email will be sent to the site administration when a user refuses to confirm his(her) registration.
enableAdminNotifyOnRefuse = 1

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable admin notification on registration: If set, an email will be sent to the site administration when a user registers. This is ignored if email confirmation request is enabled.
enableAdminNotifyOnRegister = 1

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable admin notification on update: If set, an email will be sent to the site administration when a user updates his(her) profile.
enableAdminNotifyOnUpdate = 1

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable admin notification on deletion: If set, an email will be sent to the site administration when a user deletes his(her) account.
enableAdminNotifyOnDelete = 1

     # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable admin notification on approval by admin: If set, an email will be sent to the site administration when a registration is accepted by the administration.
enableAdminNotifyOnAdminAccept = 1

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable admin notification on refusal by admin: If set, an email will be sent to the site administration when a registration is refused by the administration.
enableAdminNotifyOnAdminRefuse = 1

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable HTML emails: If set, emails sent to the front end user will be sent in HTML format.
enableHTMLMail = 1

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable HTML email attachment: If set, the specified attachment file will be attached to the confirmation HTML email.
enableEmailAttachment = 0

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable auto-login on confirmation: If set, the user will be automatically logged in upon confirmation of his(her) registration.
enableAutoLoginOnConfirmation = 0

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable auto-login on account creation: If set and if email confirmation is not set, the user will be automatically logged in upon creation of his(her) account.
enableAutoLoginOnCreate = 0

    # cat=plugin.tx_srfeuserregister_pi1//; type=string; label= Redirect_url on login: Url to which the user may be redirected to upon login, when auto login is enabled.
autoLoginRedirect_url =

    # cat=plugin.tx_srfeuserregister_pi1//; type=boolean; label= Direct Mail checked upon registration: The checkboxes for Direct Mail categories will be checked by default if you set this.
dmailCheckedUponRegistration = 0

    # cat=plugin.tx_srfeuserregister_pi1//; type=string; label= User group(s) upon registration: The value of the user group field. Must be a list of integers WITHOUT spaces between the comma separated values! Furthermore these integers MUST belong to actual fe_groups records!
userGroupUponRegistration = 1,2

    # cat=plugin.tx_srfeuserregister_pi1//; type=string; label= User group(s) after confirmation: The value of the user group(s) assigned to the front end user after receipt of his(her) confirmation.
userGroupAfterConfirmation =

      # cat=plugin.tx_srfeuserregister_pi1//; type=string; label= User group(s) after acceptation: The value of the user group(s) assigned to the front end user after acceptation of his(her) registration when the administrative review is enabled.
userGroupAfterAcceptation =

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Allow selection of usergroup on registration: If set, the user may select to adhere to user group(s) when registrating.
allowUserGroupSelection = 1

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Allow selection of usergroup on edition: If set, the user may edit the list of user groups to which he(she) belongs.
allowUserGroupUpdate = 1

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Allow selection of multiple usergroups: If set, the user may select to adhere to multiple user groups.
allowMultipleUserGroupSelection = 1

    # cat=plugin.tx_srfeuserregister_pi1//; type=int+; label= Minimum password length: The minimum number of characters that the password must contain.
passwordAtLeast = 5

    # cat=plugin.tx_srfeuserregister_pi1//; type=int+; label= Maximum password length: The maximum number of characters that the password may contain.
passwordAtMost = 40

    # cat=plugin.tx_srfeuserregister_pi1//; type=int+; label= Minimum username length: The minimum number of characters that the username must contain.
usernameAtLeast = 6

    # cat=plugin.tx_srfeuserregister_pi1//; type=int+; label= Maximum username length: The maximum number of characters that the username may contain.
usernameAtMost = 50

    # cat=plugin.tx_srfeuserregister_pi1//; type=int+; label= Maximum name length: The maximum number of characters that the name of the front end user may contain.
nameAtMost = 80

    # cat=plugin.tx_srfeuserregister_pi1//; type=int+; label= Number of images: Number of images that may be uploaded (should be smaller than 7).
maxImages = 6

    # cat=plugin.tx_srfeuserregister_pi1//; type=options[,formal,informal]; label= Salutation mode to use: Possible value are 'formal' or 'informal'.
salutation =

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label= Enable md5-hashed password: If set, password will be md5-hashed.
useMd5Password = 0

    # cat=plugin.tx_srfeuserregister_pi1//; type=string; label= PID list for Direct Mail categories: The Direct mail categories used by the plugin will be restricted to those found in these PID's.
module_sys_dmail_category_PIDLIST =

    # cat=plugin.tx_srfeuserregister_pi1/enable; type=boolean; label=Use short URL's: If set, the use of short URL's in email messages sent to users is enabled.
useShortUrls = 1

    # cat=plugin.tx_srfeuserregister_pi1//; type=int+; label=Short URL cache lifespan: Number of days that short URL's will be kept in the DB. After this delay, the short URL's will be removed. Confirmation URL's included in email messages older than this number of days will not work.
shortUrlLife = 30

    # cat=plugin.tx_srfeuserregister_pi1//; type=string; label= Date Format (d-m-y)
dateFormat = d-m-Y

    # cat=plugin.tx_srfeuserregister_pi1//; type=string; label= Split char for Date Format (-)
dateSplit = -

}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
  #8  
Alt 30.03.09, 22:21
Benutzerbild von hydrococcus
Forum Newbie
 
Registriert seit: 30.03.09
Alter: 35
Beiträge: 17
Daumen hoch

Hab den Tip vom "LittleD" falsch gedeutet. bei "userGroupUponRegistration" stand noch "1,2". Natürlich darf dort nichts stehen, dann gehts auch...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
  #9  
Alt 31.03.09, 08:12
Benutzerbild von LittleD
Forum Aktivist
 
Registriert seit: 19.02.09
Ort: Aachen
Beiträge: 51

Also Zusammenfassung:

Typoscript-Code:
1:
2:
3:
plugin.tx_srfeuserregister_pi1.allowUserGroupSelection = 1
plugin.tx_srfeuserregister_pi1.allowUserGroupUpdate = 1
plugin.tx_srfeuserregister_pi1.allowMultipleUserGroupSelection = 1
+
userGroupUponRegistration und userGroupAfterConfirmation dürfen keine Angaben / ID's enthalten.
=
FE-User dürfen sich mehreren Benutzergruppen zuordnen.
__________________
MfG,
LittleD
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
  #10  
Alt 26.06.09, 11:41
Benutzerbild von hydrococcus
Forum Newbie
 
Registriert seit: 30.03.09
Alter: 35
Beiträge: 17

Ich mach den Beitrag nochmal auf, da sich im selben Zusammenhang ein weiteres Problem ergeben hat.

Ich benutze also sr_feuser_register und newloginbox mit md5-Verschlüsselung für die Passwörter (kb_md5fepw). Das Priblem versteckt sich hinter der Funktion "Passwort vergessen". Benutzer sind eingetragen und können sich normal einloggen. Wenn man allerdings "Passwort vergessen" klickt und seine E-Mail-Adresse eingibt wird auch eine Mail versendet, mit folgendem Inhalt:
HTML-Code:
Hallo 

Wir konnten keine mit dem angegeben Benutzernamen verknüpfte Email-Adresse finden. Aus diesem Grund können wir Ihnen kein Passwort zusenden. Vielleicht haben Sie Ihre Email-Adresse fehlerhaft eingegeben (Groß-/Kleinschreibug wird unterschieden!) oder Sie haben sich eventuell noch garnicht registriert.
Irgendwie ist es ja logisch, das das Passwort nicht zugesendet werden kann, da es ja md5-verschlüsselt in der DB liegt. Ist es möglich, das ein neues Passwort generiert wird?
Hatte testweise mal in den Constants generatePassword = 1 gesetzt. hat aber keine Auswirkungen. mmh *ratlos*
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
Antwort

Lesezeichen

Themen-Optionen
Ansicht Thema bewerten
Thema bewerten:

Forumregeln
Es ist Ihnen nicht erlaubt, neue Themen zu verfassen.
Es ist Ihnen nicht erlaubt, auf Beiträge zu antworten.
Es ist Ihnen nicht erlaubt, Anhänge hochzuladen.
Es ist Ihnen nicht erlaubt, Ihre Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are an


Ähnliche Themen
Thema Autor Forum Antworten Letzter Beitrag
FE User zeitgesteuert Benutzergruppen zuweisen willis TYPO3 4.x FE-User 0 03.07.08 17:29
FE-User-Registrierung mit mehreren Benutzergruppen mic_jan TYPO3 4.x FE-User 0 18.11.07 12:55
mehrere FE Benutzergruppen --> Fehlermeldung einblenden, wenn keine Rechte patricia TYPO3 4.x Fragen und Probleme 0 20.10.07 17:05
AWStats mehrere Domains für mehrere User humpun Alle anderen Extensions 1 13.10.07 23:31
Mehrere Benutzergruppen = verschiedene Zielseiten?? erusbacher TYPO3 3.x Fragen und Probleme 3 25.04.06 01:11


Alle Zeitangaben in WEZ +1. Es ist jetzt 10:01 Uhr.


Powered by vBulletin® Version 3.8.4 (Deutsch)
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162