Home > CMS Tutorial > Empire CMS > body text

How to retrieve the forgotten password of Empire CMS

下次还敢
Release: 2024-04-16 13:48:15
Original
424 people have browsed it

The methods to retrieve the Empire CMS password are: reset the password file: modify the password in the database. Retrieval through database: Use database management tools to reset the password. Retrieve via email (only if the email has been set): Reset the password via email.

How to retrieve the forgotten password of Empire CMS

Empire CMS Forgot Password Retrieval Method

It is not uncommon to forget the Empire CMS password, as detailed below How to retrieve the password:

1. Reset the password

  1. Find the backend file:Find the Empire CMS backend directory on the server, The default path is /e/e/admin/.
  2. Modify the password file: After entering the directory, find config/inc/config.php file and open.
  3. Change database password: Find the following code and change it to your new password:

    <code class="php">$db['default']['password'] = '新密码';</code>
    Copy after login
  4. Save the changes: Save and close the config.php file.

2. Retrieve through the database

  1. Connect to the database: Use database management tools (such as phpMyAdmin) to connect to the empire CMS database.
  2. Find the user table: Find the user table named e_admin.
  3. Reset password: Find your administrator username line and update the password field with the new encrypted password:

    <code class="sql">UPDATE e_admin SET password = MD5('新密码') WHERE username = '管理员用户名';</code>
    Copy after login

3. Retrieve via email (only for email addresses that have been set)

  1. Visit the login page: Open the Empire CMS login page.
  2. Click "Forgot Password": At the bottom of the login page, click "Forgot Password".
  3. Enter email address: Enter the email address bound to the administrator account.
  4. Reset Password: Click the "Reset Password" button, and the system will send an email containing a reset password link to the email address you filled in.
  5. Click the link to reset your password: Open the email and click the reset password link, enter the new password to reset your password.

Note:

  • After changing the password, you need to log in to the Empire CMS again.
  • If you forget your email, you can only reset your password through the following methods:

    • Contact Empire CMS official customer service.
    • Ask someone familiar with the server to help you reset your password.

The above is the detailed content of How to retrieve the forgotten password of Empire CMS. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template