<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Diadem Tech Weblogs &#187; Web Hosting</title>
	<atom:link href="http://www.diademblogs.com/category/web-hosting/feed" rel="self" type="application/rss+xml" />
	<link>http://www.diademblogs.com</link>
	<description>Tutorials, tips and howtos for web hosting and open source web development</description>
	<lastBuildDate>Mon, 17 Oct 2011 12:28:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Auto shutdown script for Xen VMs on XenServer</title>
		<link>http://www.diademblogs.com/linux/auto-shutdown-script-for-xen-vms-on-xenserver</link>
		<comments>http://www.diademblogs.com/linux/auto-shutdown-script-for-xen-vms-on-xenserver#comments</comments>
		<pubDate>Mon, 05 Sep 2011 07:07:16 +0000</pubDate>
		<dc:creator>hriday</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Virtualisation]]></category>
		<category><![CDATA[autoshutdown]]></category>
		<category><![CDATA[xen server]]></category>

		<guid isPermaLink="false">http://www.diademblogs.com/?p=1287</guid>
		<description><![CDATA[In case of a scheduled maintenance which requires your Xen VMs to be shutdown on your Xen server when you are not available, the following script should can be put to use: Create a script as allvmshutdown.sh with 755 permissions and add the list of VMs as in the example script: #!/bin/bash xe vm-shutdown vm=VM1 [...]]]></description>
			<content:encoded><![CDATA[<p>In  case of a scheduled maintenance which requires your Xen VMs to be shutdown  on your Xen server when you are not available, the following script should can be put to  use:</p>
<p>Create a script as allvmshutdown.sh with 755 permissions and add the list of VMs as in the example script:</p>
<p><em>#!/bin/bash<br />
xe vm-shutdown vm=VM1<br />
xe vm-shutdown vm=</em><em>VM2</em><br />
<em> xe vm-shutdown vm=</em><em>VM3</em><br />
<em> xe vm-shutdown vm=</em><em>VM4</em><br />
<em> xe vm-shutdown vm=</em><em>VM5</em><br />
<em> xe vm-shutdown vm=</em><em>VM6</em><br />
<em> xe vm-shutdown vm=</em><em>VM7</em><br />
<em> xe vm-shutdown vm=</em><em>VM8</em><br />
<em> xe vm-shutdown vm=</em><em>VM9</em><br />
<em> xe vm-shutdown vm=</em><em>VM10</em></p>
<p><em></em>To get a list of VMs on the server, run the command <strong>#xe vm-list</strong> from the command line, which will list the VMs hosted on your Xen host.</p>
<p>Now you just need to add a cron entry to schedule this job.   For example, to run script at 02:00 am on Sunday:</p>
<p><strong>crontab -e<br />
*   02 *    *    0           /scripts/allvmshutdown.sh</strong></p>
<p>Note: Do ensure that the script is commented or removed from the crontab, after the maintenance has been completed to prevent this script from recurring.</p>
Note: There is a rating embedded within this post, please visit this post to rate it.
]]></content:encoded>
			<wfw:commentRss>http://www.diademblogs.com/linux/auto-shutdown-script-for-xen-vms-on-xenserver/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Benefits of SSL communication</title>
		<link>http://www.diademblogs.com/web-hosting/benefits-of-ssl-communication</link>
		<comments>http://www.diademblogs.com/web-hosting/benefits-of-ssl-communication#comments</comments>
		<pubDate>Thu, 18 Aug 2011 05:36:07 +0000</pubDate>
		<dc:creator>ankur</dc:creator>
				<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[SSL]]></category>

		<guid isPermaLink="false">http://www.diademblogs.com/?p=200</guid>
		<description><![CDATA[SSL is absolutely essential for any website collecting sensitive information online. On your computer, you can see it as the little padlock in the bottom right-hand corner of your browser, when you send or collect information online. If you go to an unsecured website, you transmit information over many computers and networks, practically inviting hackers [...]]]></description>
			<content:encoded><![CDATA[<p>SSL is absolutely essential for any website collecting sensitive information online. On your computer, you can see it as the little padlock in the bottom right-hand corner of your browser, when you send or collect information online.</p>
<p>If you go to an unsecured website, you transmit information over many computers and networks, practically inviting hackers to steal this information &#8211; like passwords and credit card information. Obviously, that&#8217;s not something you want to fall prey to. SSL ensures that this does not happen.</p>
<p><strong>What is SSL?</strong></p>
<p>Secure Sockets Layer or SSL, was introduced in 1994 and has been declared as the standard for securing E-commerce transactions.  SSL is a protocol that encrypts credit card numbers and other sensitive information by scrambling the data so it can not be accessed by eavesdroppers.  More than likely, you have visited a few sites protected with SSL encryption as it is typically indicated by a URL that starts with HTTPS opposed to HTTP and a padlock icon located on the top or bottom of the web page.</p>
<p><strong>SSL ensures safe transactions:</strong></p>
<p><strong>To make sure that no hacker can intercept and misuse information being collected online, SSL does two things:</strong></p>
<ul type="disc">
<li>Encrypts it with a hidden key on the user&#8217;s computer before the      information is sent out;</li>
<li>Sends the key to the receiving computer using another encryption      system called RSA. With this key the information collected online can be      decoded.<br />
A 128-bit public encryption key and a 1024-bit private RSA key      are unbreakable today. They are also part of most web browsers and web      servers.</li>
</ul>
<p><strong>How does SSL  communication work:</strong></p>
<ol type="1"></ol>
<ul>
<li><strong>Provides visible authentication:</strong></li>
</ul>
<ol type="1"></ol>
<p>Before an SSL session is established, the server it connects with needs to have a digital certificate &#8211; a kind of unique digital identification to establish its authenticity. Digital certificates are issued by a Certification Authority, after performing several checks to confirm the identity of the organization to which it is issuing the certificate.</p>
<p>An SSL digital certificate generates a public key for your customers and a private key on your server that works as a kind of official, online stamp for your enterprise. This private key needs to be kept secure, along with a back-up. A user can check to see if a secure session has been established by looking at the web address: in a secure session, the &#8216;http:&#8217; portion of the web address changes to &#8216;https:&#8217;</p>
<ol type="1"></ol>
<ul>
<li><strong>Assures data integrity:</strong></li>
</ul>
<ol type="1"></ol>
<p>This basically ensures that nobody can tamper with the data or information that is already online. Your customers will know that the contents of your website &#8211; or any information they have transmitted to it online &#8211; cannot be tampered with. It assures them that they are doing business in a safe environment.</p>
<ol type="1"></ol>
<ul>
<li><strong>Ensures data privacy:</strong></li>
</ul>
<ol type="1"></ol>
<p>This means that online collection of sensitive information is secure and cannot be intercepted or read by anyone except the computer it was intended for.</p>
<p>Data integrity and data privacy are integral to the functioning and success of any website handling or facilitating online financial transactions &#8211; and that&#8217;s what e-commerce is all about.</p>
<p>Once a secure session has been established, the public key is used by customers, to encrypt the information being sent online. This information is then decoded instantaneously through your server&#8217;s private key.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.diademblogs.com/web-hosting/benefits-of-ssl-communication/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to backup/restore Xen Virtual Machines using Xen Center</title>
		<link>http://www.diademblogs.com/web-hosting/virtualisation/how-to-backuprestore-xen-virtual-machines-using-xen-center</link>
		<comments>http://www.diademblogs.com/web-hosting/virtualisation/how-to-backuprestore-xen-virtual-machines-using-xen-center#comments</comments>
		<pubDate>Thu, 24 Mar 2011 10:04:18 +0000</pubDate>
		<dc:creator>anirban</dc:creator>
				<category><![CDATA[Virtualisation]]></category>
		<category><![CDATA[virtualisation]]></category>
		<category><![CDATA[VM backup]]></category>
		<category><![CDATA[xen backup]]></category>
		<category><![CDATA[xen center]]></category>

		<guid isPermaLink="false">http://www.diademblogs.com/?p=858</guid>
		<description><![CDATA[When you export a VM, a complete copy of the VM (including disk images) is stored as a single file on your local machine, with a .xva file extension. The VM export/import feature can be used in a number of different ways: As a convenient backup facility for your VMs. An exported VM file can [...]]]></description>
			<content:encoded><![CDATA[<p>When you export a VM, a complete copy of the VM (including disk images) is stored as a single file on your local machine, with a <strong>.xva</strong> file extension. The VM export/import<br />
feature can be used in a number of different ways:</p>
<ul>
<li>As a convenient backup facility for your VMs. An exported VM file can be used to recover an entire VM in the event of disaster.</li>
<li>As a way of quickly copying a VM, for example, a special-purpose server configuration that you use many times. You simply configure the VM the way you want it, export it, and then import it to create copies of your original VM.</li>
<li>As a simple method for moving a VM to another server.</li>
</ul>
<blockquote>
<p style="padding-left: 30px;"><em><strong><span style="color: #000000;">Note It may not always be possible to run an imported VM that was exported from another server with a different CPU type. For example, a Windows VM created on a server with an Intel® VT Enabled CPU, then exported, may not run when imported to a server with an AMD-VTM CPU.</span></strong></em></p>
</blockquote>
<p>To export a VM:</p>
<ol>
<li>If the VM you want to export is running, you must shut it down first. See the image below:<a href="http://www.diademblogs.com/wp-content/uploads/2010/04/image1.png"></a><a href="http://www.diademblogs.com/wp-content/uploads/2010/04/image1.png"><img class="aligncenter size-medium wp-image-870" src="http://www.diademblogs.com/wp-content/uploads/2010/04/image1-300x134.png" alt="" width="300" height="134" /></a></li>
<li>In the Resources pane, select the VM, right-click, and then click Export as Backup on the shortcut menu. Alternatively, on the VM menu, click Export as Backup.<a href="http://www.diademblogs.com/wp-content/uploads/2010/04/image2.png"><img class="aligncenter size-medium wp-image-873" src="http://www.diademblogs.com/wp-content/uploads/2010/04/image2-300x167.png" alt="" width="300" height="167" /></a></li>
<li>Enter a name for the export file and specify the folder where you want it to be saved.</li>
<li>To have the export file verified, select the Verify export on completion check box at the bottom of the dialog box. Be aware that verification may take some time.<a href="http://www.diademblogs.com/wp-content/uploads/2010/04/image3.png"><img class="aligncenter size-medium wp-image-874" src="http://www.diademblogs.com/wp-content/uploads/2010/04/image3-300x231.png" alt="" width="300" height="231" /></a></li>
<li>Click Save to begin exporting the file.</li>
<li>The export progress is displayed in the status bar at the bottom of the XenCenter window and on the Logs tab. To cancel an export in progress, click on the Logs tab, find the export in the list of events, and click the Cancel button.</li>
</ol>
<p>Exporting a VM may take some time, depending on its size and the speed and bandwidth of the network connection between the server and XenCenter.</p>
<p>To import an external VM in XenCenter, you use the Import wizard: select a server or pool in the Resources pane, right-click, and then select Import VM on the shortcut menu, and follow the wizard steps.</p>
<ol>
<li>Import source. Enter the location of the exported VM in the Import file name box and ensure that the Exported VM option button is selected. Click Next to continue.<a href="http://www.diademblogs.com/wp-content/uploads/2010/04/image4.png"><img class="aligncenter size-medium wp-image-877" src="http://www.diademblogs.com/wp-content/uploads/2010/04/image4-300x226.png" alt="" width="300" height="226" /></a></li>
<li>Home server. Select a home server for the new VM, then click Next to continue.<a href="http://www.diademblogs.com/wp-content/uploads/2010/04/image5.png"><img class="aligncenter size-medium wp-image-878" src="http://www.diademblogs.com/wp-content/uploads/2010/04/image5-300x225.png" alt="" width="300" height="225" /></a></li>
<li>Storage. Select a storage repository where virtual disks for the new VM will be stored, then click Import to begin the import process.<a href="http://www.diademblogs.com/wp-content/uploads/2010/04/image6.png"><img class="aligncenter size-medium wp-image-879" src="http://www.diademblogs.com/wp-content/uploads/2010/04/image6-300x225.png" alt="" width="300" height="225" /></a></li>
<li>Network. Configure the virtual network interfaces for the imported VM. The default network interfaces are listed on this page; you can add, modify, or delete virtual network interfaces as required. When you are happy with the new VM&#8217;s network configuration, click Next to move to the final wizard page.<a href="http://www.diademblogs.com/wp-content/uploads/2010/04/image7.png"><img class="aligncenter size-medium wp-image-880" src="http://www.diademblogs.com/wp-content/uploads/2010/04/image7-300x224.png" alt="" width="300" height="224" /></a></li>
<li>Finish. To have your new VM start up as soon as the import process has finished and the new VM is provisioned, ensure the Start VM after import check box is selected before  you click Finish.<a href="http://www.diademblogs.com/wp-content/uploads/2010/04/image8.png"><img class="aligncenter size-medium wp-image-881" src="http://www.diademblogs.com/wp-content/uploads/2010/04/image8-300x228.png" alt="" width="300" height="228" /></a></li>
</ol>
<p>Click Finish to complete the import process and close the wizard.</p>
<p>The import progress is displayed in the status bar at the bottom of the XenCenter window and also on the Logs tab. The import process may take some time, depending on the size of the VM and the speed and bandwidth of the network connection between XenCenter and the server where you are installing the new VM.</p>
<p>Once the newly-imported VM is available, it appears in the Resources pane. This is in a nutshell, the simplest way to backup your VMs if you are the administrator of a Xenserver. There are advanced tools available like <a href="http://www.phdvirtual.com">PHDVirtual</a>, which automates the backup and transfer of your VMs to an external storage and though their pricing is a bit steep its well worth the price for the convenience and automation offered.</p>
Note: There is a rating embedded within this post, please visit this post to rate it.
]]></content:encoded>
			<wfw:commentRss>http://www.diademblogs.com/web-hosting/virtualisation/how-to-backuprestore-xen-virtual-machines-using-xen-center/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Checklist of recommended best practices for your office email server</title>
		<link>http://www.diademblogs.com/web-hosting/checklist-of-recommended-best-practices-for-your-office-email-server</link>
		<comments>http://www.diademblogs.com/web-hosting/checklist-of-recommended-best-practices-for-your-office-email-server#comments</comments>
		<pubDate>Wed, 02 Feb 2011 06:54:39 +0000</pubDate>
		<dc:creator>Kollol Biswas</dc:creator>
				<category><![CDATA[Mail Service]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[email best practises]]></category>

		<guid isPermaLink="false">http://www.diademblogs.com/?p=1173</guid>
		<description><![CDATA[Having a latest hardware with leased internet connectivity and a feature rich email client are not the only requirements you need to setup your office email server. Unless you can send mails to your clients, partners and associates across the globe, your mail server is of no practical use. It is the trustworthiness of your [...]]]></description>
			<content:encoded><![CDATA[<p>Having a latest hardware with leased internet connectivity and a feature rich email client are not the only requirements you need to setup your office email server. Unless you can send mails to your clients, partners and associates across the globe, your mail server is of no practical use. It is the trustworthiness of your mail server over the Internet that is standing between you and the recipient.</p>
<p>To be a trusted E-mail sender we need to follow the <strong>best practices</strong> which are highlighted below:</p>
<p><strong> 1.  Messages from IP (No Domain)</strong></p>
<p>Messages should be from a domain and not from any IP Address. e.g. user@domain.com is a valid sender, whereas user@192.168.0.18 is an invalid sender and thus the mail will be rejected.</p>
<p><strong> 2.  Mail Servers on Dynamic/Dial-up Addresses<br />
</strong></p>
<p>The sender server IP Address must not be a dynamic IP. Normally all IP addresses should have a correct reverse DNS, and especially email servers. Most Anti-Spam tools will reject email from places whose reverse DNS looks not to belong to an email server, but more likely to be a home or office dynamic address. If you are running an email server, make sure the Reverse DNS of the IP address reflects your domain, e.g.  &#8216;gateway.yourdomain.com&#8217; or &#8216;mail.yourdomain.com&#8217;.</p>
<p><strong> 3.  Valid FROM domain</strong></p>
<p>The FROM address is important as it is the address that would be used if problems were encountered delivering the message, so if the address can&#8217;t be responded to, the E-mail cannot be accepted from that address either.</p>
<p>e.g. user@yourdomain.com is an accepted sender but the following bad examples will get rejected:</p>
<p>user@localhost<br />
user@192.168.1.200<br />
user@myfakedomain.not</p>
<p><strong>4.  The sender server must identify itself and the identification must be Valid (Valid HELO)</strong><strong> </strong></p>
<p>Most email servers and anti-spam tools will not allow mails to be received unless the above protocol is in place. This practice does not supply enough information to safely identify the server and responsible party, if a problem email is received. And almost every mail server offers this capability. This is a simple rule which just insists that the HELO (or EHLO) is sent with every email connection and it is properly formatted.</p>
<p>In order to ensure that messages are not stopped by this check, make sure the HELO is a FQDN.The HELO string sent should in the style of:</p>
<p>HELO mta1.mycompany.com</p>
<p>The following bad example(s) will get rejected:</p>
<p>HELO<br />
HELO localhost<br />
HELO hostnameonly<br />
HELO 192.168.1.1 (just an IP)</p>
<p>If you are the one who is not receiving emails or are unable to send mail to some of your recipients, you may ask them to check if they really follow these practices.</p>
<p><span style="color: #808080;">At Diadem Technologies, we provide secure and reliable hosted email solutions on shared, dedicated and virtual servers. With over 10,000 hosted mailboxes and a decade of expertise, we have the right solution for your needs. Please <a href="http://www.diadem.co.in/" target="_blank">visit our website</a> or <a href="mailto:info@diadem.co.in">drop us a line</a> for more details.</span></p>
Note: There is a rating embedded within this post, please visit this post to rate it.
]]></content:encoded>
			<wfw:commentRss>http://www.diademblogs.com/web-hosting/checklist-of-recommended-best-practices-for-your-office-email-server/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The new Plesk 10 hosting control panel &#8211; Our first impressions</title>
		<link>http://www.diademblogs.com/plesk-cp/the-new-plesk-10-hosting-control-panel-our-first-impressions</link>
		<comments>http://www.diademblogs.com/plesk-cp/the-new-plesk-10-hosting-control-panel-our-first-impressions#comments</comments>
		<pubDate>Wed, 26 Jan 2011 08:18:49 +0000</pubDate>
		<dc:creator>ankur</dc:creator>
				<category><![CDATA[Plesk Control Panel]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[Plesk 10]]></category>
		<category><![CDATA[plesk 10 linux]]></category>
		<category><![CDATA[plesk 10 windows]]></category>
		<category><![CDATA[Plesk Control Panel 10]]></category>
		<category><![CDATA[web hosting control panel]]></category>

		<guid isPermaLink="false">http://www.diademblogs.com/?p=1099</guid>
		<description><![CDATA[As a loyal customer of Parallels for the past 7 years who has been using the Industry standard hosting control panel, Plesk for our web hosting automation needs, we are excited with the latest release of their control panel &#8211; Panel 10. In the past few weeks we have been evaluating Parallel’s new release of [...]]]></description>
			<content:encoded><![CDATA[<p>As a loyal customer of <a href="http://www.parallels.com">Parallels </a>for the past 7 years who has been using the Industry standard hosting control panel, <strong>Plesk </strong>for our web hosting automation needs, we are excited with the latest release of their control panel &#8211; Panel 10. In the past few weeks we have been evaluating Parallel’s new release of Plesk Panel version 10. It is pretty good with respect to managing user level permissions. From this version onwards, web hosters would need to maintain the recommended user hierarchy while creating users, E.g. Reseller &gt; Client/Customer &gt; Domain/Subscription. Domain Administrator feature has been deprecated and a role based user access level has been created, e.g. certain users can only configure email ids, some users cannot access ftp options and so on.</p>
<p>Another feature which has been added in the Linux version of Plesk is the option to create additional FTP users, which will benefit organisations which require additional ftp users with restricted access to their folders and a primary admin user to manage the individual ftp users from a single console.</p>
<p style="text-align: center;"><a href="http://www.diademblogs.com/wp-content/uploads/2011/01/plesk10a.png"><img class="size-full wp-image-1178 aligncenter" src="http://www.diademblogs.com/wp-content/uploads/2011/01/plesk10a.png" alt="" width="439" height="358" /></a></p>
<p style="text-align: center;"><strong>New client dashboard with an enhanced menu system. The new menu is more user friendly and faster access with respect to earlier Plesk versions.</strong></p>
<p style="text-align: center;"><a href="http://www.diademblogs.com/wp-content/uploads/2011/01/plesk10b.png"><img class="size-full wp-image-1179 aligncenter" src="http://www.diademblogs.com/wp-content/uploads/2011/01/plesk10b.png" alt="" width="541" height="466" /></a></p>
<p style="text-align: center;">
<p style="text-align: center;"><strong>The above screenshot is for the user (role) creation for grant/deny of particular service(s).</strong></p>
<p style="text-align: center;"><a href="http://www.diademblogs.com/wp-content/uploads/2011/01/plesk10c.png"><img class="size-full wp-image-1180 aligncenter" src="http://www.diademblogs.com/wp-content/uploads/2011/01/plesk10c.png" alt="" width="558" height="422" /></a></p>
<p style="text-align: center;"><strong>The most awaited new feature “Additional FTP Account”, which can be control with a Main FTP user.</strong></p>
<p style="text-align: center;"><a href="http://www.diademblogs.com/wp-content/uploads/2011/01/plesk10d.png"><img class="size-full wp-image-1181 aligncenter" src="http://www.diademblogs.com/wp-content/uploads/2011/01/plesk10d.png" alt="" width="558" height="420" /></a></p>
<p style="text-align: center;"><strong>An improved application vault for installing your favourite open source applications like WordPress, Joomla and much more.<br />
</strong></p>
<p style="text-align: center;">
<h3>Some of the key features of Plesk 10 is highlighted below:</h3>
<p><strong>Separate administrator user interface</strong> – Parallels Plesk Panel now comes with a separate administrator interface, optimized for server and business management.</p>
<p><strong>Control panel improvements</strong> – Performance improvements for control panels make pages load much faster.</p>
<p><strong>Upgradable Apache configurations</strong> – Your customized Apache configurations will now remain in force when you upgrade.</p>
<p><strong>Role-based access</strong> – Customer administrators can specify application access based on user roles, enabling them to easily limit access to only those users who need it.</p>
<p><strong>Improved security and performance</strong> – FastCGI lets you isolate sites in a shared hosting environment with greater account density than suPHP.</p>
<p><strong>Improved password security</strong> – Assignment of random default passwords and a password strength indicator protect your servers from hackers and lower support costs attributable to broken passwords.</p>
<p><strong>More flexibility in hosting plans </strong>– New and more flexible hosting concepts support a superior growth path to the future. Key features include multi-domain hosting; ability to assign multiple add-on plans to a subscription; and ability to automatically update subscription settings when plans change.</p>
<p><strong>Intuitive and modern SiteBuilder (free with Parallels Plesk Panel Unlimited licenses) </strong>– The brand-new SiteBuilder, rebuilt from the ground up, enables instant Web site creation. It includes point-and-click and drag-and-drop capabilities, complete with content appropriate for different small business types and personal interests.</p>
<p>Like most web hosters, we are hopeful that the new version would allow our clients to get more out of their hosting plans and we intend to upgrade our clients to the new version in a phased manner over the next few months. Feel free to share your views on the new Plesk 10 panel.</p>
<p>Links for more information on Plesk 10:</p>
<p><a href="http://www.parallels.com/products/plesk">http://www.parallels.com/products/plesk</a><br />
<a href="http://www.parallels.com/products/plesk/new">http://www.parallels.com/products/plesk/new</a><br />
<a href="ftp://download1.sw-soft.com/Plesk/PP10/Doc/">ftp://download1.sw-soft.com/Plesk/PP10/Doc/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.diademblogs.com/plesk-cp/the-new-plesk-10-hosting-control-panel-our-first-impressions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shared Versus Dedicated Web Hosting</title>
		<link>http://www.diademblogs.com/web-hosting/shared-versus-dedicated-web-hosting</link>
		<comments>http://www.diademblogs.com/web-hosting/shared-versus-dedicated-web-hosting#comments</comments>
		<pubDate>Wed, 10 Nov 2010 12:53:54 +0000</pubDate>
		<dc:creator>anirban</dc:creator>
				<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[Dedicated hosting]]></category>
		<category><![CDATA[Shared hosting]]></category>
		<category><![CDATA[Shared vs. Dedicated hosting]]></category>

		<guid isPermaLink="false">http://www.diademblogs.com/?p=500</guid>
		<description><![CDATA[Your Web hosting company can be your site&#8217;s best friend or worst enemy &#8211; depending on the level of service and responsiveness. A successful Web site depends on a good Web host, but it&#8217;s just as important to select the right kind of hosting account. Are you willing to share space on a server with [...]]]></description>
			<content:encoded><![CDATA[<p>Your Web hosting company can be your site&#8217;s best friend or worst enemy &#8211; depending on the level of service and responsiveness. A successful Web site depends on a good Web host, but it&#8217;s just as important to select the right kind of hosting account.</p>
<p>Are you willing to share space on a server with other sites or do you need a server of your own? Know the answer before you make a decision.</p>
<h3 style="text-align: left;"><strong>Shared Hosting Services</strong></h3>
<p><strong>Unique And Shared IP Addresses</strong></p>
<table border="0" cellspacing="0" cellpadding="0" width="0" align="right">
<tbody>
<tr>
<td></td>
</tr>
</tbody>
</table>
<p>Every server connected to the Web has its own IP address. The IP address uniquely identifies that server much like a membership number or driver&#8217;s license number identifies a particular individual. IP addresses are also tied to domain names. This relationship means that Web users can either enter a domain name or an IP address in a Web browser to access the information on a Web server.</p>
<p>The basic difference between Web hosting accounts is whether a site has its own server or shares one with other Web sites. That arrangement determines whether the site has its own IP address or shares one with other sites.</p>
<p><strong>Most small to medium-sized sites use a type of hosting called &#8220;virtual hosting&#8221; where a number of Web sites reside on the same server. Because the sites share a server, they also share an IP address.</strong></p>
<p>Large and/or busy sites usually can&#8217;t share server space because the volume of Web traffic from many sites would quickly overwhelm the server. Those sites either operate their own servers or select a &#8220;dedicated hosting&#8221; option from their Web host. Dedicated hosting means that your site is the only site residing on the server and so you aren&#8217;t sharing an IP address with any other site.</p>
<p><strong>Which type is best for you? Let&#8217;s look at the good and bad points of both.</strong></p>
<p style="text-align: justify;">The best thing about virtual hosting is price: it&#8217;s usually really low. Depending on your site&#8217;s technology, storage, and bandwidth requirements, virtual hosting can cost anywhere from Rs. 999 per year to Rs. 9999 per year depending on your space and feature requirements. If price is your main concern, then virtual hosting may be right for you.f you run a small business and don&#8217;t expect more than 1000 visitors to your website per day, then shared hosting is for you.The only problem with shared hosting is that bandwidth is limited, so if your site becomes very popular you might find yourself running out of bandwidth quickly. But make sure you&#8217;re aware of potential problems:</p>
<p style="text-align: justify;"><strong>Know your neighborhood: </strong>Sharing an IP address with known spam sites or adult sites raises a warning flag with search engines. Spam sites try to trick search engines into giving them an underserved high rank, so some search engines like AltaVista respond by banning the entire IP address from their index.</p>
<p style="text-align: justify;">Check your Web host&#8217;s terms of service page to see what sites are allowed on their servers. Also ask if they offer an individual IP address for different sites on the same server. Some hosts do, but make sure the IP address and domain name resolve correctly before you start promoting the site.</p>
<p><strong>Server response : </strong>Some web hosts provides free hosting service for a limited period from where you can judge the server performance and the features they would provide you for your hosting service.</p>
<h3 style="text-align: left;"><strong>Dedicated Servers</strong></h3>
<p style="text-align: left;">Dedicated hosting is the opposite of shared hosting. Dedicated hosting is about you being in total control of the server and what goes on the server. You decide whether to host 1 site or 10 of your sites.Dedicated hosting allows you to tailor database, email and software applications to your desire &#8211; so it works the way you want it to. This is powerful.Dedicated hosting is ideal for websites with high traffic and large businesses who want complete control over the server so they can fine tune there applications, etc.</p>
<p>Another benefit of dedicated hosting is you can resell the space/bandwidth to people who want to setup their own website.Unlike shared hosting, dedicated hosting will cost considerably more and a monthly payment.If your website is critical to your business, then it is highly recommend that you opt for a dedicated hosting.</p>
<h3 style="text-align: left;"><strong>Benefits of Dedicated Hosting </strong></h3>
<ul>
<li><strong>More control:</strong> You don&#8217;t have to worry about someone&#8217;s bad script slowing or crashing the server. You have only yourself to blame if that happens!</li>
<li><strong>Faster response with high traffic loads.</strong> Because the server only responds to request for information from your site, visitors won&#8217;t have to wait in line to view your Web pages and images.</li>
<li><strong>No bandwidth penalty.</strong> Virtual hosting accounts usually offer a certain amount of bandwidth per month to each site on the server. Sites that go over their allotment get charged extra. But dedicated hosting generally has no such restrictions because it&#8217;s assumed you need a lot of bandwidth if you require your own server.</li>
</ul>
<p>Evaluate your needs and your financial resources before you sign up for hosting and choose your host carefully.</p>
<p style="text-align: left;"><span style="color: #888888;">To know more about various hosting options, pricing  and how it could enhance your web presence  you can <a href="http://www.diadem.co.in">visit our website</a> or write in your queries to <a href="mailto:info@diadem.co.in">info@diadem.co.in</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.diademblogs.com/web-hosting/shared-versus-dedicated-web-hosting/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Email and server security features on Diadem servers</title>
		<link>http://www.diademblogs.com/linux/email-and-server-security-features-with-diadem-servers</link>
		<comments>http://www.diademblogs.com/linux/email-and-server-security-features-with-diadem-servers#comments</comments>
		<pubDate>Thu, 14 Oct 2010 05:44:58 +0000</pubDate>
		<dc:creator>anirban</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[email security]]></category>
		<category><![CDATA[server security]]></category>

		<guid isPermaLink="false">http://www.diademblogs.com/?p=730</guid>
		<description><![CDATA[At Diadem, We have all our servers located in the world's leading datacenter which has a very secure environment with various levels of physical and hardware based protection to keep your data safe from different attacks and vulnerabilities.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><strong>Diagram of Various Tiers of security in datacenter network and at server level </strong></p>
<p style="text-align: center;">
<p style="text-align: center;"><img class="size-full wp-image-750 alignnone" src="http://www.diademblogs.com/wp-content/uploads/2009/09/security.png" alt="security" width="539" height="686" /></p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: justify; padding-left: 30px;">At Diadem Technologies we take extreme precaution and safeguard of our mailing services to ensure continuous and reliable availability of our mailing services to our clients. We have all our servers located in the world&#8217;s leading datacenter which has a very secure environment with various levels of physical and hardware based protection to keep your data safe from different attacks and vulnerabilities. The servers have multi core Xeon processers and have <a title="Raid 10" href="http://www.diadem.co.in/web-hosting/raid-hosting-services.html" target="_blank"><span style="text-decoration: underline;">RAID10</span></a> array of HDDs for complete  data redundancy so that a hard disk crash would not affect the server operations and would not result in any loss of data on the server.</p>
<p style="text-align: justify; padding-left: 30px;">The servers are restricted to be accessed via the Public network so that no unauthorized access to the servers can be made. We use a secure encrypted <span style="text-decoration: underline;"><a href="http://compnetworking.about.com/od/vpn/a/what_is_a_vpn.htm" target="_blank">VPN</a> </span>(virtual private network) connection that connects to the private backend network and hence the servers are only accessible to the legitimate admin users at our end.</p>
<p style="text-align: justify; padding-left: 30px;">For network level protection we have in place perimeter hardware firewalls by CISCO systems to block external threats along with CISCO GUARD DDOS (<a href="http://www.cert.org/homeusers/ddos.html" target="_blank"><span style="text-decoration: underline;">Distributed Denial of service</span></a>) and <a href="http://www.cisco.com/en/US/products/sw/secursw/ps2113/index.html" target="_blank"><span style="text-decoration: underline;">CISCO Tipping point IPS </span></a>(Intrusion prevention system). <span style="text-decoration: underline;"><a href="http://www.cisco.com/en/US/products/ps5888/index.html" target="_blank">CISCO GUARD</a> </span>DDOS protects from requests that make a computer resource unavailable to its intended users and brings down the server to halt. CISCO Tipping point IPS is an advanced Intrusion prevention system that is used extensively in critical networks to monitor network and/or system activities for malicious or unwanted behavior and can react, in real-time, to block or prevent those activities. Network-based IPS, for example, will operate in-line to monitor all network traffic for malicious code or attacks. When an attack is detected, it can drop the offending packets while still allowing all other traffic to pass.</p>
<p style="text-align: justify; padding-left: 30px;">After passing through the various levels of security mentioned above we have more additional security features on the physical server for protecting the server /server applications and the inbound and outbound mails.</p>
<ul>
<li>At the server we have robust software based firewalls that have been customized to add another level of security in the server.</li>
<li>We have SMTP connection tracking system to check all the connections that are being made to the server for sending or receiving mails. At this level various parameters of a mail are checked like if the IP of the sender is blacklisted in any third party Anti SPAM website, if the sender has a valid mail server, if the reverse DNS of the sender email server is valid.</li>
<li>We have enabled <a href="http://projects.puremagic.com/greylisting/" target="_blank"><span style="text-decoration: underline;">greylisting</span></a> on the server to cut down on SPAM mails before they can enter the server. We have advanced content filtering along with anti spam software, antivirus, malware and anti root kit signatures that are updated regularly to block emerging threats immediately.</li>
<li>Once the mail is scanned with the above filters, we implement a new and unique technique to authorize defined servers only to server your emails through the use of SPF records. Any other servers would not be able to send or receive any mail on behalf of your domain. This will cut down spoofing of your emails.</li>
<li>At the last stage we have SMTP authentication enabled that allows mails to be relayed through our servers only for those who are intended to send mails hence reducing the unwanted relaying of mails.</li>
</ul>
<p><strong>The above illustration highlights our commitment to ensure that we provide our clients with the best of breed technologies to ensure spam free, virus free, efficient and continuous availability of our mailing services for their operations.</strong></p>
<p><em>If you are interested in knowing more about our web hosting services and plan details, you can look us up at <a href="http://www.diadem.co.in" target="_self"> www.diadem.co.in</a>. </em></p>
Note: There is a rating embedded within this post, please visit this post to rate it.
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://www.diademblogs.com/linux/email-and-server-security-features-with-diadem-servers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SA-SCSI Storage with RAID – Now Available on our VPS Servers</title>
		<link>http://www.diademblogs.com/news-updates/sa-scsi-hdds-with-raid-now-available-on-our-vps-servers</link>
		<comments>http://www.diademblogs.com/news-updates/sa-scsi-hdds-with-raid-now-available-on-our-vps-servers#comments</comments>
		<pubDate>Mon, 30 Aug 2010 04:27:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News & Updates]]></category>
		<category><![CDATA[Virtualisation]]></category>
		<category><![CDATA[sa scsi]]></category>
		<category><![CDATA[scsi disks]]></category>
		<category><![CDATA[vps hosting]]></category>

		<guid isPermaLink="false">http://www.diademblogs.com/?p=1002</guid>
		<description><![CDATA[In line with our sustained efforts in providing our VPS clients with industry leading hardware and software options, we have upgraded the HDDs on our VPS servers from the current Raptor 10K RPM disks to Seagate Cheetah SA-SCSI 15k RPM drives.]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.diadem.co.in/virtual-dedicated/diadem-vps-benefits"><img class="alignright size-full wp-image-1003" title="SA SCSI drives" src="http://www.diademblogs.com/wp-content/uploads/2010/08/SAS.png" alt="" width="300" height="120" /></a></strong>In line with our sustained efforts in providing our VPS clients with industry leading hardware and software options, we have upgraded the HDDs on our VPS servers from the current Raptor 10K RPM disks to Seagate Cheetah SA-SCSI 15k RPM drives.</p>
<p><strong><a title="SAS vis SATA" href="http://en.wikipedia.org/wiki/Serial_attached_SCSI#SAS_vs_SATA" target="_blank">SA-SCSI</a></strong> (Serial Attached Small Computer System Interface) is the <strong>gold standard</strong> in storage solutions for web servers requiring enterprise class robustness with high availability and fault tolerance features, especially where large databases and mission critical applications are involved. To ensure our clients are able to get the performance of a dedicated hardware at a fraction of its cost, we  have gone ahead and upgraded all our VPS clients to the new hardware without any additional expense and they are all delighted with the improved performance which is being delivered to their applications, as a result of this upgrade.</p>
<p>The SCSI HDDs coupled with the RAID hardware makes it a very stable and robust platform for hosting VMs on the Citrix Xen Server platform. Furthermore, we have also upgraded the Xen Server virtualization platform to its latest version (Xen Server ver 5.6) which is more stable and has several bug fixes implemented in its current verion. We have also added more storage space to our VPS hosting plans alongwith a higher monthly bandwidth allocation for no additional charges.</p>
<p><span style="color: #ff6600;">Bottom line is that if you are looking for a VPS or would like to host your application, website or mail server on a dedicated server platform, you will be hard pressed to find an offering which could better ours! </span></p>
<p>Check out our new <a title="Linux VPS hosting" href="http://www.diadem.co.in/virtual-dedicated/linux-vps-hosting-plans" target="_self">Linux VPS</a> and <a title="Windows VPS Hosting" href="http://www.diadem.co.in/virtual-dedicated/windows-vps-hosting-plans" target="_self">Windows VPS</a> hosting plans and talk to our sales team today!</p>
Note: There is a rating embedded within this post, please visit this post to rate it.
]]></content:encoded>
			<wfw:commentRss>http://www.diademblogs.com/news-updates/sa-scsi-hdds-with-raid-now-available-on-our-vps-servers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Web Hosting Plans for Linux and Windows 2008</title>
		<link>http://www.diademblogs.com/web-hosting/new-web-hosting-plans-for-linux-and-windows-2008</link>
		<comments>http://www.diademblogs.com/web-hosting/new-web-hosting-plans-for-linux-and-windows-2008#comments</comments>
		<pubDate>Fri, 27 Aug 2010 09:15:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News & Updates]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[iis 7 hosting]]></category>
		<category><![CDATA[linux hosting]]></category>
		<category><![CDATA[windows 2008 enterprise hosting]]></category>

		<guid isPermaLink="false">http://www.diademblogs.com/?p=991</guid>
		<description><![CDATA[New shared web hosting plans for both Windows 2008 and Linux platforms and the new hosting plans are now available online. The new hosting plans have enhanced web space, bandwidth and email id allocations amongst other updates.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.diadem.co.in/linux-hosting/compare-linux-web-hosting-plans"><img class="alignleft size-full wp-image-993" title="linux-hosting-plans" src="http://www.diademblogs.com/wp-content/uploads/2010/08/linux-hosting-plans.png" alt="" width="343" height="186" /></a><a href="http://www.diadem.co.in/windows-hosting/compare-windows-2008-enterprise-hosting-plans"><img class="size-full wp-image-994 alignleft" style="margin-top: 10px; margin-bottom: 10px;" title="windows2008-hosting-plans" src="http://www.diademblogs.com/wp-content/uploads/2010/08/windows2008-hosting-plans.png" alt="" width="343" height="195" /></a></p>
<p>In sync with the launch of our new website, we have also revamped our shared web hosting plans for both <strong>W<a title="Windows 2008 Enterprise Hosting" href="http://www.diadem.co.in/windows-hosting/compare-windows-2008-enterprise-hosting-plans" target="_self">indows 2008 Enterprise</a></strong> and <a title="Linux Hosting Plans" href="http://www.diadem.co.in/linux-hosting/compare-linux-web-hosting-plans"><strong>Linux </strong></a>platforms and the new hosting plans are now available online. The new hosting plans have enhanced web space, bandwidth and email id allocations amongst other updates and the key benefits are given below:</p>
<ul>
<li><strong>No limits on mailbox quotas</strong>: You can now define your own mailbox capacity on a per mailbox basis and the total storage limit allocated on your domain would apply for all users on your domain.</li>
<li><strong>No limits on web hosting space</strong>: For Linux hosting plans, we have removed web hosting space limits. The total applicable limit on your hosting plan can be used your website, emails or a combination of both, as per your choice.</li>
<li><strong>Additional mailboxes</strong>: Starting with the SOHO plan onwards, we have increased the no. of mailboxes on every hosting plan by as much as 50% than our previous hosting plans for no additional charges.</li>
<li><strong>Latest OS &amp; Control Panel</strong>: Industry leading Plesk 9.5 control panel is available to all our clients. We also host ASP/ASP.net enabled websites on Windows 2008 Enterprise Edition for enhanced performance and IIS 7 Support.</li>
<li><strong>More server storage space</strong>: We have upped storage limits on our hosting plans by nearly 50% across the board. The additional storage space is matched by the upgraded hardware to make your websites and applications run better and faster.</li>
</ul>
<p>These feature enhancements coupled with our commitment to providing our clients with the most responsive hosting support team in the country clearly makes it a win-win deal for our clients.</p>
<p>Want to learn more? Check out our new <a title="Linux and Windows 2008 Hosting Plans" href="http://www.diadem.co.in/shared-hosting/shared-web-hosting-plans-linux-windows-2008" target="_self">Linux and Windows 2008 enterprise hosting plans</a> and signup online.</p>
Note: There is a rating embedded within this post, please visit this post to rate it.
]]></content:encoded>
			<wfw:commentRss>http://www.diademblogs.com/web-hosting/new-web-hosting-plans-for-linux-and-windows-2008/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is my IP address ?</title>
		<link>http://www.diademblogs.com/web-hosting/what-is-my-ip-address</link>
		<comments>http://www.diademblogs.com/web-hosting/what-is-my-ip-address#comments</comments>
		<pubDate>Tue, 03 Aug 2010 05:36:10 +0000</pubDate>
		<dc:creator>hriday</dc:creator>
				<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://www.diademblogs.com/?p=971</guid>
		<description><![CDATA[It might sometime happen that your ISP assigned Internet IP might be blocked by other servers and you might not be able to access those sites or services from your PC. To know your internet IP address (as opposed to your local LAN IP), www.whatismyipaddress.com, allows you to get your ISP IP without a fuss.]]></description>
			<content:encoded><![CDATA[<p>It might sometime happen that your ISP assigned Internet IP might be blocked by other servers and you might not be able to access those sites or services from your PC. To know your internet IP address (as opposed to your local LAN IP), <strong><a href="http://whatismyipaddress.com/" target="_blank">www.whatismyipaddress.com</a></strong>, allows you to get your ISP IP without a fuss.</p>
Note: There is a rating embedded within this post, please visit this post to rate it.
]]></content:encoded>
			<wfw:commentRss>http://www.diademblogs.com/web-hosting/what-is-my-ip-address/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

