| Joomla!で、admin(管理者)パスワードをリセットする方法 |
|
|
| テクニカルノート |
|
PhpMyAdminにログイン ↓ SQL実行 UPDATE 任意のユーザー変数_users SET password=MD5('任意の文字列') WHERE usertype = "Super Administrator" http://community.contractwebdevelopment.com/joomla-how-reset-super-admin-passwordHow to Reset Your Lost Joomla Password in Easy StepsBefore we begin, you must have access to your database. If you don't, pass these instructions on to someone that does. It's also a good idea to backup your database before making changes, just in case something goes awry. Finding the Password
Resetting the PasswordIn the password field you'll notice a string of characters. Joomla uses a one-way encoding method, which means you won't be able to retrieve your old password. However, you will be able to reset the password to a new one using mySQL's built in MD5 function: UPDATE example_users SET password=MD5('new password') WHERE usertype = "Super Administrator"; Voila - you just successfully reset your Joomla password TroubleshootingIf for some reason the above method does not work try encoding a password that contains only alphanumeric (a-z, 0-9) characters. This method may not work if your password contains special characters (@!#$).
|
| 最終更新 ( 2009年1月28日(水曜日) 14:59 ) |