Quote:
Originally Posted by Khoder
Hi Guys,
I keep getting the error message "This username is registered. Please type your password or chose another username"
Any ideas?
Thanx
|
you might want to change the erasing of Users in the config.lib.php3
Before:
PHP Code:
// Cleaning settings for messages and usernames
define("C_MSG_DEL", '96');
define("C_USR_DEL", '4');
define("C_REG_DEL", '0');
change it to this
PHP Code:
// Cleaning settings for messages and usernames
define("C_MSG_DEL", '96');
define("C_USR_DEL", '1');
define("C_REG_DEL", '0');
this would automatically delete users names after 1 minute.