Knowledge Base Article

How to reset my phpNuke admin password?

Here we will explain the most easiest way to reset your PHP-Nuke administrator's password through the script's MySQL Database.

The most convenient way to manage the database is via the phpMyAdmin tool available in your cPanel.

Once in the phpMyAdmin select the PHP-Nuke database from the drop-down menu at left. The page will refresh and the database's tables will be displayed on it. Open the SQL tab (look at the top navigation bar).

In the text field write the following SQL queries:

UPDATE `nuke_users` SET `user_password` = MD5( 'new_password_here' ) WHERE `nuke_users`.`username` = "admin_username";

UPDATE `nuke_authors` SET `user_password` = MD5( 'new_password_here' ) WHERE `nuke_authors`.`username` = "admin_username";

"new_password_here" - replace this with the new password you wish to use.
"admin_username" - replace this with the username the password should be updated for.

Once you are ready, click on the GO button to submit the query. If everything goes fine without errors, you should be able to login to PHP-Nuke with the new password.



Rating

Please indicate if this article was helpful for you.

rating :  4.5 from 5
views :  3740
votes :  29

Haven't found what you are looking for? Suggest an article HERE.

powered by

Valid XHTML 1.0 Strict Valid CSS!