<?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>EACOMM Corporation Philippines &#187; web design</title>
	<atom:link href="http://blog.eacomm.com/archives/tag/web-design/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.eacomm.com</link>
	<description>Latest News, Articles, and Events from the Philippines' Premier Interactive Web and Multimedia Developer</description>
	<lastBuildDate>Wed, 28 Jul 2010 11:43:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>DO-CMS Community Edition Version 3.03 Released</title>
		<link>http://blog.eacomm.com/archives/310/do-cms-community-edition-version-3-03-released</link>
		<comments>http://blog.eacomm.com/archives/310/do-cms-community-edition-version-3-03-released#comments</comments>
		<pubDate>Wed, 28 Oct 2009 09:39:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Current Projects]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[foss]]></category>
		<category><![CDATA[lamp]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[software programming]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web programming]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[website development]]></category>
		<category><![CDATA[website programming]]></category>

		<guid isPermaLink="false">http://blog.eacomm.com/?p=310</guid>
		<description><![CDATA[Major update of DO-CMS Community Edition that includes:
1. Clean URLs &#8211; Default support for SEO friendly URL&#8217;s.
2. Upgraded Newsletter Engine &#8211; Now includes reports and statistics on newsletters sent out (how many people read it, what links were clicked, etc&#8230;)
3. Integrated user&#8217;s manual &#8211; the User&#8217;s Manual can now be viewed from the CMS panel.
4. [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_311" class="wp-caption aligncenter" style="width: 210px"><a href="http://www.sourceforge.net/projects/do-cms"><img class="size-full wp-image-311" title="DO-CMS Community Edition" src="http://blog.eacomm.com/wp-content/uploads/2009/10/logocompany.jpg" alt="DO-CMS Communit Edition" width="200" height="78" /></a><p class="wp-caption-text">DO-CMS Community Edition</p></div>
<p>Major update of <a href="http://www.sourceforge.net/projects/do-cms">DO-CMS Community Edition</a> that includes:</p>
<p>1. Clean URLs &#8211; Default support for SEO friendly URL&#8217;s.</p>
<p>2. Upgraded Newsletter Engine &#8211; Now includes reports and statistics on newsletters sent out (how many people read it, what links were clicked, etc&#8230;)</p>
<p>3. Integrated user&#8217;s manual &#8211; the User&#8217;s Manual can now be viewed from the CMS panel.</p>
<p>4. Contact Us Database &#8211; CMS Database of visitors who used the contact us page of the website.</p>
<p>5. Fixed some minor bugs and stability issues.</p>
<p>Download it now at <a href="http://sourceforge.net/projects/do-cms">http://sourceforge.net/projects/do-cms</a></p>
<p>DO-CMS Community Edition is the open source version of DO-CMS, <a href="http://www.eacomm.com">EACOMM Corporation</a>&#8217;s <a href="http://www.do-cms.com">award-winning website content management system</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/310/do-cms-community-edition-version-3-03-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Page Cache Script for PHP</title>
		<link>http://blog.eacomm.com/archives/254/simple-page-cache-script-for-php</link>
		<comments>http://blog.eacomm.com/archives/254/simple-page-cache-script-for-php#comments</comments>
		<pubDate>Tue, 09 Jun 2009 05:41:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[cache tutorial]]></category>
		<category><![CDATA[php cache]]></category>
		<category><![CDATA[php tutorial]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web cache]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web programming]]></category>

		<guid isPermaLink="false">http://blog.eacomm.com/?p=254</guid>
		<description><![CDATA[For dynamic websites, database queries take up a significant amount of the CPU resources of your servers. For medium to high traffic websites  in shared or virtual hosting services, this could mean significant loss of traffic due to too much database queries or over use of shared CPU time. As such, it is quite useful [...]]]></description>
			<content:encoded><![CDATA[<p>For dynamic websites, database queries take up a significant amount of the CPU resources of your servers. For medium to high traffic websites  in shared or virtual hosting services, this could mean significant loss of traffic due to too much database queries or over use of shared CPU time. As such, it is quite useful to have some sort of cache system for your dynamic pages, particularly those with content that don&#8217;t change too much or too often anyway.</p>
<p>Below is a very simple and generic cache script for PHP web pages which you can copy-paste and use almost instantly in your website. What is does is store an instance of the dynamically generated web page as an HTML file and it then counter checks with a predefined time period that you set whether to display the cached instance or to dynamically generate the page again. The longer the time period between dynamic generation, the greater the savings in terms of CPU usage and database queries.</p>
<p>1. First create a folder in your hosting account where you&#8217;ll be housing the cached data. In this example the cache folder is located at http://www.yourdomain.com/cache</p>
<p>2. Next, copy-paste the script below at the start of the PHP page you want cached. We are assuming here that the dynamically generated page is utilizing the GET variable &#8220;id&#8221;, such as: http://www.yourdomain.com/index.php?id=XXXX:</p>
<p>&lt;?php</p>
<p>ob_start(); //turn on output buffering for PHP</p>
<p>//check if variable id is present and is an integer, if not, redirect to homepage<br />
if ($_GET['id']==&#8221;" or !is_numeric($_GET['id']))<br />
{<br />
header(&#8221;location:index.php&#8221;);<br />
}<br />
$id=$_GET['id'];</p>
<p>//absolute path to cache file. For simplicity the cached version of the page is saved as the ID number<br />
$cachefile = $_SERVER['DOCUMENT_ROOT'].&#8221;/cache/$id.html&#8221;;<br />
//duration before the cache is refreshed in seconds. Setting below is for a 3 day cache. Change as you see fit.</p>
<p>$cachetime = 259200;</p>
<p>// Serve from the cache if it is younger than $cachetime</p>
<p>if (file_exists($cachefile) &amp;&amp; (time() &#8211; $cachetime<br />
&lt; filemtime($cachefile)))<br />
{</p>
<p>include($cachefile); //display the cache file</p>
<p>// if cache is display, exit the script<br />
exit;</p>
<p>}</p>
<p>//if cache is not present or is too old, run the rest of the script&#8230;&#8230;</p>
<p>//place a time stamp on the cache to easily check when a page was last cached&#8230;you can place this a meta variable in your HTML header i.e. &lt;meta name=&#8221;date&#8221; content=&#8221;&lt;?=$cachedate;?&gt;&#8221;/&gt;<br />
$cachedate=date(&#8221;F d Y H:i:s&#8221;);</p>
<p>//THE REST OF YOUR PHP AND HTML CODE GOES HERE&#8230;&#8230;&#8230;&#8230;&#8230;.</p>
<p>3. At the bottom of your PHP page, copy-paste the code below:<br />
<?<br />
//define the cache file name<br />
$cachefile = "cache/$id.html";<br />
// open the cache file for writing<br />
$fp = fopen($cachefile, 'w');<br />
// save the contents of output buffer to the file<br />
fwrite($fp, ob_get_contents());<br />
// close the file<br />
fclose($fp);<br />
// Send the output to the browser<br />
ob_end_flush();<br />
?></p>
<p>4. You&#8217;re done! Upload and update your PHP file.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/254/simple-page-cache-script-for-php/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>PhilippinePropertyFinder.com</title>
		<link>http://blog.eacomm.com/archives/238/philippinepropertyfindercom</link>
		<comments>http://blog.eacomm.com/archives/238/philippinepropertyfindercom#comments</comments>
		<pubDate>Wed, 13 May 2009 04:43:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Current Projects]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[geocoding]]></category>
		<category><![CDATA[google custom search]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[philippine geocoding]]></category>
		<category><![CDATA[philippine map]]></category>
		<category><![CDATA[philippine property]]></category>
		<category><![CDATA[philippine real estate]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://blog.eacomm.com/?p=238</guid>
		<description><![CDATA[EACOMM R&#38;D Labs has just released a proof of concept website: PhilippinePropertyFinder.com. This website is an example &#8220;mash-up&#8221; of Google Maps and Google Custom Search Applications. It was developed to showcase how two relatively easy to setup yet extremely powerful technologies can provide a powerful and useful tool for the general public.
To use, simply use [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.eacomm.com/solutions" target="_blank">EACOMM R&amp;D Labs</a> has just released a proof of concept website: <a href="http://www.philippinepropertyfinder.com">PhilippinePropertyFinder.com</a>. This website is an example &#8220;<a href="en.wikipedia.org/wiki/Mashup_(web_application_hybrid) " target="_blank">mash-up</a>&#8221; of <a href="http://maps.google.com/" target="_blank">Google Maps</a> and <a href="http://www.google.com/coop/cse/" target="_blank">Google Custom Search</a> Applications. It was developed to showcase how two relatively easy to setup yet extremely powerful technologies can provide a powerful and useful tool for the general public.</p>
<p>To use, simply use the map controls to zoom and pan across the map of the Philippines to a specific area of interest. Clicking on a point in the Map will initialize Google Map&#8217;s reverse <a href="en.wikipedia.org/wiki/Geocoding" target="_blank">Geocoding</a> facility and indicate the specific region as stored in Google&#8217;s database. Clicking the &#8220;Search for Property in this Area&#8221; link will pass on the Geocoded data to Google&#8217;s Custom Search to search for property in that area using some of the more popular property listing websites in the Philippines. Alternately you can just enter the specific area you are interested in as text in the search box provided (but that takes away the fun part!).</p>
<p>Note that we are looking to improve and offer more features in the near future so feel free to check back every now and then!</p>
<p><strong><a href="http://www.philippinepropertyfinder.com">VISIT PHILIPPINE PROPERTY FINDER NOW!</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/238/philippinepropertyfindercom/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New look for the EACOMM Corporate Blog</title>
		<link>http://blog.eacomm.com/archives/127/new-look-for-the-eacomm-corporate-blog</link>
		<comments>http://blog.eacomm.com/archives/127/new-look-for-the-eacomm-corporate-blog#comments</comments>
		<pubDate>Tue, 21 Apr 2009 06:44:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.eacomm.com/?p=127</guid>
		<description><![CDATA[After almost 5 years, we&#8217;ve finally gotten around to changing the look of the EACOMM Corporate Blog. We modified the Carrington theme to look a little closer to our corporate site. We&#8217;ve also upgraded our rusty Wordpress 2.3 to the latest version (2.7.1). If you find any broken links, images or files, please don&#8217;t hesitate [...]]]></description>
			<content:encoded><![CDATA[<p>After almost 5 years, we&#8217;ve finally gotten around to changing the look of the <a title="Latest news and articles from EACOMM Corporation" href="http://blog.eacomm.com">EACOMM Corporate Blog</a>. We modified the <a href="http://carringtontheme.com">Carrington theme</a> to look a little closer to our <a title="Philippine Web Development and Programming" href="http://www.eacomm.com">corporate site</a>. We&#8217;ve also upgraded our rusty Wordpress 2.3 to the latest version (2.7.1). If you find any broken links, images or files, please don&#8217;t hesitate to contact us at support@eacomm.com or leave a comment on this post!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/127/new-look-for-the-eacomm-corporate-blog/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EACOMM Corporation is now offering Cluster/Grid-Server Hosting</title>
		<link>http://blog.eacomm.com/archives/126/eacomm-corporation-is-now-offering-clustergrid-server-hosting</link>
		<comments>http://blog.eacomm.com/archives/126/eacomm-corporation-is-now-offering-clustergrid-server-hosting#comments</comments>
		<pubDate>Mon, 20 Apr 2009 05:49:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[cloud server]]></category>
		<category><![CDATA[cluster server]]></category>
		<category><![CDATA[grid server]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web hosting]]></category>

		<guid isPermaLink="false">http://blog.eacomm.com/archives/126/eacomm-corporation-is-now-offering-clustergrid-server-hosting</guid>
		<description><![CDATA[EACOMM Corporation is proud to announce it is now offering Managed Cluster Server Web Hosting for its web clients. This is in addition to EACOMM&#8217;s current shared and dedicated hosting services. Cluster Server Hosting (or sometimes called Cloud or Grid Hosting) means that your website is hosted not on one server but is sharing the [...]]]></description>
			<content:encoded><![CDATA[<p>EACOMM Corporation is proud to announce it is now offering Managed Cluster Server Web Hosting for its web clients. This is in addition to EACOMM&#8217;s current shared and dedicated hosting services. <a href="http://en.wikipedia.org/wiki/Cluster_server">Cluster Server</a> Hosting (or sometimes called Cloud or Grid Hosting) means that your website is hosted not on one server but is <em>sharing </em>the resources of <em>dozens if not hundreds of servers</em> with other sites hosted in the cluster. This provides the following distinct advantages:</p>
<ul>
<li><strong>Reduced Downtime</strong> &#8211; By not being dependent on just one single computer, the risk of downtime is greatly reduced. For shared hosting, your website is hosted in a single server with a couple of hundred other websites and as such if that server goes down so does your website. By being hosted in a cluster, a single hardware failure will not mean your site will go down!</li>
<li><strong>Real-time  Scalability</strong> &#8211; One of the greatest advantages of a cluster-hosted website is the ability to scale resources in real-time. For example, if your blog/news website has some breaking news that goes viral, the Cluster Server will automatically provide the resources to ensure that your blog doesn&#8217;t crash due to the sudden increase in web traffic. On regular shared hosting environments, the massive increase of traffic will greatly slow your website or worse force your provider to shutdown your site so as not to affect their other clients residing on the same server as you.</li>
<li><strong>Cheaper than Dedicated Hosting</strong> &#8211; As you&#8217;re still sharing resources with other clients, cluster hosting is a lot more cost effective than dedicated hosting where you have full control of your own server. Cluster Server Hosting is a &#8216;middle ground&#8217; from dirt-cheap shared hosting costing as less than Php 250.00/month and dedicated hosting that costs upwards of Php 5,000.00/month.</li>
</ul>
<p>EACOMM offers managed grid-server hosting (meaning you don&#8217;t need to fiddle with any control panels or setups as we&#8217;ll do all the configuration for you and change them on your request) starting at just<strong> Php 880.00/month*</strong> with the following specifications:</p>
<ul>
<li><span style="text-decoration: line-through;">20 GB</span> 50GB of hosting space</li>
<li>500GB monthly bandwidth</li>
<li>50 email addresses</li>
<li>99.9% assured up-time</li>
<li>Free domain name registration</li>
<li>FTP/SSH Access</li>
<li>Web-based e-mail</li>
<li>Web-based database management</li>
<li>LAMP/Ruby on Rails-ready</li>
<li>CPU/Bandwidth Overcharge: Php 7.50 per excess GB or CPU-cycle at the end of the month</li>
<li>Cluster Servers located in US-based <a href="http://en.wikipedia.org/wiki/Data_center#Data_center_classification">Tier IV Data Centers </a></li>
<li><a href="http://eacomm.com/support/">Phone/Email Support from EACOMM Corporation</a></li>
</ul>
<p>For more information email us at <a href="mailto:%20info@eacomm.com">info@eacomm.com</a> or give us a call at +63 2 438 2986</p>
<p>*Minimum subscription contract of one (1) year</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/126/eacomm-corporation-is-now-offering-clustergrid-server-hosting/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Choosing a Web Hosting Provider</title>
		<link>http://blog.eacomm.com/archives/123/choosing-a-web-hosting-provider</link>
		<comments>http://blog.eacomm.com/archives/123/choosing-a-web-hosting-provider#comments</comments>
		<pubDate>Sat, 28 Mar 2009 16:14:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[web programming]]></category>

		<guid isPermaLink="false">http://blog.eacomm.com/archives/123/choosing-a-web-hosting-provider</guid>
		<description><![CDATA[



  

Choosing a Web hosting provider is perhaps the most difficult task for the new webmaster. There are literally hundreds if not thousands of web hosting providers in the Internet and the sad truth is a vast majority of these are not very good.  Additionally, we all have different criteria on judging whether a [...]]]></description>
			<content:encoded><![CDATA[<p><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta name="ProgId" content="Word.Document" /><meta name="Generator" content="Microsoft Word 12" /><meta name="Originator" content="Microsoft Word 12" /></p>
<link href="file:///C:%5CUsers%5Ctorres%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml" rel="File-List" />
<link href="file:///C:%5CUsers%5Ctorres%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx" rel="themeData" />
<link href="file:///C:%5CUsers%5Ctorres%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml" rel="colorSchemeMapping" /><!--[if gte mso 9]><xml>  <w :WordDocument>   </w><w :View>Normal</w>   <w :Zoom>0</w>   <w :TrackMoves/>   <w :TrackFormatting/>   <w :PunctuationKerning/>   <w :ValidateAgainstSchemas/>   <w :SaveIfXMLInvalid>false</w>   <w :IgnoreMixedContent>false</w>   <w :AlwaysShowPlaceholderText>false</w>   <w :DoNotPromoteQF/>   <w :LidThemeOther>EN-US</w>   <w :LidThemeAsian>X-NONE</w>   <w :LidThemeComplexScript>X-NONE</w>   <w :Compatibility>    <w :BreakWrappedTables/>    <w :SnapToGridInCell/>    <w :WrapTextWithPunct/>    <w :UseAsianBreakRules/>    <w :DontGrowAutofit/>    <w :SplitPgBreakAndParaMark/>    <w :DontVertAlignCellWithSp/>    <w :DontBreakConstrainedForcedTables/>    <w :DontVertAlignInTxbx/>    <w :Word11KerningPairs/>    <w :CachedColBalance/>   </w>   <w :BrowserLevel>MicrosoftInternetExplorer4</w>   <m :mathPr>    <m :mathFont m:val="Cambria Math"/>    <m :brkBin m:val="before"/>    <m :brkBinSub m:val="&#45;-"/>    <m :smallFrac m:val="off"/>    <m :dispDef/>    <m :lMargin m:val="0"/>    <m :rMargin m:val="0"/>    <m :defJc m:val="centerGroup"/>    <m :wrapIndent m:val="1440"/>    <m :intLim m:val="subSup"/>    <m :naryLim m:val="undOvr"/>   </m> </xml>< ![endif]--><!--[if gte mso 9]><xml>  <w :LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267">   <w :LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal"/>   <w :LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/>   <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/>   <w :LsdException Locked="false" Priority="39" Name="toc 1"/>   <w :LsdException Locked="false" Priority="39" Name="toc 2"/>   <w :LsdException Locked="false" Priority="39" Name="toc 3"/>   <w :LsdException Locked="false" Priority="39" Name="toc 4"/>   <w :LsdException Locked="false" Priority="39" Name="toc 5"/>   <w :LsdException Locked="false" Priority="39" Name="toc 6"/>   <w :LsdException Locked="false" Priority="39" Name="toc 7"/>   <w :LsdException Locked="false" Priority="39" Name="toc 8"/>   <w :LsdException Locked="false" Priority="39" Name="toc 9"/>   <w :LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/>   <w :LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title"/>   <w :LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>   <w :LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/>   <w :LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong"/>   <w :LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/>   <w :LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid"/>   <w :LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/>   <w :LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/>   <w :LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/>   <w :LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/>   <w :LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote"/>   <w :LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2"/>   <w :LsdException Locke<br />
d="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/>   <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6"/>   <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6"/>   <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6"/>   <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/>   <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/>   <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/>   <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/>   <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/>   <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/>   <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/>   <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6"/>   <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/>   <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="fal<br />
se" Name="Colorful List Accent 6"/>   <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/>   <w :LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/>   <w :LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/>   <w :LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/>   <w :LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/>   <w :LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title"/>   <w :LsdException Locked="false" Priority="37" Name="Bibliography"/>   <w :LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/>  </w> </xml>< ![endif]--><br />
<style> <!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph 	{mso-style-priority:34; 	mso-style-unhide:no; 	mso-style-qformat:yes; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:.5in; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst 	{mso-style-priority:34; 	mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-type:export-only; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:0in; 	margin-left:.5in; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle 	{mso-style-priority:34; 	mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-type:export-only; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:0in; 	margin-left:.5in; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast 	{mso-style-priority:34; 	mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-type:export-only; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:.5in; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoPapDefault 	{mso-style-type:export-only; 	margin-bottom:10.0pt; 	line-height:115%;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */  @list l0 	{mso-list-id:1552689860; 	mso-list-type:hybrid; 	mso-list-template-ids:-1679640054 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} @list l0:level1 	{mso-level-tab-stop:none; 	mso-level-number-position:left; 	text-indent:-.25in;} ol 	{margin-bottom:0in;} ul 	{margin-bottom:0in;} --> </style>
<p><!--[if gte mso 10]><br />
<style>  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} </style>
<p> < ![endif]--></p>
<p class="MsoNormal">Choosing a Web hosting provider is perhaps the most difficult task for the new webmaster. There are literally hundreds if not thousands of web hosting providers in the Internet and the sad truth is a vast majority of these are not very good.<span>  </span>Additionally, we all have different criteria on judging whether a host is good or not. Here are some questions to ask to help you make this very critical decision:</p>
<p class="MsoListParagraphCxSpFirst" style="text-indent: -0.25in"><!--[if !supportLists]--><span><span>1.<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal">       </span></span></span><!--[endif]--><strong>Quality of Service/Uptime Commitments – </strong>Do you need your site to be 99.99% up? Or are a couple of days of downtime in a year perfectly ok? Hosts that provide up-time commitments are typically more expensive than those that do not.</p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent: -0.25in"><!--[if !supportLists]--><span><span>2.<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal">       </span></span></span><!--[endif]--><strong>Technical Support –</strong> Do you expect/need phone support? Or are you happy with just e-mail support? Regardless of your preference, make sure your hosting provider gives <em>a fast reply</em> to <em>any </em>technical support request.<span>  </span>Response times of over 24 hours when your email is down is UNFORGIVEABLE, regardless of how cheap you’re paying your provider.</p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent: -0.25in"><!--[if !supportLists]--><span><span>3.<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal">       </span></span></span><!--[endif]--><strong>Shared vs.</strong> <strong>Dedicated – </strong>Another critical question you need to ask yourself is whether you need a dedicated server space or you’re fine with shared hosting. Dedicated server essentially means you have a server all to yourself while shared server space means you share a server and its resources with several other clients of the company. For sites with heavy traffic, resource requirements or unique applications then a dedicated server would be more logical. However, sites getting only a few hundred visitors per day would usually do perfectly fine on a shared server.</p>
<p class="MsoListParagraphCxSpLast" style="text-indent: -0.25in"><!--[if !supportLists]--><span><span>4.<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal">       </span></span></span><!--[endif]--><strong>Company Reputation/Reviews – </strong>It is absolutely critical you research hard before settling for a web hosting provider. Ask friends their experience with their hosts, and google heavily for reviews and commentary on hosting providers you’re eyeing. Note that EVERY hosting provider has its good and bad points and it is really a question of what your own priorities are that will ultimately guide your decision. Luckily, sites such as  <strong><a href="http://www.webhostingchoice.com">Web Hosting Choice</a></strong> provides a helpful start for those of you looking for a new web host.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/123/choosing-a-web-hosting-provider/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yourname.com Blog Hosting for just US$2.00/month</title>
		<link>http://blog.eacomm.com/archives/99/yournamecom-blog-hosting-for-just-us200month</link>
		<comments>http://blog.eacomm.com/archives/99/yournamecom-blog-hosting-for-just-us200month#comments</comments>
		<pubDate>Mon, 04 Feb 2008 07:39:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[blog hosting]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web hosting]]></category>

		<guid isPermaLink="false">http://blog.eacomm.com/archives/99</guid>
		<description><![CDATA[Yourname.com Blog Hosting for just US$2.00/month
EACOMM Corporation is offering for a limited time only,  Blog Hosting for just US$24 per year!

Yourname.com (or .org, .net, .biz)
8 GB of  Web Space
8 Email Addresses
Pre-installed with Wordpress Blog Engine
FTP Access (ftp.yourdomain.com)

This hosting service is not only ideal for Blogs but for small information websites which can be updated with [...]]]></description>
			<content:encoded><![CDATA[<h1>Yourname.com Blog Hosting for just US$2.00/month</h1>
<p>EACOMM Corporation is offering for a limited time only,  Blog Hosting for just US$24 per year!</p>
<ul>
<li>Yourname.com (or .org, .net, .biz)</li>
<li>8 GB of  Web Space</li>
<li>8 Email Addresses</li>
<li>Pre-installed with <a href="http://www.wordpress.org/" _fcksavedurl="http://www.wordpress.org" target="_blank">Wordpress Blog Engine</a></li>
<li>FTP Access (ftp.yourdomain.com)</li>
</ul>
<p><a href="http://www.graphicdesignblog.co.uk/wordpress-as-a-cms-content-management-system/" _fcksavedurl="http://www.graphicdesignblog.co.uk/wordpress-as-a-cms-content-management-system/" target="_blank">This hosting service is not only ideal for Blogs but for small information websites which can be updated with little to no knowledge of HTML!</a></p>
<h1>Unique Web Page Layout for your Website/Blog</h1>
<p>For a one-time fee of US$150.00 we will provide you with a <span style="font-weight: bold">Unique Layout for your Wordpress Blog/Website</span>.</p>
<ul>
<li>Three (3) Layouts/themes will be presented to the client to choose from</li>
<li>Inclusion of simple Flash banners/animation</li>
</ul>
<h1>For more information about this limited offer email <a href="mailto:info@eacomm.com?subject=%2424%20per%20year%20web%20hosting%21" _fcksavedurl="mailto:info@eacomm.com?subject=%2424%20per%20year%20web%20hosting%21">info@eacomm.com</a> or call +63 2 438 2986.</h1>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/99/yournamecom-blog-hosting-for-just-us200month/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EACOMM Corporation Website Version 5</title>
		<link>http://blog.eacomm.com/archives/98/eacomm-corporation-website-version-5</link>
		<comments>http://blog.eacomm.com/archives/98/eacomm-corporation-website-version-5#comments</comments>
		<pubDate>Wed, 09 Jan 2008 15:47:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[eacomm]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web programming]]></category>

		<guid isPermaLink="false">http://blog.eacomm.com/archives/98</guid>
		<description><![CDATA[Welcoming the new year, EACOMM is proud to launch the 5th version of its corporate website since the company&#8217;s inception in 2001.  The new website features detailed interactive scenery with a retro, film-noir look developed in Flash. The website is managed through the latest version of EACOMM&#8217;s Dynamic Online Content Management System which features [...]]]></description>
			<content:encoded><![CDATA[<p>Welcoming the new year, <a href="http://www.eacomm.com">EACOMM is proud to launch the 5th version of its corporate website</a> since the company&#8217;s inception in 2001.  The new website features detailed interactive scenery with a retro, film-noir look developed in Flash. The website is managed through the latest version of <a href="http://www.do-cms.com" title="Business Website Content Management System">EACOMM&#8217;s Dynamic Online Content Management System</a> which features new features such as allowing for editing of Flash content as well as integration with <a href="https://www.google.com/a/" title="Google Apps">Google&#8217;s Application suite</a>. The site&#8217;s use of CSS 2.0 would also allow us to change the layout much more often and offer different layouts simultaneously in the future. The site is also designed to showcase the entire skill-set of EACOMM Corporation from <a href="http://www.eacomm.com/multimedia">Interactive Multimedia and Animation</a> as seen with the various Flash scenes, to <a href="http://www.eacomm.com/web">High-end Web Programming</a> as showcased in the various dynamic content and interactive forms.</p>
<p>For a blast from the past, visit the <a href="http://web.archive.org/web/*/http://www.eacomm.com">Web Archive</a> which has our last three website layouts on record (for some reason the very first site was never stored).</p>
<ul>
<li><strong>Version 1 (2001) </strong>was pure HTML and only had less than 10 web pages.</li>
<li><a href="http://web.archive.org/web/20030130140942/http://www.eacomm.com/"><strong>Version 2 &#8220;Classic Black&#8221; (2002-2003)</strong></a> featured a number of online forms developed in PHP and writing to MySQL database. However, the main site content remained mostly HTML-based with a some small flash animation elements. Version two also included our first efforts in <a href="http://en.wikipedia.org/wiki/Search_engine_optimization">Search Engine Optimization</a> of the website.</li>
<li><strong><a href="http://web.archive.org/web/20030624085041/http://www.eacomm.com/">Version 3 &#8220;United Colors of EACOMM&#8221; (2003-2005)</a></strong>  featured a lively intro page and heavily SEO&#8217;d content. Some content were already content managed during the latter part of this version&#8217;s existence. Version 3 was also the first site hosted outside of EACOMM&#8217;s in-house web server for increased accessibility from the US/Europe.</li>
<li><strong><a href="http://2005.eacomm.com">Version 4 &#8220;The Tree House&#8221; (2005-2007)</a></strong> This website was the first EACOMM website to fully utilize <a href="http://www.do-cms.com">DO-CMS</a> for content management. It feature original artwork from Visual Artist <a href="http://www.artesdelasfilipinas.com/main/archives.php?pid=7">Robert Deniega</a>. Further additions to the site includes this Blog website, a Japanese Version of the Website and other division sub-sites.</li>
</ul>
<p>Expect improvements and additions to the Current Website as we move forward through 2008 and beyond.</p>
<p>Happy New Year to Everyone!</p>
<p>EACOMM Corporation Web Team</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/98/eacomm-corporation-website-version-5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CITEM launches E-payment</title>
		<link>http://blog.eacomm.com/archives/61/citem-launches-e-payment</link>
		<comments>http://blog.eacomm.com/archives/61/citem-launches-e-payment#comments</comments>
		<pubDate>Thu, 12 Oct 2006 10:35:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[citem]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.eacomm.com/blog/?p=61</guid>
		<description><![CDATA[Developing various activities that strengthen trade, investments, and tourism, the ASEAN-Japan Centre (AJC) revolutionizes trade promotion via Information and Communications Technology (ICT).
In a seminar conducted last November 2004 held in Singapore and March 2005 in Kuala Lumpur, Malaysia, AJC benchmarks the development of the business and technical framework of ASEAN trade promotion organizations’ websites. Evolving [...]]]></description>
			<content:encoded><![CDATA[<p><font size="2" face="arial,helvetica, san-serif">Developing various activities that strengthen trade, investments, and tourism, the ASEAN-Japan Centre (AJC) revolutionizes trade promotion via Information and Communications Technology (ICT).</font></p>
<p><font size="2" face="arial,helvetica, san-serif">In a seminar conducted last November 2004 held in Singapore and March 2005 in Kuala Lumpur, Malaysia, AJC benchmarks the development of the business and technical framework of ASEAN trade promotion organizations’ websites. Evolving from the usual information-based website, AJC is embarking on an ICT project which would turn ASEAN trade promotion organizations’ websites to transaction-based with the integration of new website features such as a Japanese-translated website, e-payment system, and a 3D virtual exhibition.</font></p>
<p><font size="2" face="arial,helvetica, san-serif">Website enhancement does not end virtually. Developments such as upgraded services and capabilities must be done to make the website eye-catching, information savvy, and convenient in response to clients’ needs and wants. One of which is putting up an online payment service common to transaction-based websites. This specialized feature allows users to do their payment at the convenience of their houses, offices, and wherever they are.</font></p>
<p><font size="2" face="arial,helvetica, san-serif">In line with the ICT project, <a href="http://www.eacomm.com"><strong>EACOMM</strong></a>, with AJC funding, designed and developed the online payment facility for the Center for International Trade Expositions and Missions (CITEM). This online payment facility will accommodate payments for trade exhibits, seminars and conferences. The CITEM e-Payment service is a hassle-free online payment facility that aims to give ease to exporter-manufacturers as they participate in CITEM events.</font></p>
<p><font size="2" face="arial,helvetica, san-serif">Mozcom, the official Internet service provider of CITEM, powers the e-payment system. The new e-payment service will launch CITEM as an online transactional trade promotion organization.</font></p>
<p><font size="2" face="arial,helvetica, san-serif">To learn more about this value-added service, CITEM will introduce e-payment at the Manila F.A.M.E. Merchandise Briefing to its participants at Exhibition Hall B, Philippine Trade and Training Center on September 18, 2006, 1:30 p.m. See more of its features as representatives from Mozcomm and EACOMM conduct an orientation.</font></p>
<p><font size="2" face="arial,helvetica, san-serif"><strong>Experience faster payment transactions that are accessible to clients online, in real time anywhere in the world!</strong></font></p>
<p><font size="4" face="arial,helvetica, san-serif" color="#6382a1"><strong>Virtual showroom acts as marketing tool for over 2,800 SMEs </strong> 				</font></p>
<p><font size="2" face="arial,helvetica, san-serif"> A virtual showroom of Filipino products and services, Catalog Online (COL) served as a marketing conduit for some 2,860 SMEs generating 456 local and foreign buyers for the first half of the year.</font></p>
<p><font size="2" face="arial,helvetica, san-serif">Catalog Online is a government-run website exclusive for clients of the Center for International Trade Expositions and Missions (CITEM), where buyers can access basic information on company profiles and exportable products.</font></p>
<p><font size="2" face="arial,helvetica, san-serif">COL features the country’s best in the food, gifts and holiday décor, home furnishings, industrial goods and services, IT- and IT-enabled services, organic, herbal and natural products, and wearable industries.</font></p>
<p><font size="2" face="arial,helvetica, san-serif">Meanwhile, COL’s e business twin, the CITEM Trade Opportunities Program (CTOP), is a year-round market-match service where registered company-exhibitors regularly receive a listing of interested buyers by e-mail.</font></p>
<p><font size="2" face="arial,helvetica, san-serif">In 2006, 1,440 exporters were referred to 149 inquiring buyers aside from 61 other company-, product- and service-related information inquiries under the program. The gifts, toys and houseware, furnishing and furniture, and fashion accessories sectors attracted 872 referrals, further strengthening the Philippines’ burgeoning reputation as a hub for design.</font></p>
<p><font size="2" face="arial,helvetica, san-serif">In addition, Catalog Online generated 119,306 search engine hits using Google’s new traffic report tool.</font></p>
<p><font size="2" face="arial,helvetica, san-serif">In the competitive marketing landscape of the Internet, “rankings” and “hits” play a huge part in a website’s search-engine success.</font></p>
<p><font size="2" face="arial,helvetica, san-serif">COL boasts a consistent showing in both departments.</font></p>
<p><font size="2" face="arial,helvetica, san-serif">The website is ranked number 1 when the keywords “Philippine”, “catalog” and “online” are typed on search engines such as Google and Yahoo!.</font></p>
<p><font size="2" face="arial,helvetica, san-serif">Under the common keywords “catalog” and “online”, the website still places fir1st out of 170,000,000 results. Meanwhile, when Internet visitors type in the other keywords such as “Philippine” and “products”, Catalog Online appears number 1 out of 1,080,000 match results in the webpages available in the Philippines and number 13 out of 2,120,000 in the entire worldwide web; and with “Philippine” and “exports”, Catalog Online still finds success placing 6th out of 1,020,000 results on the web.</font></p>
<p><font size="2" face="arial,helvetica, san-serif"><strong>Buying and selling</strong></font></p>
<p><font size="2" face="arial,helvetica, san-serif">“Paradise Mango Rum is the first of its kind in the world. Catalog OnLine helps a lot in terms of promoting our product to foreign buyers interested in Filipino products especially those that are unique,” Destileria Limtuaco &#038; Co., Inc. President Olivia Limpe–Aw beamed.</font></p>
<p><font size="2" face="arial,helvetica, san-serif">Destileria Limtuaco &#038; Co., Inc., an exhibitor of CITEM-organized International Food Exhibit (IFEX), is the producer of 2003 Trendy-award winning Paradise Mango Rum Liqueur, the first of its kind in the world. The company has been exporting this Filipino product to Switzerland and China. Their unique spirit beverages have also been drawing interest from Canada and the United States.</font></p>
<p><font size="2" face="arial,helvetica, san-serif">Mr. Benny Y. Aw, Senior Vice President for International Sales of the company added: “CITEM’s Trade Opportunities Program, as a complement, has given us an opening to further widen our export market; we are currently negotiating with a US-based company. Because of COL and CTOP, Paradise Mango Rum Liqueur and Destileria Limtuaco &#038; Co, Inc.’s products have gone a long way.”</font></p>
<p><font size="2" face="arial,helvetica, san-serif">Buying agent Raymond Calaranan, of Calaranan International Creative Group, Incorporated (CICG, Inc.), has been servicing gifts and houseware items from the Catalog Online. A valued client is Mr. Tokuyama who operates Jam Restaurant, an eatery cum souvenir shop in Japan.</font></p>
<p><font size="2" face="arial,helvetica, san-serif">“He is an avid fan of Filipino design, making it a point to visit the April edition of CITEM’s Manila F.A.M.E. International every year along with me,” he said. “Filipino-designed gifts and houseware make for good souvenirs abroad.”</font></p>
<p><font size="2" face="arial,helvetica, san-serif">The e-business twins COL and CTOP are managed by CITEM, the trade promotions arm of the Philippine Department of Trade and Industry. </font></p>
<p><strong>*<a href="http://www.citem.gov.ph/catalogonline">Catalog Online</a>, CITEM E-payment, and the <a href="http://www.citem.gov.ph/catalogonline/exhibit">Catalog Online 3D Virtual Exhibit</a> are all projects proudly designed and developed by <a href="http://www.eacomm.com">EACOMM Corporation</a>.</strong></p>
<p><font size="2" face="arial,helvetica, san-serif"> </font></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/61/citem-launches-e-payment/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sinski Website Launched</title>
		<link>http://blog.eacomm.com/archives/18/sinski-website-launched</link>
		<comments>http://blog.eacomm.com/archives/18/sinski-website-launched#comments</comments>
		<pubDate>Wed, 16 Nov 2005 08:30:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web programming]]></category>

		<guid isPermaLink="false">http://www.eacomm.com/blog/?p=18</guid>
		<description><![CDATA[EACOMM announces the launching of the new  Sinski Motorcycles Philippines Incorporated Official Website: http://www.sinski.com.ph. Features Javascript rotating product pictures and click to enlarge functionality. Another proud member of the ever growing DO-CMS family.
]]></description>
			<content:encoded><![CDATA[<p>EACOMM announces the launching of the new  Sinski Motorcycles Philippines Incorporated Official Website: <a href="http://www.sinski.com.ph">http://www.sinski.com.ph</a>. Features Javascript rotating product pictures and click to enlarge functionality. Another proud member of the ever growing <a href="http://www.do-cms.com">DO-CMS</a> family.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/18/sinski-website-launched/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
