hi,
i've configured amxx to use our existing database, but since we're storing the user's password with MD5-encryption... is it possible to use this password in amxx too?
my childish guess to change line # 188 of admin_mysql.sma from
Code:
else if (equal(password,g_aPassword[index])) {
to
Code:
else if (equal(md5(password),g_aPassword[index])) {
didn't work
furthermore a config-option to choose whether to use password-encryption (none,md5,mysql) or not would be great
__________________