• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Sitebuilder Lost ADMIN Password :(

R

Rookie

Guest
I know, I'm a dummy :(

I have lost my ADMIN password... How can I get in to the ADMIN area to change it, reset it or retreve it...

Thanks
 
A bit late, but maybe someone else can use this.

If you can still access the SiteBuilder database the following can fix it for you:

Here is a default hash in 'pswd' column for default password ('sitebuilder')
mysql> select * from sb_users;
+----+-------+------------------+------+------------+---------+
| id | login | pswd | role | createtime | sb_type |
+----+-------+------------------+------+------------+---------+
| 1 | root | 35cafb7a7a7ea2ff | 1 | 0 | 1 |
+----+-------+------------------+------+------------+---------+
1 row in set (0.02 sec)

So, you need you run following query:

mysql> update sb_users set pswd='35cafb7a7a7ea2ff' where id=1;

Now login to sitebuilder with user 'root' and password 'sitebuilder' and you're good to go!
 
Hi jinxedworld,
Thanks for the reply.

I did manage to find my password in the end but this will be a great one to keep for future refrence :)

Awsome! Thanks jinxedworld
 
Hi 2 All.
For such users like Rookie :) in SiteBuilder3.0 will be a 'feature' "Forget Password".
 
Hello,

I had tried to recover my password and I am missing something :confused:

Following the FAQ I enter this command:

mysql> mysql -usb_user -psb_user sitebuilder -e

Then:

--> update sb_users set pswd=password('new_password') where id=1

After that, it remains the promt:

-->

I leave this shell using ^Q and nothing happens.

Please let me know what I am doing wrong.

Greetings
 
Originally posted by Netcontac
--> update sb_users set pswd=password('new_password') where id=1
[/B]

Is pswd='35cafb7a7a7ea2ff' where id=1; and not password('new _password').

And you miss a ; at the end of the line
 
Back
Top