Mambo / Joomla passwords cannot be recovered as they are set using a one-way hash function (MD5).マンボ/ joomlaのパスワードを回復することはできません彼らは1つのセットを使用して向ハッシュ関数( 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.の接頭辞(顧客やヨス)年5月に名前を設定してお使いのシステムが異なるためです。

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.アイコンをクリックして編集(鉛筆)の行のは、ユーザー名は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のコマンドラインまたはGUIを使用して
With MySQL you can execute the following command in mysql command line or gui:をMySQLでは、次のコマンドを実行することができますMySQLのコマンドラインまたはGUI :
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!とこれで完了です!