Home > Article > CMS Tutorial > What is the default password of Empire CMS and how to change it?
The default password of Empire CMS is "phome". Method to change password: Backend change: Log in to the backend and change the password in "Manage Account". Configuration file changes: Replace "phome" with the new password in config.php. Database change: Run a SQL query to update the password to the new password.
Empire CMS default password
Empire CMS default password is phome.
Change method
Change through the background:
Change through the configuration file:
e/config/config in the root directory of the Empire CMS .php
file. Find the following code:
<code class="php">$empireconfig['founderpassword'] = 'phome';</code>
phome
with your new password. Changes via database:
Run the following SQL query:
<code class="sql">UPDATE `empire_admin` SET `password` = '新密码' WHERE `userid` = 1;</code>
New password
is the new password. The above is the detailed content of What is the default password of Empire CMS and how to change it?. For more information, please follow other related articles on the PHP Chinese website!