|
S.No.
|
Company
|
Domain Name Registration charges
(.in)
|
Hosting Charges
(annual)
|
|
1.
|
Rs. 199
|
Rs. 504
250MB Space
No Database support
No Email
|
|
|
2.
|
Rs. 199
|
Rs. 1788
30 GB Storage
MySQL Databases
10 Email Addresses
|
|
|
3.
|
Rs. 229
|
Rs. 2148
500 MB Space
2 GB Transfer
5 Email(s)
|
|
|
4.
|
Rs. 255
|
Rs. 1500
Unlimited Webspace
Unlimited Email IDs
500 MB Mysql Space on SSD Drives
|
|
|
5.
|
Rs. 175
|
Rs. 8388
Unlimited Web Space
Unlimited Bandwidth
Unlimited Emails
|
|
|
6.
|
|
Rs. 1188
Disk Space 100GB
Email IDs 100
|
Thursday, July 9, 2015
Comparison of Hosting charges for a small website offered by various prominent companies
Thursday, March 24, 2011
Protect your Gmail account from unauthorized access using 2-Step verification
Google has recently launched – 2-Step Verification - to improve the account security. 2-step verification adds an extra layer of security to your Google Account by requiring you to have access to your phone – as well as your username and password – when you sign in. This means that if someone steals or guesses your password, the potential hijacker still can't sign in to your account because they don't have your phone.
1. When you want to access Google products from your browser, go to that product and enter your username and password.

2. You'll next be prompted to enter your verification code, which you'll get from your phone. You'll only have to do this once every 30 days if you so choose.

Go to your Accounts settings page new window and look for the Using 2-step verification link. If you have the link, click it and start the setup process.

Soon after you turn on 2-step verification, non-browser applications and devices that use your Google Account (such as Gmail on your phone or Outlook), will stop working. You'll then have to sign in using your username and a special password you generate for this application. (Don't worry, you'll only have to do this once for each device or application.)
You can register them from following url:
https://www.google.com/accounts/IssuedAuthSubTokens
It's an extra step, but it's one that greatly improves the security of your Google Account because it requires the powerful combination of both something you know—your username and password—and something that only you should have—your phone.
How does it work
1. When you want to access Google products from your browser, go to that product and enter your username and password.

2. You'll next be prompted to enter your verification code, which you'll get from your phone. You'll only have to do this once every 30 days if you so choose.

How to get started
Go to your Accounts settings page new window and look for the Using 2-step verification link. If you have the link, click it and start the setup process.

Register non-browser Applications
Soon after you turn on 2-step verification, non-browser applications and devices that use your Google Account (such as Gmail on your phone or Outlook), will stop working. You'll then have to sign in using your username and a special password you generate for this application. (Don't worry, you'll only have to do this once for each device or application.)
You can register them from following url:
https://www.google.com/accounts/IssuedAuthSubTokens
It's an extra step, but it's one that greatly improves the security of your Google Account because it requires the powerful combination of both something you know—your username and password—and something that only you should have—your phone.
Tuesday, February 8, 2011
Use Gmail’s filter to manage your inbox
The number of emails in our inbox is increasing day by day. With so many emails on daily basis sometimes the important mails go unnoticed because of less important emails like newsletter you had subscribed to, group email, social networking messages etc. cluttering the inbox. Gmail has provided a built-in filter to manage such message as they come.
Gmail's filters allow you to manage the flow of incoming messages. Using filters, you can automatically label, archive, delete, star, or forward your mail, even keep it out of Spam -- all based on a combination of keywords, sender, recipients, and more.
To create a filter:
1. Click Create a filter (next to the Search the Web button at the top of any Gmail page).

2. Enter your filter criteria in the appropriate field(s).
Gmail's filters allow you to manage the flow of incoming messages. Using filters, you can automatically label, archive, delete, star, or forward your mail, even keep it out of Spam -- all based on a combination of keywords, sender, recipients, and more.
To create a filter:
1. Click Create a filter (next to the Search the Web button at the top of any Gmail page).

2. Enter your filter criteria in the appropriate field(s).

