potrzebuje kod generatora ktory bedzie generowal takie hasze jak ten skrypt do bazy:
  1. <?php
  2. //1 
  3. ALTER TABLE `realmd`.`account` CHANGE `password` `I` VARCHAR( 40 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'authentification hash'; 
  4. //2 
  5. UPDATE `realmd`.`account` SET `I`=SHA1(CONCAT(UPPER(`username`),':',UPPER(`I`)));
  6. ?>