<?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>TetraHost Bangladesh</title>
	<atom:link href="http://blog.tetrahostbd.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.tetrahostbd.com</link>
	<description>The Official Company Blog</description>
	<lastBuildDate>Wed, 01 Feb 2012 18:28:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Joomla! Protection</title>
		<link>http://blog.tetrahostbd.com/2012/02/02/joomla-protection/</link>
		<comments>http://blog.tetrahostbd.com/2012/02/02/joomla-protection/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 18:27:17 +0000</pubDate>
		<dc:creator>aDmin</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[joomla hack]]></category>
		<category><![CDATA[joomla protection]]></category>

		<guid isPermaLink="false">http://blog.tetrahostbd.com/?p=298</guid>
		<description><![CDATA[Joomla! is a great CMS that is used worldwide. Now-a-days many user prefer to design their site with Joomla. It is designed simply but still has lots of feature in it. Being one of the most popular CMS can attract bad people to do bad things as well. Actually the issue is not related with [...]]]></description>
			<content:encoded><![CDATA[<p>Joomla! is a great CMS that is used worldwide. Now-a-days many user prefer to design their site with Joomla. It is designed simply but still has lots of feature in it. Being one of the most popular CMS can attract bad people to do bad things as well. Actually the issue is not related with the Joomla script but with the extra module/plugin that is available on market for Joomla. At the end it is the site owner responsibility to protect his/her site by hardening the security. I will try to give some security tips on this article and by following these steps you will be able to enhance the security of your Joomla site significantly.</p>
<p><strong>Don&#8217;t Forget to Update:</strong> Never forget to update your Joomla to latest version. Older version are more valnureable then the newer version.</p>
<p><strong>Rename the default htaccess.txt file:</strong> Joomla does come with a default htaccess.txt which has some rules in it. The rules in it will block the majority of well-known attacks against your website.In order to rename the file, Login to your cPanel &gt;&gt; Go to File Manager &gt;&gt; find the htaccess.txt file on your home directory and rename it to .htaccess</p>
<p><strong>File Permission of Configuration File:</strong> Make sure to have 600 permission which means read and write permission for the user only on your configuration.php file. You should be able to change the permission from cPanel File Manager.</p>
<p><strong>Install Security Plugins: </strong>On the following two links you will find some extension which will help you to secure your Joomla site many way, please try them.</p>
<blockquote><p><a href="http://extensions.joomla.org/extensions/access-a-security/site-security/site-protection" target="_blank">http://extensions.joomla.org/extensions/access-a-security/site-security/site-protection</a><br />
<a href="http://extensions.joomla.org/extensions/access-a-security/site-security/login-protection" target="_blank"> http://extensions.joomla.org/extensions/access-a-security/site-security/login-protection</a></p></blockquote>
<p><strong>Change Default Database Table Prefix: </strong></p>
<p>Most SQL injections that are written to hack a Joomla! website, try to retrieve data from the jos_users table. This way, they can retrieve the username and password from the super administrator of the website. Changing the default prefix into something random, will prevent (most / all) SQL injections. You can use the <a href="http://extensions.joomla.org/extensions/hosting-a-servers/database-management/2867" target="_blank">EasySQL for Joomla, if you without phpMyAdmin</a> component in order to do this. Download the component to your PC and install it by going to your Admin panel. Now follow the below steps:</p>
<blockquote><p>i. Go to Components &gt;&gt; Easy SQL<br />
ii. Now, pull down the Command Menu and select REPLACE PREFIX.<br />
iii. Here you will see something following: REPLACE PREFIX `jos_` TO `newprefix_`<br />
iv. You now have to remove the word &#8220;newprefix&#8221; and set to something else per your choice.<br />
v. Once you set the new prefix, click on EXEC SQL and you are done!</p></blockquote>
<p>Please make sure you are following the steps properly.</p>
<p><strong>Change Admin Username:</strong> By default your administrative username is admin. The majority of the attackers would expect the username to be admin. Changing it will protect you against many attacks. Here is how you can change the username:</p>
<blockquote><p>i. Login to your Joomla Admin Panel<br />
ii. Go to User Manager from the Home Page<br />
iii. Now, select the Admin User and Click on EDIT<br />
iv. Here you should see the Username field and it will show you the current username, change it to something else and Click on SAVE</p></blockquote>
<p>From now, you will have to use the new Admin Username to login.</p>
<p><strong>Password Protect Administrator Directory:</strong> You can protect your Joomla Administrator folder with Directory Protection feature of cPanel which will add extra layer of security. You can enable the protection by going cPanel &gt;&gt; Password Protect Directories.</p>
<p><strong>Limit Admin Access:</strong> As Joomla administrator folder is one of the most important folder, so we suggest to limit the admin access with IP. Only the allowed IPs will be able to access the admin folder. Here is how to do this:</p>
<p>i. Create a .htaccess file under the Joomla administrator folder<br />
ii. Put the following code in it</p>
<blockquote><p>order deny,allow<br />
allow from 0.0.0.0<br />
deny from all</p></blockquote>
<p>Please change the allow IP with your IP. You can find your IP by accessing the following site: http://www.whatismyip.com</p>
<p><strong>Backup Regularly:</strong> TetraHost do take weekly backup of your content but it is always better to take regular backup of your working database and Joomla contents. Unfortunately if it got hacked then, you can easily restore your site from the latest backup you’ll have for it.</p>
<p><strong>Uninstall Unused Extension:</strong> It is recommended that you uninstall any unused extensions complete from the account. It will reduce the chance for getting attacked.</p>
<p>That&#8217;s it! You are protected now. If anyone have any more tips please share with us by commenting on this article.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.tetrahostbd.com%2F2012%2F02%2F02%2Fjoomla-protection%2F&amp;title=Joomla%21%20Protection" id="wpa2a_2"><img src="http://blog.tetrahostbd.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.tetrahostbd.com/2012/02/02/joomla-protection/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Protection</title>
		<link>http://blog.tetrahostbd.com/2012/01/31/wordpress-protection/</link>
		<comments>http://blog.tetrahostbd.com/2012/01/31/wordpress-protection/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 18:01:10 +0000</pubDate>
		<dc:creator>aDmin</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[wordpress protection]]></category>

		<guid isPermaLink="false">http://blog.tetrahostbd.com/?p=292</guid>
		<description><![CDATA[WordPress is one of the most popular CMS script available now. It has great feature, can be installed and handled easily. We have seen many of our customer using WordPress for their site. Once your site is getting popular, intruders will always try to break your protection. So it is very important that you have [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress is one of the most popular CMS script available now. It has great feature, can be installed and handled easily. We have seen many of our customer using WordPress for their site. Once your site is getting popular, intruders will always try to break your protection. So it is very important that you have sufficient security protection enabled for your WordPress site. On this post, i will try to give some tips which will help you to protect your WordPress blog from getting attacked or hacked.</p>
<p><strong>Always Update:</strong> WordPress does release new update frequently and one should update his/her script as soon as the update is available.</p>
<p><strong>Change Permission:</strong> Make sure to have 600 permission which means read and write permission for the user only on your wp-config.php file. You should be able to change the permission from cPanel File Manager.</p>
<p><strong>Install Security Plugins:</strong> These are some very important security plugins which must be installed on a WordPress site.</p>
<blockquote><p>1. WordPress Firewall Plugin: <a href="http://wordpress.org/extend/plugins/wordpress-firewall/" target="_blank">http://wordpress.org/extend/plugins/wordpress-firewall/</a></p>
<p>2. WordPress Antivirus Plugin: <a href="http://wordpress.org/extend/plugins/antivirus/" target="_blank">http://wordpress.org/extend/plugins/antivirus/</a></p>
<p>3. Secure WordPress Plugin: <a href="http://wordpress.org/extend/plugins/secure-wordpress/" target="_blank">http://wordpress.org/extend/plugins/secure-wordpress/</a></p>
<p>4. Wp-Malwatch Plugin: <a href="http://wordpress.org/extend/plugins/wp-malwatch/" target="_blank">http://wordpress.org/extend/plugins/wp-malwatch/</a></p></blockquote>
<p><strong>Protect the Admin Folder:</strong> You can protect your WordPress Admin folder with Directory Protection which will add extra layer of security. You can enable the protection by going cPanel &gt;&gt; Password Protect Directories.</p>
<p><strong>Limit Admin Access:</strong> As WordPress admin folder is one of the most important folder, so we suggest to limit the admin access with IP. Only the allowed IPs will be able to access the admin folder.</p>
<p>Here is how to do this:</p>
<p>i. Create a .htaccess file under the WordPress admin folder<br />
ii. Put the following code in it</p>
<blockquote><p>order deny,allow<br />
allow from 0.0.0.0<br />
deny from all</p></blockquote>
<p>Please change the allow IP with your IP. You can find your IP by accessing the following site: http://www.whatismyip.com</p>
<p><strong>Backup Regularly:</strong> TetraHost do take weekly backup of your content but it is always better to take regular backup of your working database and wordpress contents. Unfortunately if it got hacked then, you can easily restore your site from the latest backup you&#8217;ll have for it.</p>
<p><strong>Remove WordPress Version:</strong> Hackers are smart enough to crack the wordpress blog even if they came to know the wordpress version. so its always safe to remove your wordpress version. Here you go for it:</p>
<p>Go to Appearance &gt; Editor and choose the Header.php file and delete below code from the source code to hide your WordPress version:</p>
<blockquote><p>&lt;meta name=”generator” content=”WordPress &lt;?php bloginfo(‘version’); ?&gt;” /&gt;</p></blockquote>
<p>That&#8217;s it. Follow the above steps and you are secure in all way with a WordPress site!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.tetrahostbd.com%2F2012%2F01%2F31%2Fwordpress-protection%2F&amp;title=WordPress%20Protection" id="wpa2a_4"><img src="http://blog.tetrahostbd.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.tetrahostbd.com/2012/01/31/wordpress-protection/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Server Configuration</title>
		<link>http://blog.tetrahostbd.com/2012/01/20/new-server-configuration/</link>
		<comments>http://blog.tetrahostbd.com/2012/01/20/new-server-configuration/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 07:31:56 +0000</pubDate>
		<dc:creator>aDmin</dc:creator>
				<category><![CDATA[Network News]]></category>

		<guid isPermaLink="false">http://blog.tetrahostbd.com/?p=288</guid>
		<description><![CDATA[As promised before im here to let you know about our new server configuration. Here it is: ====================== Processor: Intel Xeon-SandyBridge E3-1270-Quadcore [3.4GHz] &#124; More Info Motherboard: X9SCI-LN4F Intel Xeon SingleProc SATA RAM: 8GB &#8211; Hynix DDR3 2x4GB DDR3 x8 Hard Drive: 1 TB HDD &#8211; 2 x 500 GB Western Digital WD Caviar RE4 [...]]]></description>
			<content:encoded><![CDATA[<p>As promised before im here to let you know about our new server configuration.</p>
<p>Here it is:<br />
======================<br />
Processor: Intel Xeon-SandyBridge E3-1270-Quadcore [3.4GHz] | <a href="http://ark.intel.com/products/52276/Intel-Xeon-Processor-E3-1270-(8M-Cache-3_40-GHz)" target="_blank">More Info</a><br />
Motherboard: X9SCI-LN4F Intel Xeon SingleProc SATA<br />
RAM: 8GB &#8211; Hynix DDR3 2x4GB DDR3 x8<br />
Hard Drive: 1 TB HDD &#8211; 2 x 500 GB Western Digital WD Caviar RE4<br />
Uplink Port: 100 MBPS Dedicated Port<br />
OS: CentOS 6.0-64 Bit<br />
Control Panel: Latest cPanel/WHM</p>
<p>Server Main IP: 50.97.95.98<br />
Datacenter Physical Location: Texas, Dallas<br />
Datacenter Name: Dallas 5, Server Room 02<br />
Datacenter: Softlayer, USA.<br />
======================</p>
<p>Here is some picture of our Datacenter from Softlayer&#8217;s Flickr Album:</p>
<p><a href="http://www.flickr.com/photos/softlayer/sets/72157623724776981/" target="_blank">DC Build Week 1</a><br />
<a href="http://www.flickr.com/photos/softlayer/sets/72157623849367812/" target="_blank"> DC Build Week 2 &amp; 3</a><br />
<a href="http://www.flickr.com/photos/softlayer/sets/72157623993101716/"> DC Build Week 5 &amp; 6</a><br />
<a href="http://www.flickr.com/photos/softlayer/sets/72157623993055046/" target="_blank"> DC Build Week 7</a><br />
<a href="http://www.flickr.com/photos/softlayer/sets/72157624609919970/" target="_blank"> Softlayer&#8217;s new HQ and DC Completed</a><br />
<a href="http://www.flickr.com/photos/softlayer/sets/72157626706079436/" target="_blank"> Dallas 05</a></p>
<p>Enjoy the lightning fast service with our new server!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.tetrahostbd.com%2F2012%2F01%2F20%2Fnew-server-configuration%2F&amp;title=New%20Server%20Configuration" id="wpa2a_6"><img src="http://blog.tetrahostbd.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.tetrahostbd.com/2012/01/20/new-server-configuration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Server Upgrade</title>
		<link>http://blog.tetrahostbd.com/2012/01/18/server-upgrade/</link>
		<comments>http://blog.tetrahostbd.com/2012/01/18/server-upgrade/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 17:01:28 +0000</pubDate>
		<dc:creator>aDmin</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Network News]]></category>
		<category><![CDATA[Products & Services]]></category>

		<guid isPermaLink="false">http://blog.tetrahostbd.com/?p=285</guid>
		<description><![CDATA[As you know already, our main server which is &#8220;hera.ihostman.com&#8221; will be moved to a better hardware. We have already ordered the new server from our Datacenter which is Softlayer, USA. The new server physical location is Texas, Dallas. We have chosen Dallas location because the connectivity from Bangladesh is fast then any other location. [...]]]></description>
			<content:encoded><![CDATA[<p>As you know already, our main server which is &#8220;<strong>hera.ihostman.com</strong>&#8221; will be moved to a better hardware. We have already ordered the new server from our Datacenter which is Softlayer, USA. The new server physical location is Texas, Dallas. We have chosen Dallas location because the connectivity from Bangladesh is fast then any other location. We will inform you about the new Server Configuration very soon via our blog post.</p>
<p>We are expecting to start the transfer process from 20th January, 2012 at mid-night 12.00 AM(GMT +6). Please note, <strong>We do not expect any downtime during the transfer process. We will take every steps to keep all our client account up and running smoothly/properly.</strong></p>
<p>To make the process faster, we may take down the following two service for 24-48 hour:</p>
<p>1. cPanel<br />
2. FTP Server</p>
<p>So, while both the service set to down, user will not be able to access cPanel or upload any file to server using FTP. It is also recommended not to update any site while we ran the transfer process to avoid any file missing issue. Please note again, HTTP service or Web Access will stay up during this process.</p>
<p>We are expecting to complete the transfer process in 24hours time. As soon as the transfer process is completed, we will update the DNS Server.</p>
<p>*** Update regarding the transfer process will be informed via our blog post.</p>
<p>We hope to have your full co-operation during the transfer process.</p>
<p>&nbsp;</p>
<p>Regards,<br />
NOC, TetraHost</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.tetrahostbd.com%2F2012%2F01%2F18%2Fserver-upgrade%2F&amp;title=Server%20Upgrade" id="wpa2a_8"><img src="http://blog.tetrahostbd.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.tetrahostbd.com/2012/01/18/server-upgrade/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Happy New Year 2012</title>
		<link>http://blog.tetrahostbd.com/2012/01/01/happy-new-year-2012/</link>
		<comments>http://blog.tetrahostbd.com/2012/01/01/happy-new-year-2012/#comments</comments>
		<pubDate>Sat, 31 Dec 2011 18:08:05 +0000</pubDate>
		<dc:creator>aDmin</dc:creator>
				<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://blog.tetrahostbd.com/?p=283</guid>
		<description><![CDATA[Another year passed! I hope it was a wonderful year for you and the coming 2012 year will be even better. We did had a great time serving our client last year and it feels awesome to see the happy hosting client On new year we will come with new plans and even better service, [...]]]></description>
			<content:encoded><![CDATA[<p>Another year passed! I hope it was a wonderful year for you and the coming 2012 year will be even better. We did had a great time serving our client last year and it feels awesome to see the happy hosting client <img src='http://blog.tetrahostbd.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  On new year we will come with new plans and even better service, that is a promise!</p>
<p>I wanted to share the following google video with you all:</p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/SAIEamakLoY?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>Thanks again for using TetraHost.<br />
<em><strong>Happy New Year 2012</strong></em></p>
<p>Ashraful Insan (Rony)<br />
TetraHost Bangladesh</p>
<p>&nbsp;</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.tetrahostbd.com%2F2012%2F01%2F01%2Fhappy-new-year-2012%2F&amp;title=Happy%20New%20Year%202012" id="wpa2a_10"><img src="http://blog.tetrahostbd.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.tetrahostbd.com/2012/01/01/happy-new-year-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Service Plan</title>
		<link>http://blog.tetrahostbd.com/2011/12/31/new-service-plan/</link>
		<comments>http://blog.tetrahostbd.com/2011/12/31/new-service-plan/#comments</comments>
		<pubDate>Sat, 31 Dec 2011 16:20:25 +0000</pubDate>
		<dc:creator>aDmin</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Main]]></category>
		<category><![CDATA[Press Releases]]></category>
		<category><![CDATA[Products & Services]]></category>

		<guid isPermaLink="false">http://blog.tetrahostbd.com/?p=276</guid>
		<description><![CDATA[We are very pleased to announce that, effective from January 1, 2012, we will be offering all new plans. Its time to have more space on less price. All the offers are valid for both new and old client. Our existing client will be able to enjoy their current plans as long as they want. [...]]]></description>
			<content:encoded><![CDATA[<p>We are very pleased to announce that, effective from January 1, 2012, we will be offering all new plans. Its time to have more space on less price. All the offers are valid for both new and old client. Our existing client will be able to enjoy their current plans as long as they want. If anyone want to switch their account to a newer plan, please throw us with a sales ticket at sales@tetrahostbd.com</p>
<p>### New offers at a Glance:</p>
<p><em><strong>Web Hosting:</strong></em></p>
<p>Package Name: Planet &#8211; 1<br />
Quota: 1000 MB<br />
Bandwidth: 20000 MB<br />
Price: 1200</p>
<p>Package Name: Planet &#8211; 2<br />
Quota: 2000 MB<br />
Bandwidth: 40000 MB<br />
Price: 1800</p>
<p>Package Name: Planet &#8211; 3<br />
Quota: 3000 MB<br />
Bandwidth: 60000 MB<br />
Price: 2400</p>
<p>Package Name: Planet &#8211; 4<br />
Quota: 5000 MB<br />
Bandwidth: 100000 MB<br />
Price: 3000</p>
<p>Details information available at: http://www.tetrahostbd.com/hosting.html</p>
<p><em><strong>Reseller Hosting:</strong></em></p>
<p>Package Name: Earth &#8211; 1<br />
Quota: 15000 MB<br />
Bandwidth: 300000 MB<br />
Price: 7000</p>
<p>Package Name: Earth &#8211; 2<br />
Quota: 20000 MB<br />
Bandwidth: 400000 MB<br />
Price: 9000</p>
<p>Package Name: Earth &#8211; 3<br />
Quota: 30000 MB<br />
Bandwidth: 600000 MB<br />
Price: 12000</p>
<p>Package Name: Earth &#8211; 4<br />
Quota: 50000 MB<br />
Bandwidth: 1000000 MB<br />
Price: 16000</p>
<p>Details information available at: http://www.tetrahostbd.com/reseller.html</p>
<p><em><strong>Radio Hosting:</strong></em></p>
<p>Package Name: Radio &#8211; 128<br />
User Limit: 128<br />
Bitrate Limit: 32<br />
Quota: 1000 MB<br />
Bandwidth: 20000 MB<br />
Price: 7000</p>
<p>Package Name: Radio &#8211; 256<br />
User Limit: 256<br />
Bitrate Limit: 32<br />
Quota: 2000 MB<br />
Bandwidth: 40000 MB<br />
Price: 10000</p>
<p>Package Name: Radio &#8211; 512<br />
User Limit: 512<br />
Bitrate Limit: 32<br />
Quota: 3000 MB<br />
Bandwidth: 60000 MB<br />
Price: 15000</p>
<p>Package Name: Radio &#8211; 999<br />
User Limit: 999<br />
Bitrate Limit: 32<br />
Quota: 5000 MB<br />
Bandwidth: 100000 MB<br />
Price: 25000</p>
<p>Details information available at: http://www.tetrahostbd.com/radio.html</p>
<p>&nbsp;</p>
<p><em>Best Regards,</em></p>
<p><em>Sales Desk, TetraHost.</em></p>
<p>&nbsp;</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.tetrahostbd.com%2F2011%2F12%2F31%2Fnew-service-plan%2F&amp;title=New%20Service%20Plan" id="wpa2a_12"><img src="http://blog.tetrahostbd.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.tetrahostbd.com/2011/12/31/new-service-plan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Price increase for .COM &amp; .NET domains!</title>
		<link>http://blog.tetrahostbd.com/2011/12/26/price-increase-for-com-net-domains/</link>
		<comments>http://blog.tetrahostbd.com/2011/12/26/price-increase-for-com-net-domains/#comments</comments>
		<pubDate>Mon, 26 Dec 2011 08:42:34 +0000</pubDate>
		<dc:creator>aDmin</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Hosting Related News]]></category>
		<category><![CDATA[Main]]></category>
		<category><![CDATA[Press Releases]]></category>
		<category><![CDATA[Products & Services]]></category>

		<guid isPermaLink="false">http://blog.tetrahostbd.com/?p=273</guid>
		<description><![CDATA[Few days ago, we were notified by our mother domain registrar that, VeriSign, Inc. will be increasing the cost to register .com and .net TLD’s effective from January 15, 2012. Here is part of the announcement: DULLES, VA &#8212; (MARKET WIRE) &#8212; 07/14/11 &#8212; VeriSign, Inc. (NASDAQ: VRSN), the trusted provider of Internet infrastructure services [...]]]></description>
			<content:encoded><![CDATA[<p>Few days ago, we were notified by our mother domain registrar that, VeriSign, Inc. will be increasing the cost to register .com and .net TLD’s effective from January 15, 2012. Here is part of the announcement:</p>
<blockquote><p>DULLES, VA &#8212; (MARKET WIRE) &#8212; 07/14/11 &#8212; VeriSign, Inc. (NASDAQ: VRSN), the trusted provider of Internet infrastructure services for the networked world, today announced, effective Jan. 15, 2012, an increase in registry domain name fees for .com and .net, per its agreements with the Internet Corporation for Assigned Names and Numbers (ICANN).</p></blockquote>
<p>This will be the third price increase, by Verisign, in the last few years. Adding to this, recently the USD Dollar Rate has increased significantly as well. A few month ago it was 70tk per USD but currently it is something around 80tk per USD.</p>
<p>Up until now, we have absorbed the cost of these price increases, however, we can no longer continue to absorb these price increases. We were trying to manage it within ourselves but with both Verisign Price increase and USD Dollar Rate increase we are forced to increase our Domain Registration cost for .COM and .NET</p>
<p>We would also like to mention that we are not going to increase the price heavily at all. Our price will remain same on USD rate which is 10$ but in BDT the price would be 800tk(previously it was 700tk). Effective from January 14, 2012, all existing domain registrations maintained by <a title="TetraHost Bangladesh" href="http://www.tetrahostbd.com" target="_blank">TetraHostbd.com</a> will increase to the new rate of BDT 800tk/year per domain for .COM and .NET. The new price will be applicable for both, single and multiple(Domain Reseller) domain registration.</p>
<p>Thank you for your understanding. If you have any questions about this notice, please do not hesitate to reply this blog post.</p>
<p>Regards,</p>
<p>Ashraful Insan (Rony)<br />
Sr. Systems Administrator<br />
TetraHost Bangladesh</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.tetrahostbd.com%2F2011%2F12%2F26%2Fprice-increase-for-com-net-domains%2F&amp;title=Price%20increase%20for%20.COM%20%26%23038%3B%20.NET%20domains%21" id="wpa2a_14"><img src="http://blog.tetrahostbd.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.tetrahostbd.com/2011/12/26/price-increase-for-com-net-domains/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Server Maintenance &#8211; cPanel/Apache and Kernel Update</title>
		<link>http://blog.tetrahostbd.com/2011/09/30/server-maintenance-cpanelapache-and-kernel-update/</link>
		<comments>http://blog.tetrahostbd.com/2011/09/30/server-maintenance-cpanelapache-and-kernel-update/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 04:34:54 +0000</pubDate>
		<dc:creator>aDmin</dc:creator>
				<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://blog.tetrahostbd.com/?p=260</guid>
		<description><![CDATA[We will be updating cPanel/Apache and Kernel of all the servers to latest version. User should not face any issue while update processes is in progress but high load is expected and sites can be slow in the meantime. We will need to reboot the server once the update progress is complete. We are expecting 2min [...]]]></description>
			<content:encoded><![CDATA[<p>We will be updating cPanel/Apache and Kernel of all the servers to latest version. User should not face any issue while update processes is in progress but high load is expected and sites can be slow in the meantime.</p>
<p>We will need to reboot the server once the update progress is complete. We are expecting 2min of downtime for each server. User will not be able to connect to their site on that time.</p>
<p>Here is the server schedule reboot time:</p>
<p>### moon.ihostman.com &#8211; 11:00am (GMT +6)<br />
### shout.ihostman.com &#8211; 11:15am (GMT +6)<br />
### mars.ihostman.com &#8211; 11:30am (GMT +6)<br />
### hera.ihostman.com &#8211; 11:45am (GMT +6)</p>
<p>We will update this thread once the Maintenance is Complete.</p>
<p>==========================<br />
Update # 1<br />
moon.ihostman.com – Completed Successfully and Server is working fine. Any issue found at user end, please contact our support desk.<br />
==========================</p>
<p>==========================<br />
Update # 2<br />
shout.ihostman.com – Completed Successfully and Server is working fine. Any issue found at user end, please contact our support desk.<br />
==========================</p>
<p>==========================<br />
Update # 3<br />
mars.ihostman.com – Completed Successfully and Server is working fine. Any issue found at user end, please contact our support desk.<br />
==========================</p>
<p>==========================<br />
Update # 4<br />
hera.ihostman.com – Completed Successfully and Server is working fine. Any issue found at user end, please contact our support desk.<br />
==========================</p>
<p><strong>Maintenance completed.</strong></p>
<p>Regards,<br />
TetraHost System</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.tetrahostbd.com%2F2011%2F09%2F30%2Fserver-maintenance-cpanelapache-and-kernel-update%2F&amp;title=Server%20Maintenance%20%26%238211%3B%20cPanel%2FApache%20and%20Kernel%20Update" id="wpa2a_16"><img src="http://blog.tetrahostbd.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.tetrahostbd.com/2011/09/30/server-maintenance-cpanelapache-and-kernel-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Atmail is now available at TetraHost!</title>
		<link>http://blog.tetrahostbd.com/2011/07/07/atmail-is-now-available-at-tetrahost/</link>
		<comments>http://blog.tetrahostbd.com/2011/07/07/atmail-is-now-available-at-tetrahost/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 07:14:26 +0000</pubDate>
		<dc:creator>aDmin</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Main]]></category>
		<category><![CDATA[Products & Services]]></category>
		<category><![CDATA[Software Reviews]]></category>
		<category><![CDATA[atmail]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[webmail]]></category>

		<guid isPermaLink="false">http://blog.tetrahostbd.com/?p=246</guid>
		<description><![CDATA[AtMail, the most advance open source webmail client is available now at TetraHost. All Email user will now be able to use AtMail by login to their webmail. AtMail is an open source webmail client for IMAP mail servers. It utilizes Ajax to deliver an intuitive, simple user interface. The interface is very attractive with [...]]]></description>
			<content:encoded><![CDATA[<p><a title="AtMail" href="http://atmail.org/" target="_blank">AtMail</a>, the most advance open source webmail client is available now at TetraHost. All Email user will now be able to use <a title="AtMail" href="http://atmail.org/" target="_blank">AtMail</a> by login to their webmail. <a title="AtMail" href="http://atmail.org/" target="_blank">AtMail</a> is an open source webmail client for IMAP mail servers. It utilizes Ajax to deliver an intuitive, simple user interface. The interface is very attractive with more powerful features which will give users more reason to use Webmail client!</p>
<p><a title="AtMail" href="http://atmail.org/" target="_blank">AtMail</a> at Webmail View:</p>
<p><a href="http://blog.tetrahostbd.com/2011/07/07/atmail-is-now-available-at-tetrahost/atmailinwebmail/" rel="attachment wp-att-247"><img class="aligncenter size-full wp-image-247" title="AtmailInWebmail" src="http://blog.tetrahostbd.com/wp-content/uploads/2011/07/AtmailInWebmail.jpg" alt="" width="700" height="413" /></a></p>
<p>Inside view of <a title="AtMail" href="http://atmail.org/" target="_blank">AtMail</a>:</p>
<p><a href="http://blog.tetrahostbd.com/2011/07/07/atmail-is-now-available-at-tetrahost/composeatmail/" rel="attachment wp-att-248"><img class="aligncenter size-full wp-image-248" title="ComposeAtmail" src="http://blog.tetrahostbd.com/wp-content/uploads/2011/07/ComposeAtmail.jpg" alt="" width="700" height="257" /></a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.tetrahostbd.com%2F2011%2F07%2F07%2Fatmail-is-now-available-at-tetrahost%2F&amp;title=Atmail%20is%20now%20available%20at%20TetraHost%21" id="wpa2a_18"><img src="http://blog.tetrahostbd.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.tetrahostbd.com/2011/07/07/atmail-is-now-available-at-tetrahost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Public DNS</title>
		<link>http://blog.tetrahostbd.com/2011/05/04/google-public-dns/</link>
		<comments>http://blog.tetrahostbd.com/2011/05/04/google-public-dns/#comments</comments>
		<pubDate>Wed, 04 May 2011 11:08:51 +0000</pubDate>
		<dc:creator>aDmin</dc:creator>
				<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://blog.tetrahostbd.com/?p=239</guid>
		<description><![CDATA[Google Public DNS service is a free DNS service provided by google. It is an effort from Google to make internet Faster. Sometime user do face some embarrassing issues with their ISP&#8217;s own DNS server which can be resolved  by using Google&#8217;s Public DNS service. It is very simple to configure Google Public DNS, here are the [...]]]></description>
			<content:encoded><![CDATA[<p>Google Public DNS service is a free DNS service provided by google. It is an effort from Google to make internet Faster. Sometime user do face some embarrassing issues with their ISP&#8217;s own DNS server which can be resolved  by using Google&#8217;s Public DNS service.</p>
<p>It is very simple to configure Google Public DNS, here are the steps:</p>
<blockquote><p><a href="http://code.google.com/speed/public-dns/docs/using.html">http://code.google.com/speed/public-dns/docs/using.html</a></p></blockquote>
<p>For more information visit the following links:</p>
<blockquote><p><a href="http://en.wikipedia.org/wiki/Google_Public_DNS">http://en.wikipedia.org/wiki/Google_Public_DNS</a></p>
<p><a href="http://googleblog.blogspot.com/2009/12/introducing-google-public-dns.html">http://googleblog.blogspot.com/2009/12/introducing-google-public-dns.html</a></p></blockquote>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.tetrahostbd.com%2F2011%2F05%2F04%2Fgoogle-public-dns%2F&amp;title=Google%20Public%20DNS" id="wpa2a_20"><img src="http://blog.tetrahostbd.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.tetrahostbd.com/2011/05/04/google-public-dns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

