<?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</title>
	<atom:link href="http://blog.eacomm.com/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>Fri, 30 Jul 2010 06:12:20 +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>Facebook Likes/Shares Checker for a Webpage</title>
		<link>http://blog.eacomm.com/archives/405/facebook-likesshares-checker-for-a-webpage</link>
		<comments>http://blog.eacomm.com/archives/405/facebook-likesshares-checker-for-a-webpage#comments</comments>
		<pubDate>Fri, 30 Jul 2010 06:01:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Current Projects]]></category>
		<category><![CDATA[facebook  tutorial]]></category>
		<category><![CDATA[facebook analytics]]></category>
		<category><![CDATA[facebook API]]></category>
		<category><![CDATA[facebook likes]]></category>
		<category><![CDATA[facebook programming]]></category>
		<category><![CDATA[facebook shares]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[PHP programming]]></category>

		<guid isPermaLink="false">http://blog.eacomm.com/?p=405</guid>
		<description><![CDATA[Facebook integration is by now &#8216;a must&#8217; for websites. By providing tools to share or like your site to Facebook, it gives your site a lot more opportunity to get read and seen by the 500 million ++ users of Facebook. Facebook has developed several simple to use API&#8217;s for this which can be found [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.facebook.com" target="_blank">Facebook</a> integration is by now &#8216;a must&#8217; for websites. By providing tools to share or like your site to Facebook, it gives your site a lot more opportunity to get read and seen by the 500 million ++ users of Facebook. Facebook has developed several simple to use API&#8217;s for this which can be found here:<a href="http://developers.facebook.com/docs/guides/web" target="_blank"> http://developers.facebook.com/docs/guides/web</a>.</p>
<p>Statistics can be monitored in <a href="http://www.facebook.com/insights" target="_blank">http://www.facebook.com/insights</a>, however the data presented is far from complete. For example, something as simple as monitoring how many people has &#8220;shared&#8221; or &#8220;liked&#8221; your website is not easily determined. Fortunately there&#8217;s a handy link for checking the number of Facebook &#8220;likes&#8221; or &#8220;shares&#8221; of a given Web Page URL also provided by Facebook but not as known:</p>
<p><a href="http://api.facebook.com/restserver.php?method=links.getStats&amp;urls=http://www.eacomm.com" target="_blank"><strong>http://api.facebook.com/restserver.php?method=links.getStats&amp;urls=<em>http://www.eacomm.com</em></strong></a></p>
<p>The above query will return an XML document in the following format:</p>
<p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243;?&gt;</p>
<p>&lt;links_getStats_response xmlns=&#8221;http://api.facebook.com/1.0/&#8221; xmlns:xsi=&#8221;http://www.w3.org/2001/XMLSchema-instance&#8221; xsi:schemaLocation=&#8221;http://api.facebook.com/1.0/ http://api.facebook.com/1.0/facebook.xsd&#8221; list=&#8221;true&#8221;&gt;</p>
<p>&lt;link_stat&gt;</p>
<p>&lt;url&gt;http://www.eacomm.com&lt;/url&gt;</p>
<p>&lt;share_count&gt;3&lt;/share_count&gt;</p>
<p>&lt;like_count&gt;3&lt;/like_count&gt;</p>
<p>&lt;comment_count&gt;13&lt;/comment_count&gt;</p>
<p>&lt;total_count&gt;19&lt;/total_count&gt;</p>
<p>&lt;click_count&gt;0&lt;/click_count&gt;</p>
<p>&lt;normalized_url&gt;http://www.eacomm.com/&lt;/normalized_url&gt;</p>
<p>&lt;/link_stat&gt;</p>
<p>&lt;/links_getStats_response&gt;</p>
<p>This can then be parsed by a simple application to store the statistics in a database.</p>
<p>For example in PHP you can use the simlexml_load_file to parse this. Below is a very simple code (admittedly not very elegant, but it works) to do this:</p>
<p>$url = &#8220;http://www.eacomm.com&#8221;;<br />
$xml = simplexml_load_file(&#8221;http://api.facebook.com/restserver.php?method=links.getStats&amp;urls=$url&#8221;);<br />
$child=$xml-&gt;children();<br />
$child2=$child-&gt;children();<br />
$shares=$child2-&gt;share_count;<br />
$likes=$child2-&gt;like_count;<br />
$comments=$child2-&gt;comment_count;<br />
$total=$child2-&gt;total_count;<br />
$clicks=$child2-&gt;click_count;</p>
<p>You can now store the shares, likes, etc. in a database and monitor for yourself how your website is performing in Facebook.</p>
<p>Below is a form to check if your site has been &#8217;shared&#8217; in Facebook:</p>
<p><a href="http://www.eacomm.com/fblikecheck.php" target="_blank">http://www.eacomm.com/fblikecheck.php</a></p>
<h1>Facebook Likes/Shares Checker:</h1>
<form action="http://www.eacomm.com/fblikecheck.php" method="POST"> Enter the Web Page you want to check:</p>
<input name="domain" type="text" value="http://www.eacomm.com" />
<input name="submit" type="submit" value="Submit" /> </form>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/405/facebook-likesshares-checker-for-a-webpage/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Philippine Business Directory &#8230;</title>
		<link>http://blog.eacomm.com/archives/404/philippine-business-directory-2</link>
		<comments>http://blog.eacomm.com/archives/404/philippine-business-directory-2#comments</comments>
		<pubDate>Wed, 28 Jul 2010 11:43:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[tweets]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://blog.eacomm.com/archives/404/philippine-business-directory-2</guid>
		<description><![CDATA[Philippine Business Directory … http://fb.me/wf3XXHes
]]></description>
			<content:encoded><![CDATA[<p>Philippine Business Directory … <a href="http://fb.me/wf3XXHes" rel="nofollow">http://fb.me/wf3XXHes</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/404/philippine-business-directory-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Philippine Business Directory &#8230;</title>
		<link>http://blog.eacomm.com/archives/403/philippine-business-directory</link>
		<comments>http://blog.eacomm.com/archives/403/philippine-business-directory#comments</comments>
		<pubDate>Tue, 27 Jul 2010 05:42:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[tweets]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://blog.eacomm.com/archives/403/philippine-business-directory</guid>
		<description><![CDATA[Philippine Business Directory &#8211; Top 50 most Shared/Liked Companies: http://bit.ly/bOx7JD
]]></description>
			<content:encoded><![CDATA[<p>Philippine Business Directory &#8211; Top 50 most Shared/Liked Companies: <a href="http://bit.ly/bOx7JD" rel="nofollow">http://bit.ly/bOx7JD</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/403/philippine-business-directory/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Artes de la Filipinas: Private Collections available from BuyOnline.ph</title>
		<link>http://blog.eacomm.com/archives/401/artes-de-la-filipinas-private-collections-available-from-buyonline-ph</link>
		<comments>http://blog.eacomm.com/archives/401/artes-de-la-filipinas-private-collections-available-from-buyonline-ph#comments</comments>
		<pubDate>Thu, 22 Jul 2010 09:35:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.eacomm.com/?p=401</guid>
		<description><![CDATA[EACOMM Corporation&#8217;s Artes de las Filipinas: Private Collections by Ms. Christiane de la Paz is now available for purchase online at http://www.buyonline.ph. This provides online purchasers more options for payment such as Bancnet/Megalink cards, Globe GCash or Credit Card. The book is also available through Artes de las Filipinas&#8217; Online store (payment by Paypal only), [...]]]></description>
			<content:encoded><![CDATA[<p>EACOMM Corporation&#8217;s <a href="http://artesdelasfilipinas.com/archives.php?page_id=79">Artes de las Filipinas: Private Collections by Ms. Christiane de la Paz</a> is now available for purchase online at <a href="http://www.buyonline.ph/books-magazines/7225-artes-de-las-filipinas-private-collections.html" target="_blank">http://www.buyonline.ph</a>. This provides online purchasers more options for payment such as <a href="http://www.buyonline.ph/cms.php?id_cms=5" target="_blank">Bancnet/Megalink cards, Globe GCash or Credit Card</a>. The book is also available through <a href="http://artesdelasfilipinas.com/online_store.php?page_id=69" target="_blank">Artes de las Filipinas&#8217; Online store</a> (payment by <a href="https://www.paypal.com/ph/mrb/pal=TD84B8LW63ZTG">Paypal</a> only), in <a href="http://www.amazon.com/Artes-las-Filipinas-Private-Collections/dp/9719409304" target="_blank">Amazon.com</a>, as well as select <a href="www.powerbooks.com.ph" target="_blank">Powerbooks</a> and <a href="http://www.fullybookedonline.com/" target="_blank">Fully Booked</a> branches in Metro Manila.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/401/artes-de-la-filipinas-private-collections-available-from-buyonline-ph/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New look and features for PhilippineCompanies.com</title>
		<link>http://blog.eacomm.com/archives/397/new-look-and-features-for-philippinecompanies-com</link>
		<comments>http://blog.eacomm.com/archives/397/new-look-and-features-for-philippinecompanies-com#comments</comments>
		<pubDate>Sun, 20 Jun 2010 15:58:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Current Projects]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[business directory philippines]]></category>
		<category><![CDATA[filipino companies]]></category>
		<category><![CDATA[philippine business directory]]></category>
		<category><![CDATA[philippine companies]]></category>
		<category><![CDATA[philippines]]></category>
		<category><![CDATA[top philippine websites]]></category>

		<guid isPermaLink="false">http://blog.eacomm.com/?p=397</guid>
		<description><![CDATA[At over 10,000 visitors/day PhilippineCompanies.com is now one of the top 1000 websites in the Philippines. This coincides as well with the site surpassing 50,000 companies listed in its database.  In our continuing effort to improve the website, the following changes have recently gone live:

PhilippineCompanies.com has moved to our Cloud-based Virtual Private Servers which would [...]]]></description>
			<content:encoded><![CDATA[<p>At over 10,000 visitors/day <a title="Philippines Business Directory and Locator" href="http://www.philippinecompanies.com">PhilippineCompanies.com</a> is now one of the <a href="http://www.alexa.com/siteinfo/philippinecompanies.com">top 1000 websites in the Philippines</a>. This coincides as well with the site surpassing 50,000 companies listed in its database.  In our continuing effort to improve the website, the following changes have recently gone live:</p>
<ul>
<li>PhilippineCompanies.com has moved to our <a title="Managed Cloud VPS Web Hosting" href="http://hosting.eacomm.com/web-hosting-packages/managed-virtual-private-cloud-server-hosting">Cloud-based Virtual Private Servers</a> which would allow us to scale more easily as the site continues to grow. The upgrade should significantly increase the website loading time as well.</li>
<li>The site has been redesigned to what we think is a cleaner and sleeker look.</li>
<li>A new section that has gone live but still under constant improvement and development is the <a title="Stock Market Information Philippines" href="http://www.philippinecompanies.com/stockmarket.php">Stock Market</a> section of the site. This area provides links to stock information and news for <a title="Stock Market Philippines" href="http://www.philippinecompanies.com/stockmarket.php">Publicly Traded Philippine Companies</a>.</li>
<li>Visitors can now download the <a href="http://philippinecompanies.ourtoolbar.com/">PhilippineCompanies Toolbar</a> to have faster access to the PhilippineCompanies search engine.</li>
</ul>
<p>Expect several other new features in the next few weeks!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/397/new-look-and-features-for-philippinecompanies-com/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Animahenasyon 2010 Teaser and Poster</title>
		<link>http://blog.eacomm.com/archives/389/animahenasyon-2010-teaser-and-poster</link>
		<comments>http://blog.eacomm.com/archives/389/animahenasyon-2010-teaser-and-poster#comments</comments>
		<pubDate>Wed, 05 May 2010 03:39:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[3d animation]]></category>
		<category><![CDATA[animahenasyon 2010]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[animation competition]]></category>
		<category><![CDATA[animation festival]]></category>
		<category><![CDATA[philippine animation]]></category>

		<guid isPermaLink="false">http://blog.eacomm.com/?p=389</guid>
		<description><![CDATA[

 // 
// 
// ]]&#62;
Produced by Glow Animation for the Animation Council of the Philippines

]]></description>
			<content:encoded><![CDATA[<div>
<div id="v4597"><object id="mpl" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="540" height="379" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="mpl" /><param name="flashvars" value="file=http://www.animahenasyon.com/ACPI-2010_TEASER_ADS_540x360.flv&amp;image=http://www.animahenasyon.com/ACPI-2010_TEASER_ADS_540x360.jpeg" /><param name="src" value="https://media.dreamhost.com/mp4/player.swf" /><param name="allowfullscreen" value="true" /><param name="quality" value="high" /><embed id="mpl" type="application/x-shockwave-flash" width="540" height="379" src="https://media.dreamhost.com/mp4/player.swf" quality="high" allowfullscreen="true" flashvars="file=http://www.animahenasyon.com/ACPI-2010_TEASER_ADS_540x360.flv&amp;image=http://www.animahenasyon.com/ACPI-2010_TEASER_ADS_540x360.jpeg" name="mpl"></embed></object></div>
<p><script src="https://media.dreamhost.com/mp4/swfobject.js" type="text/javascript"></script> <script type="text/javascript">// <![CDATA[
// <![CDATA[ var swf = new SWFObject("https://media.dreamhost.com/mp4/player.swf", "mpl", "540", "379", 8); swf.addParam("allowfullscreen", "true"); swf.addParam("allowscriptaccess", "always"); swf.addVariable("file", "http://www.animahenasyon.com/ACPI-2010_TEASER_ADS_540x360.flv"); swf.addVariable("image", "http://www.animahenasyon.com/ACPI-2010_TEASER_ADS_540x360.jpeg"); swf.write("v4597");
// ]]&gt;</script></div>
<p><script src="https://media.dreamhost.com/mp4/swfobject.js &lt;view-source:https://media.dreamhost.com/mp4/swfobject.js" type="text/javascript">// <![CDATA[
  // >
// ]]&gt;</script></p>
<p>Produced by <a href="http://www.glowanimation.com/" target="_blank">Glow Animation</a> for the <a href="http://www.animationcouncil.org" target="_blank">Animation Council of the Philippines</a></p>
<p><a href="http://www.animationcouncil.org"><img class="alignnone" title="Animahenasyon 2010" src="http://cms.do-cms.com/UserFiles/acpi/Image/animahenasyon%20poster%20call%201024.jpg" alt="Animahenasyon 2010" width="447" height="614" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/389/animahenasyon-2010-teaser-and-poster/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EACOMM Managed Web Hosting Web&#8230;</title>
		<link>http://blog.eacomm.com/archives/386/eacomm-managed-web-hosting-web</link>
		<comments>http://blog.eacomm.com/archives/386/eacomm-managed-web-hosting-web#comments</comments>
		<pubDate>Thu, 22 Apr 2010 15:28:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Current Projects]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[cdn philippines]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[cloud hosting]]></category>
		<category><![CDATA[cloud server philippines]]></category>
		<category><![CDATA[content delivery network]]></category>
		<category><![CDATA[server philippines]]></category>
		<category><![CDATA[vps philippines]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[web hosting philippines]]></category>
		<category><![CDATA[web server philippines]]></category>

		<guid isPermaLink="false">http://blog.eacomm.com/archives/386/eacomm-managed-web-hosting-web</guid>
		<description><![CDATA[EACOMM Managed Web Hosting Website: http://hosting.eacomm.com/
]]></description>
			<content:encoded><![CDATA[<p>EACOMM Managed Web Hosting Website: <a href="http://hosting.eacomm.com/" rel="nofollow">http://hosting.eacomm.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/386/eacomm-managed-web-hosting-web/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Junior Software Engineer</title>
		<link>http://blog.eacomm.com/archives/380/junior-software-engineer</link>
		<comments>http://blog.eacomm.com/archives/380/junior-software-engineer#comments</comments>
		<pubDate>Tue, 06 Apr 2010 01:35:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Job Openings]]></category>
		<category><![CDATA[careers]]></category>
		<category><![CDATA[job opening]]></category>
		<category><![CDATA[software engineer]]></category>
		<category><![CDATA[software engineer philippines]]></category>
		<category><![CDATA[vacancies]]></category>

		<guid isPermaLink="false">http://blog.eacomm.com/?p=380</guid>
		<description><![CDATA[EACOMM Corporation&#8217;s Research  and Development team is looking for fresh graduates to work as Junior  Software Engineers on the following tasks:

Assist the software architects and software engineers in the conceptualization, design and implementation of innovative new web  applications
Learn and use the latest web technologies

Candidates must be knowledgeable in:

 Software Design/System Analysis
 Linux [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.eacomm.com/solutions">EACOMM Corporation&#8217;s Research  and Development team</a> is looking for fresh graduates to work as Junior  Software Engineers on the following tasks:</p>
<ul>
<li>Assist the software architects and software engineers in the conceptualization, design and implementation of innovative new web  applications</li>
<li>Learn and use the latest web technologies</li>
</ul>
<p>Candidates must be knowledgeable in:</p>
<ul>
<li> Software Design/System Analysis</li>
<li> Linux operating system</li>
<li> PHP/MySQL</li>
<li> HTML/CSS2.0</li>
<li>AJAX/Javascript</li>
<li> Basic Flash actionscripting</li>
<li> Knowledge in other web programming languages such as Python, ASP.NET,  etc..a definite plus.</li>
</ul>
<p>Candidates must be a graduate of a computer science, computer  engineering or equivalent course from a reputable university. Excellent  English communications and comprehension skill is required.</p>
<p>Please submit your resumes via email to: <a href="mailto:admin@eacomm.com">admin@eacomm.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/380/junior-software-engineer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Managed Virtual Private Server (VPS) / Cloud Server Hosting</title>
		<link>http://blog.eacomm.com/archives/374/managed-virtual-private-server-hosting</link>
		<comments>http://blog.eacomm.com/archives/374/managed-virtual-private-server-hosting#comments</comments>
		<pubDate>Tue, 30 Mar 2010 08:44:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Current Projects]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[cloud hosting]]></category>
		<category><![CDATA[cloud server]]></category>
		<category><![CDATA[cloud server philippines]]></category>
		<category><![CDATA[private server]]></category>
		<category><![CDATA[virtual server]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[vps philippines]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[web hosting philippines]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://blog.eacomm.com/?p=374</guid>
		<description><![CDATA[EACOMM Philippines is now offering Virtual Private Server Hosting to complement its shared and grid hosting offerings. Features include:

Real-time scaling of server resources. Our VPS Cloud Infrastructure allows you to increase and decrease the specifications of your server with little or no downtime. Just give us a call and we will upgrade or downgrade your [...]]]></description>
			<content:encoded><![CDATA[<p>EACOMM Philippines is now offering <a href="http://en.wikipedia.org/wiki/Virtual_private_server" target="_blank">Virtual Private Server Hosting</a> to complement its <a href="http://eacomm.com/web/index.php?p=56" target="_blank">shared</a> and <a href="http://blog.eacomm.com/archives/126/eacomm-corporation-is-now-offering-clustergrid-server-hosting" target="_blank">grid hosting</a> offerings. Features include:</p>
<ul>
<li><em><strong>Real-time scaling of server resources</strong></em>. Our VPS Cloud Infrastructure allows you to increase and decrease the specifications of your server with little or no downtime. Just give us a call and we will upgrade or downgrade your cloud server specifications in a matter of minutes.</li>
<li><a href="http://en.wikipedia.org/wiki/Root_access" target="_blank">Full Root Access</a> with your choice of <a title="Linux" href="http://en.wikipedia.org/wiki/Linux">Linux</a> distribution including <a title="Arch Linux" href="http://en.wikipedia.org/wiki/Arch_Linux">Arch</a>,  <a title="CentOS" href="http://en.wikipedia.org/wiki/CentOS">CentOS</a>,  <a title="Debian" href="http://en.wikipedia.org/wiki/Debian">Debian</a>,  <a title="Fedora (operating system)" href="http://en.wikipedia.org/wiki/Fedora_%28operating_system%29">Fedora</a>, <a title="Gentoo Linux" href="http://en.wikipedia.org/wiki/Gentoo_Linux">Gentoo</a>,  <a title="Red Hat  Linux" href="http://en.wikipedia.org/wiki/Red_Hat_Linux">Red Hat</a> and <a title="Ubuntu (operating system)" href="http://en.wikipedia.org/wiki/Ubuntu_%28operating_system%29">Ubuntu</a>.</li>
<li>Metered bandwidth, pay only for what you use!</li>
<li>Daily and Weekly Backups</li>
<li>Optional assistance in configuring your server as a web server, email  server, VoIP PBX, or even a remote Linux workstation!</li>
<li>Housed in US-based Data Centers with 99.99% assured up-time.</li>
</ul>
<h2>EACOMM VPS SERVER PACKAGES:</h2>
<table style="border-collapse: collapse; height: 150px;" border="0" cellspacing="0" cellpadding="0" width="424">
<col style="width: 133pt;" width="177"></col>
<col style="width: 56pt;" width="74"></col>
<col style="width: 48pt;" width="64"></col>
<col style="width: 64pt;" width="85"></col>
<tbody>
<tr style="height: 15pt; text-align: center;" height="20">
<td style="height: 15pt; width: 133pt;" width="177" height="20"></td>
<td style="border-left: medium none; width: 56pt;" width="74">
<h3>RAM</h3>
</td>
<td style="border-left: medium none; width: 48pt;" width="64">
<h3>HDD</h3>
</td>
<td style="border-left: medium none; width: 64pt;" width="85">
<h3>Monthly Cost*</h3>
</td>
</tr>
<tr style="height: 15pt;" height="20">
<td style="height: 15pt; border-top: medium none;" height="20">
<h3>Test Server</h3>
</td>
<td style="border-top: medium none; border-left: medium none; text-align: center;">256 MB</td>
<td style="border-top: medium none; border-left: medium none; text-align: center;">10 GB</td>
<td style="border-top: medium none; border-left: medium none;" align="right">
<p style="text-align: center;"><strong>PHP 900.00</strong></p>
</td>
</tr>
<tr style="height: 15pt;" height="20">
<td style="height: 15pt; border-top: medium none;" height="20">
<h3>Personal   Server</h3>
</td>
<td style="border-top: medium none; border-left: medium none; text-align: center;">512 MB</td>
<td style="border-top: medium none; border-left: medium none; text-align: center;">20 GB</td>
<td style="border-top: medium none; border-left: medium none;" align="right">
<p style="text-align: center;"><strong>PHP   1,700.00</strong></p>
</td>
</tr>
<tr style="height: 15pt;" height="20">
<td style="height: 15pt; border-top: medium none;" height="20">
<h3>Small Business   Server</h3>
</td>
<td style="border-top: medium none; border-left: medium none; text-align: center;">1024 MB</td>
<td style="border-top: medium none; border-left: medium none; text-align: center;">40 GB</td>
<td style="border-top: medium none; border-left: medium none;" align="right">
<p style="text-align: center;"><strong>PHP 3,300.00</strong></p>
</td>
</tr>
<tr style="height: 15pt;" height="20">
<td style="height: 15pt; border-top: medium none;" height="20">
<h3>Enterprise   Server</h3>
</td>
<td style="border-top: medium none; border-left: medium none; text-align: center;">2048 MB</td>
<td style="border-top: medium none; border-left: medium none; text-align: center;">80GB</td>
<td style="border-top: medium none; border-left: medium none;" align="right">
<p style="text-align: center;"><strong>PHP 6,500.00</strong></p>
</td>
</tr>
</tbody>
</table>
<p>*All Prices are VAT Exclusive</p>
<p><strong>BANDWIDTH COST (INBOUND): PHP 6.00/GB</strong> <strong> +VAT</strong> (i.e. uploading content to your server)</p>
<p><strong>BANDWIDTH COST (OUTBOUND):  PHP 15.00/GB +VAT </strong>(i.e. visitors to your website)</p>
<p><em><strong><span style="text-decoration: underline;">OPTIONAL</span> SERVER SETUP ASSISTANCE: Starts at Php 5,000.00+VAT</strong></em></p>
<p><strong>FOR MORE INFORMATION CONTACT US AT:</strong></p>
<p><em> </em></p>
<p><a href="http://www.eacomm.com/solutions" target="_blank"><strong>EACOMM Integrated Solutions Division</strong></a><br />
Telephone: +63 2 438 2986<br />
Email: <a href="mailto:solutions@eacomm.com">solutions@eacomm.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/374/managed-virtual-private-server-hosting/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2010 Summer Internship</title>
		<link>http://blog.eacomm.com/archives/371/2010-summer-internship</link>
		<comments>http://blog.eacomm.com/archives/371/2010-summer-internship#comments</comments>
		<pubDate>Tue, 09 Mar 2010 09:33:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Job Openings]]></category>

		<guid isPermaLink="false">http://blog.eacomm.com/?p=371</guid>
		<description><![CDATA[EACOMM is now accepting applicants for student interns/ojt&#8217;s for the following positions:
Graphic Designer/Photographer: We are currently looking for aspiring professional photographers and graphic designers looking to build on their portfolio by assisting us in various internally developed projects. Main tasks include web and print graphic design as well as off-site photography of artworks, sculptures, houses, [...]]]></description>
			<content:encoded><![CDATA[<p>EACOMM is now accepting applicants for student interns/ojt&#8217;s for the following positions:</p>
<p><strong>Graphic Designer/Photographer: </strong>We are currently looking for aspiring professional photographers and graphic designers looking to build on their portfolio by assisting us in various internally developed projects. Main tasks include web and print graphic design as well as off-site photography of artworks, sculptures, houses, and others. (2 positions available)</p>
<p><strong>Web Programmer</strong>: We are looking  for trainee web programmers familiar with PHP/MySQL and/or ASP.NET to work on various internal software application projects.  (4 positions available)</p>
<p><strong>Flash Programmer: </strong>Trainee familiar with flash action scripting to develop simple flash-based games. (1 position available)</p>
<p> Applicants should email their resumes to <a href="mailto:admin@eacomm.com">admin@eacomm.com</a> along with any relevant links/portfolios of previous works relevant to the position being applied for.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/371/2010-summer-internship/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
