Posts Tagged ‘reset’

How to reset my PHPList administrator password?

In case you have forgotten your password, go to the administrative login screen and you will see a field named “Forgot Password?: Enter your email:”. There you will have to enter the email address associated with the administrative username and an email with the password will be sent to that address.

In case you do not remember the email either, you can change the password manually from the MySQL database. The easiest way to achieve this is to use the phpMyAdmin tool. Go to your cPanel and click on phpMyAdmin.

Then select the database used by the phpList from the drop-down on the left side, click on the table named “phplist_admin” then click “Browse“. You will see a line with different fields with information regarding the administrative account, click on the pencil icon and you will be able to edit the field which contains the password. This way the administrative password can be reset or changed.

How to reset my MediaWiki admin password?

Modify the database directly. Assuming that $wgPasswordSalt is set to true (the default), you can use the following SQL query for MySQL:

UPDATE user SET user_password = MD5(CONCAT(user_id, ‘-’,
MD5(‘somepass’))) WHERE user_name = ‘someuser’;

Where obviously “somepass” is changed to the password you want to set and “someuser” is changed to the user name as it is listed in the table “user”.

How to reset my phpNuke admin password?

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

Once in the phpMyAdmin select the PHP-Nuke database from the drop-down menu at the 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 for which you would like the password updated.

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.

How to reset my WordPress admin password?

How to reset my Drupal admin password?

To change the administrative password for your current Drupal installation you should:

1. Go to your  phpMyAdmin;
2. Select the database which Drupal use from the drop-down menu on the left.
4. Click on the SQL tab.
5. In the text field on the page type the following text:

update users set pass=md5(‘NEWPASS‘) where uid = 1;

where “NEWPASS” is your new administrative password. Then click on the GO button and if no errors present, the Drupal password should have been changed.

How to reset my phpBB admin password?

To reset your phpBB Admin password, please follow these steps:
A) Identify the MySQL database associated with your phpBB installation
Using an FTP client, open config.php and find the following variables:

$dbhost
$dbname
$dbuser
$dbpasswd

B) Access phpMyAdmin to reset the password.
1. Click the corresponding table that stores username and password information: phpbb_users
2. Click Browse located towards the top of your screen so that a list of users display.
3. Find the account of user that needs to be changed (eg. Admin)
4. Click Edit
5. From the user_password row, click the Function drop-down menu and choose MD5
6. In the box to the right of MD5, replace the existing encrypted password with your new password in plain text
7. Click the GO button located towards the bottom of the page

How to reset my Joomla administrator password?

Please Go To http://www.teachmejoomla.net/joomla-mambo-tutorials-and-howtos/general-questions/how-to-change-or-recover-joomla-administrator-password.html

You will then be provided with the proper sql query to reset your joomla admin password