Category Archives: Joomla

Joomla 1.5 Super Administrator Password Reset

In order to reset the Joomla admin password, you just need to apply the following steps:
Joomla 1.5
- Open the database using phpMyAdmin and go to the table, jos_users . (replace jos_ with your own table prefix if this is different than the default).

How to determine if the user is viewing the Joomla front page

If you're using Joomla! 1.0 then you'll only need to verify the current component with the following command:
PLAIN TEXT
PHP:

if ($option == 'com_frontpage' || $option == '') {

  echo 'This is the front page';

}

This task for Joomla! 1.5 could be easily confirmed by the following command: