Not sure if this might be a bug but I have problem with storing passwords. Here is what happens.
- Created standart security procedure (using Login App). When creating I selected MD5 for password encryption. When the Apps were generated the first ADMIN account was created and 1-st record created properly.
- When I login to the project and select ADD NEW USER (which calls standard SC-NewUser App) the user is saved but the MD5 is not working.
- When I open the table (inPHPMyAdmin) I see the password is not encrypted (so of course Login with those credentials will never work).
if({pswd} != {confirm_pswd})
{
sc_error_message({lang_error_pswd});
sc_error_exit();
}
{pswd} = md5({pswd});
My table has some extra columns added, but all columns were added after the original ones (SC generated) so when calling for recordset array there should be no problems.
Any ideas what I might be doing wrong ?
BTW. When I remove MD5 hashing everything works fine.
Arthur