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를 사용하여 명령 또는 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 ( '비밀 번호') 여기서 사용자 이름 = '관리자';
Note: Change Your Password to your password (obviously). 참고 사항 : 귀하의 비밀 번호 비밀 번호를 변경할 수있습니다 (명백하게).

And you are done! 그리고 당신이 완료!