PDA

View Full Version : I don't enter with my current data


carmine3838
02-11-2023, 03:48 PM
As per the title I no longer enter the site as an admin when I try to change the password sends me back to the user registration page how can I solve and if there is a way from mysql to recover the current password thanks

socialteenz
02-11-2023, 04:53 PM
UPDATE user
set password = MD5(concat(MD5('NEWPASSWORD'), user.salt))
WHERE userid = 1

carmine3838
02-11-2023, 04:55 PM
excuse me do I have to look in mysql?

socialteenz
02-11-2023, 05:04 PM
Yes, Go to your PhpyMyAdmin, select your database, and select the SQL tab.

Change the user ID to match your admin profile id.