Having a bit of a problem adding users with usernames over 15-20characters.
I'm running 7.0 b3
I needed to increase the allowed username from 15 to 30.
I edited the register.asp file on these lines:
273: If strMode = "new" Then strUsername = Trim(Mid(Request.Form("name"), 1, 30))
[the "30" was originally "15"]
And also on line 1179:
<input type="text" name="name" size="25" maxlength="30" value="<% = strUsername %>" />
[just upped the size and maxlength]
When adding users over 20 characters I'm getting the following error:
=================================================
Microsoft OLE DB Provider for SQL Server error '80040e21'
Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.
/forum/register.asp, line 744
=================================================
Not sure if there's any other code that needs updating to accomodate the larger username.
My local DB Guru suggested restarting some services in case the app was cached but I don't think refreshing services helped.
Any suggestions?
Also : anyone know of an "add new user" admin mod?
Thanks