FreeBSD 6.2 - Invalid Credentials

#1
Same issue as here: http://litespeedtech.com/support/forum/showthread.php?t=756

I have re-installed 3 times with different user id's. Checked permissions and everything I know to check. It installs and I can get to the interface fine but it keeps saying "Invalid Credentials".

I have tried Firefox and IE7 - neither work. Tried clearing cookies etc... No luck. I have 3 servers we would like to purchase for but I am afraid we will have to find an alternative if this issue can't be fixed. Any suggestions?

Thanks
 

mistwang

LiteSpeed Staff
#3
OK, please try a simple patch to the web console code
Open file lsws/admin/html/classes/ws/CLIENT.php, search for
Code:
$salt = substr($pass,0,2);
change it to
Code:
$salt = substr($pass,0,CRYPT_SALT_LENGTH);
Please let me know it works or not.
 
Top