From: Enter sender’s Email address, like organization from which you regularly get newsletter
Subject: Enter the words in subject like [IDSA Group]
You can find a list of advance operators that you can use at:
http://mail.google.com/support/bin/answer.py?answer=7190
3. Click Test Search to see which messages currently in Gmail match your filter terms. You can update your criteria and run another test search, or click Next Step.
4. Select one or more actions from the list. These actions will be applied to messages matching your filter criteria in the order in which the actions are listed -- for example, you could choose to Forward matching messages to a specific email address, then Delete the messages. Note that if you choose to forward messages to another address, you'll need to first verify that you own any new forwarding addresses.
Subject: Enter the words in subject like [IDSA Group]
You can find a list of advance operators that you can use at:
http://mail.google.com/support/bin/answer.py?answer=7190
3. Click Test Search to see which messages currently in Gmail match your filter terms. You can update your criteria and run another test search, or click Next Step.
4. Select one or more actions from the list. These actions will be applied to messages matching your filter criteria in the order in which the actions are listed -- for example, you could choose to Forward matching messages to a specific email address, then Delete the messages. Note that if you choose to forward messages to another address, you'll need to first verify that you own any new forwarding addresses.
I personally like the combination “Skip the Inbox” and “Apply the label”. I do this for all my group emails, by which all the group emails get collected in a Label and my inbox remains clean.
5. If you'd like to apply this filter to messages already in Gmail, select the Also apply filter to x conversations below checkbox.
6. Click Create Filter.
5. If you'd like to apply this filter to messages already in Gmail, select the Also apply filter to x conversations below checkbox.
6. Click Create Filter.
Monday, May 25, 2009
Add Collapsible text/fields in D6 page
Add following code to the body field.
Do not forget to change Input Format to PHP.
Do not forget to change Input Format to PHP.
<?php
drupal_add_js('misc/collapse.js');
?>
<fieldset class="collapsible collapsed">
<legend class="collapse">
<a href="#">New subscriber questions</a>
</legend>
<div class="fieldset-wrapper">
This is the fieldset content....you can have anything here
</div>
</fieldset>
Sunday, May 24, 2009
Print vocabulary terms associated with node
Following code will print vocabulary terms associated with node in block.
$vid is the vocabulary. In my case its value is 2.
$vid is the vocabulary. In my case its value is 2.
<?php
/**
* Prints an unordered list of the terms (as links) that are
* associated to the currently displayed node.
*/
if ( arg(0) == 'node' && is_numeric(arg(1)) ) {
$node = node_load(arg(1));
$vid = 2;
$terms = taxonomy_node_get_terms_by_vocabulary($node, $vid);
if ($terms) {
print '<ul>';
foreach ($terms as $term) {
print '<li>'.l($term->name, 'taxonomy/term/'.$term->tid).'</li>';
}
print '</ul>';
}
}
?>
Friday, April 17, 2009
Button to increase or decrease Font size on website
<script type="text/javascript">
var min=8;
var max=18;
function increaseFontSize() {
var p = document.getElementsByTagName('p');
for(i=0;i<p.length;i++) {
if(p[i].style.fontSize) {
var s = parseInt(p[i].style.fontSize.replace("px",""));
} else {
var s = 12;
}
if(s!=max) {
s += 1;
}
p[i].style.fontSize = s+"px"
}
}
function decreaseFontSize() {
var p = document.getElementsByTagName('p');
for(i=0;i<p.length;i++) {
if(p[i].style.fontSize) {
var s = parseInt(p[i].style.fontSize.replace("px",""));
} else {
var s = 12;
}
if(s!=min) {
s -= 1;
}
p[i].style.fontSize = s+"px"
}
}
</script>
Link for buttons
-
+
This is not my script, source is White Hat
Thursday, April 16, 2009
Easy steps to develop 3 column layout with equal height using CSS
In this I am not going into the details, this is just for the basic solution to the height problem of 3 column layout.
The basic structure goes like this.

Step 1: Find the column whose height will be maximum.
Suppose “main_content” is going to the longest column.
Step 2: Set background color to first column
Set the color which you want to be the color of “left_nav” as background color of “container” div.
Step 3: Set background to third column
Add a extra div as background for the other two divs – “main_content” and “right_nav”.
Make the width of this “extra_div” equal to the sum of width of two divs – “main_content” and “right_nav”.
Height (extra_div) = Height(main_content) + Height(right_nav)
Make the “extra_div” float right or opposite the other two divs.
Make the background color of “extra_div” same as you want for “right_nav”.
#extra_div:background-color = #right_nav:background-color
Add background color to “main_content”.
This gives us three column layout.

There are many articles on this issue. I liked these two:
The basic structure goes like this.

<div id=”container”>
<div id=”left_nav”> </div>
<div id=”main_content”> </div>
<div id=”right_nav”> </div>
</div>
Step 1: Find the column whose height will be maximum.
Suppose “main_content” is going to the longest column.
Step 2: Set background color to first column
Set the color which you want to be the color of “left_nav” as background color of “container” div.
#container {
background-color: #FFFF99;
margin: 0px;
padding: 0px;
width: 100%;
float: left;
}
Step 3: Set background to third column
Add a extra div as background for the other two divs – “main_content” and “right_nav”.
<div id=”container”>
<div id=”left_nav”> </div>
<div id=”extra_div”>
<div id=”main_content”> </div>
<div id=”right_nav”> </div>
</div>
</div>
Make the width of this “extra_div” equal to the sum of width of two divs – “main_content” and “right_nav”.
Height (extra_div) = Height(main_content) + Height(right_nav)
Make the “extra_div” float right or opposite the other two divs.
Make the background color of “extra_div” same as you want for “right_nav”.
#extra_div:background-color = #right_nav:background-color
Add background color to “main_content”.
#extra_div {
background-color: #FFFF99;
margin: 0px;
padding: 0px;
width: 75%;
float: right;
}
This gives us three column layout.

There are many articles on this issue. I liked these two:
Subscribe to:
Posts (Atom)