FROM THE BLOG
RSS Feed |
Visit our blog »
-
Reset password of Joomla 1.0.x Administrator
Recently I need to upgrade one Joomla 1.0.x installation to the new installation. If you are also dealing with Joomla 1.0 installation to upgrade or maintain and missed the password for admin user. This can also be useful if you need to add new admin user, without disturbing the old user records. Then here are the simple steps to reset the same. It took me some time to find the correct hard way to do it.
To just reset the password and user name to admin, execute the following query in the phpMyAdmin or MySql command prompt:
UPDATE `jos_users` SET `password` = MD5( ‘<new_password>’ ) WHERE `jos_users`.`username` = “admin” ;
Do remember to change the table prefix and username to whatever you have in your database. This is quiet easy. But if need to add a completely new user to database without admin access then following steps will help you -
1. First create a new user record in users table. You can use the insert method of the phpMyAdmin when jos_users table is open. Input following values:
Name: admin
Username: admin
Email: your-email@email.com
Password: af9083d4b82dbc0745b124db3b3cf15d:M0WuLowO4rtRTddG
User Type: Super AdministratorThen click on Go. This will set the user name and password to “admin”. Note the new Id assigned to the user, you will need that in next step.
2. Now add a record in the ACL for new user, created above. Open the “jos_core_acl_aro” table and insert a new record:
Section Value: users
Value: <Generated id of the new user in previous step>
Order Value: 0
Name: adminClick on Go button to save the data. Note the ID of new inserted record, this will be needed in next step.
3. Map the new ACL record to group. Open “jos_core_acl_groups_aro_map” table and insert a new record:
Group ID: 25
ARO ID: <New generated ID from previous step>Click on Go to save the record. That’s it.
Now you should be able to log-in to administration panel by entering User name: admin and Password: admin.
Posted on December 30, 2011 -
Additional FTP user for a sub folder in Plesk controlled domain
Assuming you already have an existing domain (example.com) with the primary FTP user (foo) with home directory (/var/www/vhosts/example.com), and you wish to create additional ftp users (bar) with the same access privileges as foo to subfolder like this /var/www/vhosts/example.com/sub_folder (make sure the folder already exists) or to main folder (/var/www/vhosts/example.com). To do this follow the instructions below:
- Login to shell with root access and issue this command:
# id foo
it will show something like that:
# uid=10013(foo) gid=2524(psacln) groups=2524(psacln) - remember the uid of “foo” which is 10013, we will need it later.
- create user via the command below and use foo’s uid like this (this will let “bar” access subfolder):
# /usr/sbin/useradd -u 10013 -o -d /var/www/vhosts/example.com/sub_folder -g psacln -s /bin/false bar - create password for bar:
# /etc/passwd bar(enter the new password and confirm it, does not have to be the same as foo’s)
You should now be able to use an FTP client to login with that user’s name and password. This is the only good solution for Plesk.
Posted on December 1, 2011 - Login to shell with root access and issue this command:
CLIENTS THAT LOVE US
- ~ Elance ID – gtownwebdev
"Nirvaat was responsive, fast, knowledgeable, professional and the price was great. I am thrilled to have found"
- ~ Elance ID – robalfano
"Excellent web developer. Has a great understanding of web projects and how to turn that into a working application online. I couldn't be more satisfied with the"
- ~ Elance ID – catchlight
"This was a seemingly small job, but a very important one and one that needed to be done right. A certain level of knoowledge is required for this type of task and nirvaat carried it out beautyifully. Nice work and I'd reccommend this provider to anyone working with"
- ~ Elance ID – ingariza
"This is the first time I used Elance, and I was blessed having Nirvaat as my provider, very professional, pro-active, great communication , on-time delivery, solve every problem I had. I recommend Nirvaat if you want your job on time, with quality and great support. Thanks"
- Read more testimonials »
