Search GOOGLE,YAHOO,FACEBOOK,WWE etc at one click

Loading

Friday, 27 July 2012

Password Protected ZIP Files using WinRAR

Password Protected ZIP Files using WinRAR :

If you have winrar installed in your pc then you can use its inbuilt password protection feature

STEPS :

1)Right click on the folder/file which has to be Password Protected and select ADD to Archive option.
2)From the pop up window select the Advanced Tab.
3)Now click on the Set Password.
4)Enter and Verify your Password (Use both Alphabets and Numeric words to make a strong Password).
5)Now a new compressed file will be generated at the same location of your original file.

Now whenever somebody will try to open or extract the files in archive it will ask for the password.

WE LOVE TECHNO

Saturday, 7 July 2012

How To Change WordPress Admin Password From SQL Database


How To Change WordPress Admin Password From SQL Database :


Rarely you will face such a situation when you will need to change your wordpress password from SQL database because if you ever forget your password you can use the Forgot Password feature using which your new password will be emailed into your inbox. However if your website gets hacked or due to any reason you lose access to both your email and wordpress than such a sitution can be handled by changing the password from SQL.
If you are a non-programmer even then you can’t go wrong with this process as it is too simple but make sure that you don’t change anything other than mentioned in the steps below.

1)Open Hosting Account.

2)Select PhpMyAdmin from your hosting

3)Now Select your WordPress database from the dropdown menu in Left Sidebar. After you select the appropriate database the page will automatically reload and your tables will be visible.

4)Now look at the top navigation bar and click on the SQL tab.

5)In the Text area type the following code

UPDATE `wp_users` SET `user_pass` = MD5( "new_password_here" ) WHERE `wp_users`.`user_login` = "admin_username";
Here you will replace new_password_here with your new password you want to set and admin_username with new administrator username.

6)Now click on the Go Button and your Username and password will get changed.

Login into your wordpress account with new username and password.This method works on self hosted wordpress.

WE LOVE TECHNO