Archive

Posts Tagged ‘joomla’

Restore Joomla! 1.5 administrator’s password (for dummies)

March 22nd, 2009 No comments

I have installed a new Joomla! instance but unluckily I forgot my password :-( .I was seeking for the forget my password link but no way !

Solutions :

  1. Generate a new MD5 hashed / encrypted password, to do this you can visit : http://pajhome.org.uk/crypt/md5/ type your clear password and then en crypt it using MD5.
  2. illustration

    [ad#hire_me]

  3. Go to your phpmyadmin or any other MySQL client and execute the query below (don’t forget to replace your_new_encrypted_password by your own encrypted password) or just do it manually through the gui/phpmyadmin interface:
    UPDATE jos_users SET password='your_new_encrypted_password' WHERE name='Administrator';

    PS : verify your table’s prefix, as here I am using jos_ as a table prefix.

  4. You can now log-in using your new password.
Categories: how-to, Tips & Tricks Tags: