- Open the table "Tbl_user" in the database "account"
- Add your account infos into this database (in a new row, to create a new account). Set an unused number into "user_no", your accountname into "user_id" and your password into "user_pwd".
- Now open the table "USER_PROFILE" in the database "account"
- Add the same account infos into this table (same number into "user_no" and same accountname into "user_id"). But in this table, you have to put the MD5-Hash of your password into the field "user_pwd".
It's very simple, you only have to convert your password into the MD5-Hash. You can use tools for that or a website like this:
- Type your password into the textfield next to "Type the string" and click "Calculate MD5"
- On the upper side, you can see the MD5-Hash
Here you can see the MD5-Hash of "test123" (the key in
green)
And this is what you have to set into the field "user_pwd" in the table "USER_PROFILE" in the database "account"