PDA

View Full Version : Admin Password


ennio37
10-05-2016, 06:52 AM
Hello, There is a guide to change the Admin password on vBulletin 4

thanks for help

Dave
10-05-2016, 10:29 AM
UPDATE user
set password = MD5(concat(MD5('NEWPASSWORD'), user.salt))
WHERE userid = <USERID>

ennio37
10-06-2016, 06:43 AM
UPDATE user
set password = MD5(concat(MD5('NEWPASSWORD'), user.salt))
WHERE userid = <USERID>



Thanks for the reply Dave, but it is Chinese for me, there is a guide that explains step by step what to do?

cellarius
10-06-2016, 09:10 AM
Hello, There is a guide to change the Admin password on vBulletin 4

thanks for help

Where do you want to change it? Dave gave you the mysql statement to change it directly in the database.

If you don't need to do that, just change your password in the UserCP like every other user. No difference.

Stratis
10-06-2016, 12:12 PM
Where do you want to change it? Dave gave you the mysql statement to change it directly in the database.

If you don't need to do that, just change your password in the UserCP like every other user. No difference.


As cellarius says, but if it does not lets you to change and get the following:
Sorry, this user is protected from being altered in the config.php file by the $config['SpecialUsers']['undeletableusers'] variable.

Than in ftp includes/config.php file find this line:
$config['SpecialUsers']['undeletableusers'] = '1';

and change to

$config['SpecialUsers']['undeletableusers'] = '';


Actually we delete the number 1

ennio37
10-06-2016, 12:27 PM
Where do you want to change it? Dave gave you the mysql statement to change it directly in the database.

If you don't need to do that, just change your password in the UserCP like every other user. No difference.


wen I tray he say me that
Sorry, this user is protected from being altered in the config.php file by the $config['SpecialUsers']['undeletableusers'] variable.

cellarius
10-06-2016, 12:30 PM
As stratis said: Then change that setting. It even tells you where to do that. Change the password, then reapply the protection.

ennio37
10-07-2016, 05:07 AM
As cellarius says, but if it does not lets you to change and get the following:
Sorry, this user is protected from being altered in the config.php file by the $config['SpecialUsers']['undeletableusers'] variable.

Than in ftp includes/config.php file find this line:
$config['SpecialUsers']['undeletableusers'] = '1';

and change to

$config['SpecialUsers']['undeletableusers'] = '';


Actually we delete the number 1


Hi, I have succeeded thanks all