PDA

View Full Version : mod_auth_mysql


svoeric
09-10-2008, 07:13 PM
I have the newest version (3.2) of this installed...

is there no way to use this since VB moved their passwords away from clear-text ?

it's setup to use md5, and salt, but I've not been able to get it to work on as of yet (always password missmatch error)
I'm running 3.7.
Thanks

Opserty
09-10-2008, 07:57 PM
Password is generated like so:

$encrypted_password = md5( md5($password) . $salt);
Maybe you have done it differently?

I don't know what mod_auth_mysql or that is or anything but maybe that was where you were going wrong.

svoeric
09-11-2008, 03:17 PM
it don't really give me the option to set exactly how the encryption is setup.
it does let you specify the encryption Type (which I have set to md5) and I have the salt table specified as the salt.

I guess with the information above, I could create an additional column, with the password encrypted like mysql_auth wants it. (if I can figure out HOW mysql_auth wants it)

--------------- Added 1221152529 at 1221152529 ---------------

hummm... after much searching (days worth) I found this---
https://vborg.vbsupport.ru/showthread.php?t=82990