Monday, October 19, 2009

How to add digg this in blogspot

The Digg This button is for website and blog publishers that want to encourage their audience to submit or digg their content on Digg. To expose content to the Digg community adding a diggthis button is a great feature.
To add digthis button :
1. Go to Blogger Dashboard after you login as the administrator.
2. Go to Layouts.
3. Click 'Edit Html'.
4. Put a tick mark (check the expand widgets templates on) in Expand Widgets Template box at top of Edit Template text box and scroll down to the blog posts widget body to this line :

digg_url = '';
digg_title = '';
digg_window = 'new';

http://digg.com/tools/diggthis.js' type='text/javascript'/>

(If you can't find this line in the html code then press CTRL+F and paste "" . now you should find the coding line to edit)

5. Add the following lines of code into the template before the line of located above:

digg_url = ''; digg_title = ''; digg_window = 'new';

6. Now you need to create CSS style for Digg this button.
Find the following line :

]]>

7. If you want to have digg button on the left side of post, append the following lines of code into the template before the line of ]]> located above:

'#digg { float: left; margin-right: 5px; }
If you want to have digg button on the right side of post, type
float: right; instead of float: left; lind for the above code segment. 8. Save your template and now you should have DIGG this feature in your blogspot blog.


Read more...

Friday, October 16, 2009

How to Enable Clean URLs in Drupal for WAMP server

If you are running WAMP server for your Drupal 6.x installation then, the default configuration for the WAMP server doesn't not support the "Clean URLs". To enable the Clean URLs you need to change a setting in httpd.conf file. Go to wamp\bin\apache\apache2.2.8\conf folder and open the httpd.conf file with wordpad/notepad. Find the line #LoadModulerewrite_module modules/mod_rewrite.so in this file (in notepad press CTRL+F and write mod_rewrite and the line will appear. Omit the starting # (comment symbol) and save the file.

Now restart all the WAMP server services and go to Clean URLs option under Administrator--> Site Configuration in your Drupal installation. Click the Enable radio button and save configuration.

Read more...

Thursday, October 15, 2009

How to remove "Just another WordPress.com weblog" from wordpress blog header


If you have a wordpress blog then look at the header section of your blog and if you have not already changed the default tagline then it says : "Just Another WordPress Weblog".
To change or remove the default tagline of your wordpress blog :

Go to
General Settings of your Wordpress Blog's Dashboard. Then on the right hand side find "Tagline" and change it.

Read more...

Wednesday, October 14, 2009

How to enable Regedit / Show Hidden Files Option / Windows Task Manger back when disabled by virus

If Your PC is infected by FolderHTT or similar virus, it disables the REGEDIT, Show Hidden Files option under Tools option and even Task Manager. You can bring those utilities/ options back manually.

Enabling REGEDIT :
When your 'Registry Editor' is Blocked by the virus and you try to open it by typing "REGEDIT" in the run, then you will get an error message like "Registry Editing Has Been Disabled By Your Administrator". There are 2 ways to enable this again :
-- > Way 1:
1. Go to run then type gpedit.msc and press enter.
2. Now Click on Administrative Templates & click the System and locate the Prevent access to registry editing tools and double click on it.
3. Click disabled in the option button and click apply and then ok .
4. The disabled button will make the policy into default, the computer will automatically configured it and you would be able to access the regisrty.

-- > Way 2:
1. If you are not able to open or use gpedit.msc, then select all the codes in bold font below.
REG add HKCUSoftwareMicrosoftWindowsCurrentVersionPoliciesSystem /v DisableRegistryTools /t REG_DWORD /d 0 /f
2. Copy and paste it the Run window and hit enter. This code will enable your Registry Editor.

Enabling Show Hidden Files/Folder option :
1. Go to Run than type regedit and press OK.
2. Find the key:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersion
ExplorerAdvancedFolderHiddenSHOWALL

3. Look at the “CheckedValue” key. This should be a DWORD key. Check its value If the value is not 1 then make it 1.
4. If “CheckedValue” key is not there then Create a new key called “CheckedValue” as a DWORD (hexadecimal) with a value of 1.

Now open My Computer, on the toolbar go to Tools > Folder Option and click on the View tab.
The “Show hidden files & folders” will work properly.

Enabling Windows TASK MANAGER :
1. Open Group Editor Policy by Clicking on Start--> then click Run --> type gpedit.msc and hit Enter.
2. In the Group Policy Editor, expand in turn: User Configuration--> Administrative Templates --> System -- > Ctrl+Alt+Del Options.
3. On clicking Ctrl+Alt+Del , you will have four option on right hand side. Double click on Remove Task Manager to change its setting:
4. Click on Not Configured and then OK and Task Manager will be available once again.


Read more...

How to secretly insert another file in a .jpg/.jpeg/.gif file.

There are some software available to secretly add any file (text files, Office documents, video clips, pdf, mp3, zipped files, webpage, .exe, .bat, .reg or any other file format) inside a jpg, gpeg or gif file. But Ain't it great to do this without any software. Because there might be situations where you don't have the internet access and the software to do it, but you need to do it manually!!!

To add any file hidden inside a .jpg/.jpeg/.gif image file :

1) Zip the various files into one .rar file you want to add with the image file.
2) Pick any jpg/gif picture of any size and Dimension.
3) Copy the two Files(.rar and image files) in the same directory (same Drive & Folder). For Example: Copy the file in D:>\new folder.
4) Now open the Command prompt window ( by typing cmd in run window or by clicking start-->All Programs--> Accessories--> Command Prompt .
5) In Command Prompt go to the destination folder. In this case D:\ New Folder and press enter (as our rar file and image are saved in D:\New Folder directory)
5) Type the following command now :
copy /b image-name.jpg + collection.rar my-image.jpg
( assuming your image name is image-name and the .rar file name is collection.rar and you want your image to be named my-image.jpg now)

In the same way, You can hide other files like videos, mp3 and other secret documents too.
Just Zip all the Files into Single rar files and Follow the above Steps.


Read more...