January 10th in Miscellaneous by .

Talking about Schengen 90 days out of 180 day rule!!

Many travelors often get confused and many dont even know about this 90/180 rule. Infact passport holders of US, Canada, Taiwan  and many other countries, enjoy visa free travel to EU countries (schengen zone) and as per schengen rules, but most importantly, one should keep in mind that you are …

January 2nd in Miscellaneous by .

Passport seva – My experience with Indian passport reissue

I recently went to passport seva Kendra fixing up my appointment under normal category. I could have booked under tatkal but I heard that officials are very strict under tatkaal and over 80% of tatkal applications are denied and put in normal mode. I felt that there is no point …

December 5th in Money & Finance by .

Taxi ripoffs in Budapest

I was traveler to Budapest for the first time and i am sharing my experience of the ripoff i had in Budapest. I was on Deak Ferenz ter (Vorosmarty market) and there were many taxis parked and hired one of these guys to Heroes square and i was surprised to …

November 19th in Internet by .

Google penalty – Notice of detected unnatural links!

To all webmasters, its time to wake up. Google has been coming on harshly on webmasters and sending them warning notice for sites selling links.

If you are selling paid links or linking to bad neighbourhood, or if somebody reported you, Google might impose a manual penalty and if that happens, …

November 4th in Miscellaneous by .

How to digitally sign and encrypt email free?

If you want to send email to somebody securely and want privacy, you need not screw your head over something which is very difficult creating public and private keys, or install gnupg software.

The easiest way is get a digital email certificate from comodo for your email address and install it. …

November 4th in PHP Scripts by .

PHP – check ssl and redirect to https secure page

If you have a non https form and you if you want to force to use SSL (https), it can be done with 4 lines of code with php. Remember that you need to buy ssl and have https working in your website. The key here is use of $_SERVER['https'] …

October 28th in Wordpress by .

WordPress – How to create a login protected page?

In this tutorial, i will how you how easy it is to login protect a page and then force users to login, to view the page.

1. Create a php file named “login-protect.php” in your current theme folder.

2. Place the following code in this file

<?php /*   Template Name:  Login Protect …

October 28th in Miscellaneous by .

WordPress – How to change admin menu labels?

It is very easy to change admin menu labels for your clients, with a custom admin panel. For example, you might want to change “Posts” to “Articles’

All Posts —> All Articles
Add New —> Add New Article
Posts –> Articles

I have seen the best wordpress plugin to accomplish this task is Admin …

October 28th in Wordpress by .

WordPress – how to add custom field when post is published?

It is dead easy to set a custom field to your post, programmatically when the post is published. For example, whenever your post is published, you might want to add a custom field “submitted” and set its value to “1″, when a post is published.

Here is how you do it. …

October 28th in Wordpress by .

How to redirect when post submitted for review in WordPress

I was working recently on custom project and i wanted wordpress to redirect to a custom payment page, when somebody submits a post for review.  It was such a simple step and quite disappointed that there was no wordpress plugin to do this job. If it was in php, i …