Originally Posted by
BillyBob31
You guys say to update me stuff when i run the newest ascent rev core and ncdb when i see them in svn i compile and run them so what else should i update .... i also think its that kids ascent rev core ... cause i went back to my 4111 and it works great the new 1 by him 4157 is the 1 that gave that error
again for this error:
Sql query failed due to [Unknow column ,encrypted_password' in 'field list'], Query: [SELECT acct, login, password, encryted_password, gm, flags, banned, forceLanguage, muted FROM accounts]
run these queries on your logonDB:
Code:
alter table accounts add column encrypted_password VARCHAR(42) NOT NULL DEFAULT '' AFTER Password;
Code:
update accounts set encrypted_password = SHA(CONCAT(UPPER(login),":",UPPER(password)));
why you still need updates if you have latest stuff? simply becuz NCDB does NOT make the structure... and they do NOT make the logonDB...i told you where you can find the updates... you need to run the updates from all the revs below the one you use.... (the 2 i posted between code tags will fix the error you posted!)
grtz