Finding files

General questions relating to Joomla! There are other boards for more specific help on Joomla! features and extensions.

Moderator: General Support Moderators

Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.
Locked
adinia
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Wed Jul 09, 2014 9:34 am

Finding files

Post by adinia » Wed Jul 09, 2014 9:42 am

Hello! I'm not sure if I'm in the right place now but here goes. My father used to have a website which he wrote in 2006 using joomla 1.0. I'm not trying to reboot his page but by writing it in html. Though the problem is that I need the text that was written on the page and one.com (where it was hosted) said I needed to log in to the admin pages on joomla to find the articles etc. Though I have no idea how to do this or if I even got the right advice from one.com. Could someone please help me? :-[

User avatar
dhuelsmann
Joomla! Master
Joomla! Master
Posts: 19659
Joined: Sun Oct 02, 2005 12:50 am
Location: Omaha, NE
Contact:

Re: Finding files

Post by dhuelsmann » Wed Jul 09, 2014 12:47 pm

You need to go to yoursite.com/administrator

Hopefully you have the username and password. If not:
If you know the email address that was used, the simplest thing is to do is to use the "lost password" Front-end function if you have made it available.

If not, you will need access to the MySQL database.

You have two choices, either add a new super administrator or change the password stored in the data base. To do this you need to go to phpMyAdmin (or use a similar tool) and manually edit the database. Before doing this back up our complete database.

Run this to create a new user known as admin2.

Code: Select all

INSERT INTO `jos_users` VALUES 
    (62, 'Administrator2', 'admin2', '[email protected]', '21232f297a57a5a743894a0e4a801fc3',  
    'Super Administrator', 0, 1, 25, '2005-09-28 00:00:00', '2005-09-28 00:00:00', '', '');
INSERT INTO `jos_core_acl_aro` VALUES (10,'users','62',0,'Administrator2',0);
INSERT INTO `jos_core_acl_groups_aro_map` VALUES (25,'',10);
The password will be admin. Immediately log in and change this password.

Or

You can change the password in the table for your admin user (assuming you never changed the user name; if you have just change the instructions below to .

The password is stored in the MySQL database jos_users table password field. (change this for your table prefix if different)

Open the table, find your admin username, and then select that row for editing.

The password must be hashed, you cannot simply enter text into this field.

Set the password to a known value

Code: Select all

- password = "this is the MD5 hashed password"
------------------------------------------------------
- admin  = 21232f297a57a5a743894a0e4a801fc3
- secret = 5ebe2294ecd0e0f08eab7690d2a6ee69
- OU812  = 7441de5382cf4fecbaa9a8c538e76783
Paste the hashed password into the field, save the change, and log-in using the new password. Immediately change your password to something more secure!
Regards, Dave
Past Treasurer Open Source Matters, Inc.
Past Global Moderator
http://www.kiwaniswest.org


Locked

Return to “General Questions - 1.0.x”