-
☆ A M B ☆
- 2,475 Posts
Does WebLoginPE have a way to increase minimum password strength? What if I want it to be 8+ characters and REQUIRE upper/lower/number (etc)? By looking in the assets/snippets/webloginpe/lang/en.php file, I can see some other error messages that concern me because they are hard-coded:
$wlpe_lang[1] = ’Your username is too long. It must be less than 20 characters.’;
What if I want the username to be longer? The database table web_users defines the username varchar(100). How can I prevent WebLoginPE from truncating that length? Is there some easy place to over-ride this stuff? I hope so...
Thanks!
-
☆ A M B ☆
- 2,475 Posts
Ok, found where the password stuff is hard-coded...
It’s in webloginpe.class.php around line 524. Hmm... a better architecture might be to abstract this as a function that checks against a password definition file. Where’s the SVN stuff for WebLoginPE? Scotty? Can I make some changes?