How to change the administrator password in Omeka?

In order to change the password for your Omeka application you need to login to your cPanel -> phpMyAdminand select your database.

Once you open it you will see all the tables inside the database. Select the omeka_users table and find your admin user that should have value super under the role column of the table.

Open the SQL tab and execute the following query:

UPDATE omeka_users SET password=sha1(concat(salt, 'NEW_PASSWORD')) WHERE username='ADMIN_USER';

In the above query replace the ADMIN_USER string with the corresponding one for the admin user and theNEW_PASSWORD string with the password chosen by you.

Your new password will be stored in the database with the SHA1 encryption and you will be able to login to your website with your username and your new password.

More details on how to manage your database through phpMyAdmin can be found in the following SiteGroundtutorial:

http://www.siteground.com/tutorials/phpmyadmin/

You need help with an application? hostlantern is specialized in hosting and supporting more than 200 scripts. Sign up for our web hosting services and let us help you with your application, 24/7!

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

“fail” error when adding dashlets in SugarCRM

If you add chart dashlets to your SugarCRM home page, but they are empty and you get a pop up...

How to set up separate outgoing email accounts in SugarCRM

With the latest version of SugarCRM you can allow your users to set their own Outgoing Email...

How to set up the HiveMail Email Gateway to use the PIPE method with cPanel

Configuring the PIPE Email Gateway method is probably the hardest part of a HiveMail setup, so in...

How to set an e-mail account for the EGroupware application?

In order to send/receive mails through EGroupware, the mail settings for the user should be...

How to fix a broken TinyMCE editor?

If you are experiencing issues modifying articles with your TinyMCE editor through a web browser...