here is the problem AND temp solution (Only by using MemberAPI!!!) from my point of view:
the admin_register.asp something about line 234 checks, if we submitted a username.
BUT: form field username is disabled if memperAPI is TRUE
so the form does not submittes an username
1.) Change
If strUsername = "" Then blnUsernameOK = False |
to
If strUsername = "" AND blnMemberAPI = false Then blnUsernameOK = False |
2.) something around line 250 >> change
to
If blnUsernameOK AND blnMemberAPI = false |
Then
so we do not check if username already taken - can only be temp solution because of an update without memberAPI this is also a "bug"
Edited by efscl - 03 October 2007 at 9:46am