Mambo / Joomla passwords cannot be recovered as they are set using a one-way hash function (MD5).曼波/ joomla密碼不能收回,因為它們是一套使用一個單向散列函數( MD5的) 。 However they can be reset to new values.然而,他們能夠被復位到新的價值觀。

The user information is stored in the MySQL database (obviously) in the mos_users (for MAMBO) or jos_users (for JOOMLA).用戶信息存儲在MySQL數據庫(顯然) ,在mos_users (曼波)或jos_users ( joomla ) 。 The prefix (mos or jos) can be configured and may be named differently for your system.前綴(馬鞍山或喬斯)可配置和可能被命名為不同的為您的系統。

Using phpMyAdmin 用phpmyadmin
In phpMyAdmin select the database for your Mambo / Joomla system on the left combo-box.在phpmyadmin選擇數據庫為您的曼波/ joomla系統在左邊組合框中。 Then choose the mos_users (or as appropriate) table and select browse.然後選擇mos_users (或酌情)表,並選擇瀏覽。 Click on edit icon (pencil) for the row where the username is admin.按一下編輯圖標(鉛筆) ,為連續情況下的用戶名是政府當局。

In the password row under Function column set the function to MD5.在密碼連續下功能欄設置功能的MD5 。 Set the Value to your chosen password.將該值設置為您選擇的密碼。 Save it (by clicking on Go) and you are done.它儲存(點擊進入)和你做。

Using MySQL commandline or GUI 使用MySQL的命令或貴
With MySQL you can execute the following command in mysql command line or gui:與MySQL ,您可以執行下列命令在MySQL命令行或圖形界面:
UPDATE mos_users SET password = MD5( ‘ Your Password ‘ ) WHERE username = ‘admin’; 更新mos_users設置密碼的MD5 = ( '您的密碼 ' )其中username = '管理' ;
Note: Change Your Password to your password (obviously).注意:更改您的密碼到您的密碼(很明顯) 。

And you are done!和你做!