<?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; tutorial</title>
	<atom:link href="http://blog.eacomm.com/archives/tag/tutorial/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>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>Setting Up Google Adsense for Domains in Dreamhost</title>
		<link>http://blog.eacomm.com/archives/121/setting-up-google-adsense-for-domains-in-dreamhost</link>
		<comments>http://blog.eacomm.com/archives/121/setting-up-google-adsense-for-domains-in-dreamhost#comments</comments>
		<pubDate>Thu, 19 Feb 2009 04:16:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[adsense for domains]]></category>
		<category><![CDATA[adsense tutorial]]></category>
		<category><![CDATA[dreamhost]]></category>
		<category><![CDATA[google adsense]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web hosting]]></category>

		<guid isPermaLink="false">http://blog.eacomm.com/archives/121</guid>
		<description><![CDATA[For those of you who have idle domains parked/hosted with Dreamhost, below is a short walk-through on how to use Google&#8217;s Adsense for Domains on your Dreamhost domain(s).

Go to Domains -&#62; Manage Domains and locate the domain you want to use Adsense for Domains on. On the Web Hosting Column (the 3rd from left)..click on [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you who have idle domains parked/hosted with <a href="http://www.dreamhost.com/r.cgi?26915">Dreamhost</a>, below is a short walk-through on how to use <a href="https://www.google.com/adsense/support/bin/topic.py?topic=14746">Google&#8217;s Adsense for Domains</a> on your Dreamhost domain(s).</p>
<ol>
<li>Go to<strong> Domains -&gt; Manage Domains</strong> and locate the domain you want to use Adsense for Domains on. On the <strong>Web Hosting </strong>Column (the 3rd from left)..click on DELETE for the selected domain. If you don&#8217;t do this, the DNS settings for the domain will be &#8220;locked&#8221; by Dreamhost and you&#8217;ll get an error saying that your entries are invalid or have a duplicate.</li>
<li> Next, click on <strong>DNS </strong>on the first column under the domain name of you site. If you did the first step correctly there shouldn&#8217;t be a lot of entries left for &#8220;Non-editable DreamHost DNS records for yourdomain.com&#8221; section.</li>
<li>Make sure the Nameservers are pointing to Dreamhost (ns1.dreamhost.com, ns2.dreamhost.com, ns3.dreamhost.com).</li>
<li>Next, on the custom DNS section, type&#8221;www&#8221; for the name, then select &#8220;CNAME&#8221; for the type and for the &#8220;value&#8221; put in <strong>pub-xxxxxxxxx.afd.ghs.google.com.</strong> where pub-xxxxxxxxx is your unique Adsense for Domains ID. (you&#8217;ll find this on the Adsense Setup-Adsense for Domains in google.com/adsense).</li>
<li>Once done with that it&#8217;s time to put in four (4) A records pointing to the following IP Addresses with the &#8220;name field&#8221; left as BLANK (as oppose to the walkthrough here: https://www.google.com/adsense/support/bin/answer.py?answer=76049 which says you need to put an &#8220;@&#8221; value:</li>
<table border="1" cellpadding="1" cellspacing="3">
<tr>
<td width="33%"><strong>Host Name/Alias</strong></td>
<td width="33%"><strong>Record Type</strong></td>
<td width="33%"><strong>Value/Destination</strong></td>
</tr>
<tr>
<td width="33%">&lt;LEAVE BLANK!&gt;</td>
<td width="33%">A (address)</td>
<td width="33%">216.239.32.21</td>
</tr>
<tr>
<td width="33%">&lt;LEAVE BLANK!&gt;</td>
<td width="33%">A (address)</td>
<td width="33%">216.239.34.21</td>
</tr>
<tr>
<td width="33%">&lt;LEAVE BLANK!&gt;</td>
<td width="33%">A (address)</td>
<td width="33%">216.239.36.21</td>
</tr>
<tr>
<td width="33%">&lt;LEAVE BLANK!&gt;</td>
<td width="33%">A (address)</td>
<td width="33%">216.239.38.21</td>
</tr>
</table>
<li>After step 5 go back to your Google Adsense account and click &#8220;Request Ownership Verification&#8221; on the Actions drop-down.</li>
</ol>
<p>That&#8217;s about it! Just wait a few hours and your site should be verified and ready for customization via <a href="http://adsense.google.com">Google Adsense</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/121/setting-up-google-adsense-for-domains-in-dreamhost/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WAMP Installation Guide</title>
		<link>http://blog.eacomm.com/archives/59/wamp-installation-guide</link>
		<comments>http://blog.eacomm.com/archives/59/wamp-installation-guide#comments</comments>
		<pubDate>Wed, 12 Sep 2007 10:10:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wamp]]></category>
		<category><![CDATA[web programming]]></category>
		<category><![CDATA[windows]]></category>

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


WAMP Installation Guide


WAMP (Windows-Apache-mySQL-PHP) is an all-in-one packages which installs
the basic programs you will need to get a localhost running and to be able to
build and run PHP scripts.
This guide will walk you through installing a WAMP package for the first time.


Step 01: Open WAMP website.


Step 02: Open the DOWNLOADS page.


Step 03: Choose version to [...]]]></description>
			<content:encoded><![CDATA[<table border="0" width="500" align="center">
<tbody>
<tr>
<td class="head"><a name="top">WAMP Installation Guide</a></td>
</tr>
<tr>
<td class="step" colspan="2">WAMP (Windows-Apache-mySQL-PHP) is an all-in-one packages which installs</p>
<p>the basic programs you will need to get a localhost running and to be able to</p>
<p>build and run PHP scripts.</p>
<p>This guide will walk you through installing a WAMP package for the first time.</td>
</tr>
<tr>
<td><a class="link" href="#01">Step 01: Open WAMP website.</a></td>
</tr>
<tr>
<td><a class="link" href="#02">Step 02: Open the DOWNLOADS page.</a></td>
</tr>
<tr>
<td><a class="link" href="#03">Step 03: Choose version to install.</a><br />
*note: Ask supervisor which version to use.</td>
</tr>
<tr>
<td><a class="link" href="#04">Step 04: Installing older version.</a></td>
</tr>
<tr>
<td><a class="link" href="#05">Step 05: Installing older version: Re-direction to download page.</a></td>
</tr>
<tr>
<td><a class="link" href="#06">Step 06: Installing older version: Checking which WAMP version to use.</a></td>
</tr>
<tr>
<td><a class="link" href="#07">Step 07: Choosing download mirror and downloading.</a></td>
</tr>
<tr>
<td><a class="link" href="#08">Step 08: Run the installer file.</a></td>
</tr>
<tr>
<td><a class="link" href="#09">Step 09: Run the installer file: License Agreement. </a></td>
</tr>
<tr>
<td><a class="link" href="#10">Step 10: Run the installer file: Saving Directory </a></td>
</tr>
<tr>
<td><a class="link" href="#11">Step 11: Run the installer file: Creating Start Menu Folder</a></td>
</tr>
<tr>
<td><a class="link" href="#12">Step 12: Run the installer file: Auto-launch WAMP on Startup</a></td>
</tr>
<tr>
<td><a class="link" href="#13">Step 13: Run the installer file: Confirmation of Installation Settings</a></td>
</tr>
<tr>
<td><a class="link" href="#14">Step 14: Run the installer file: Saving Document Root Folder</a></td>
</tr>
<tr>
<td><a class="link" href="#15">Step 15: Run the installer file: Default Browser and Finishing the Installation</a></td>
</tr>
<tr>
<td><a class="link" href="#16">Step 16: Manually Starting WAMP Server</a></td>
</tr>
<tr>
<td><a class="link" href="#17">Step 17: Testing the LOCALHOST</a></td>
</tr>
<tr>
<td><a class="link" href="#18">NOTE</a></td>
</tr>
<tr>
<td class="step"><a class="step_num" name="01"> Step 01: </a></p>
<p>Open the WAMP website at <a href="http://www.wampserver.com/en/index.php" target="_blank">http://www.wampserver.com/en/index.php. </a></p>
<p>You should be able to see a page like this:</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image036.jpg" border="0" alt="" width="588" height="439" /></td>
</tr>
<tr>
<td align="center"><a class="step_num" href="#top">[Back to Top]</a></td>
</tr>
<tr>
<td class="step"><a class="step_num" name="02"> Step 02: </a></p>
<p>Click the DOWNLOADS link.</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image037.jpg" border="0" alt="" width="588" height="441" /></td>
</tr>
<tr>
<td align="center"><a class="step_num" href="#top">[Back to Top]</a></td>
</tr>
<tr>
<td class="step"><a class="step_num" name="03"> Step 03: </a></p>
<p>Ask your OJT supervisor which versions of mySQL and PHP would you be using.</p>
<p>If it is ok to use the newest available version of WAMP then click the DOWNLOAD link to install.</p>
<p>Proceed to <a class="link" href="#07">Step 07</a> if you would do this step.</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image038.jpg" border="0" alt="" width="588" height="441" /></td>
</tr>
<tr>
<td align="center"><a class="step_num" href="#top">[Back to Top]</a></td>
</tr>
<tr>
<td class="step"><a class="step_num" name="04"> Step 04: </a></p>
<p>If you would require a version of WAMP with older version/s of either Php, mySQL, or phpmyAdmin click on the</p>
<p>PREVIOUS VERSIONS link.</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image039.jpg" border="0" alt="" width="588" height="441" /></td>
</tr>
<tr>
<td align="center"><a class="step_num" href="#top">[Back to Top]</a></td>
</tr>
<tr>
<td class="step"><a class="step_num" name="05"> Step 05: </a></p>
<p>You will be directed to the download page of all the older versions of WAMP, such as below.</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image040.jpg" border="0" alt="" width="588" height="441" /></td>
</tr>
<tr>
<td class="step">Scroll down and click the VIEW OLDER RELEASES link.</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image041.jpg" border="0" alt="" width="588" height="441" /></td>
</tr>
<tr>
<td align="center"><a class="step_num" href="#top">[Back to Top]</a></td>
</tr>
<tr>
<td class="step"><a class="step_num" name="06"> Step 06: </a></p>
<p>You will then be directed to a page such as below.</p>
<p>To check which version of WAMP has the versions of the programs you need,</p>
<p>scroll down and click on any of the NOTES links in the page, as illustrated below.</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image042.jpg" border="0" alt="" width="588" height="441" /></td>
</tr>
<tr>
<td class="step">It will direct you to a page such as below. Scroll down to search for the appropriate version that suits your requirements.</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image043.jpg" border="0" alt="" width="588" height="441" /></td>
</tr>
<tr>
<td class="step">Return to the previous page after taking note of what version you will use, then select the version you would need to use.</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image044.jpg" border="0" alt="" width="577" height="432" /></td>
</tr>
<tr>
<td align="center"><a class="step_num" href="#top">[Back to Top]</a></td>
</tr>
<tr>
<td class="step"><a class="step_num" name="07"> Step 07: </a></p>
<p>Whether or not you would need to download the newest version of WAMP, you would be directed to a page where you</p>
<p>would select mirrors for the download. You could choose any mirror you would like but personally I would advice choosing either</p>
<p>Japan or Taiwan as a mirror, or any Asian country for that matter (they?re closer to the Philippines).</p>
<p>You should be able to see a page like this:</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image045.jpg" border="0" alt="" width="577" height="432" /></td>
</tr>
<tr>
<td class="step">After choosing a mirror, save the file to your computer.</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image046.jpg" border="0" alt="" width="577" height="432" /></td>
</tr>
<tr>
<td align="center"><a class="step_num" href="#top">[Back to Top]</a></td>
</tr>
<tr>
<td class="step"><a class="step_num" name="08"> Step 08: </a></p>
<p>Once download finishes, run the installer file.</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image023.jpg" border="0" alt="" width="501" height="390" /></td>
</tr>
<tr>
<td align="center"><a class="step_num" href="#top">[Back to Top]</a></td>
</tr>
<tr>
<td class="step"><a class="step_num" name="09"> Step 09: </a></p>
<p>In the license agreement click [I accept the agreement], then click next.</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image024.jpg" border="0" alt="" width="501" height="390" /></td>
</tr>
<tr>
<td align="center"><a class="step_num" href="#top">[Back to Top]</a></td>
</tr>
<tr>
<td class="step"><a class="step_num" name="10"> Step 10: </a></p>
<p>Select the directory where you would like to install WAMP.</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image025.jpg" border="0" alt="" width="501" height="390" /></td>
</tr>
<tr>
<td align="center"><a class="step_num" href="#top">[Back to Top]</a></td>
</tr>
<tr>
<td class="step"><a class="step_num" name="11"> Step 11: </a></p>
<p>Select the start menu folder where you would like to place WAMP?s shortcuts.</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image026.jpg" border="0" alt="" width="501" height="390" /></td>
</tr>
<tr>
<td align="center"><a class="step_num" href="#top">[Back to Top]</a></td>
</tr>
<tr>
<td class="step"><a class="step_num" name="12"> Step 12: </a></p>
<p>In the additional tasks you may select if WAMP would be loaded on startup or no.</p>
<p>If its most likely that you would be programming PHP as soon as you start your computer (most likely yes)</p>
<p>then I suggest you select the checkbox. Otherwise you may opt to leave it unchecked and turn on the WAMP server manually.</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image027.jpg" border="0" alt="" width="501" height="390" /></td>
</tr>
<tr>
<td align="center"><a class="step_num" href="#top">[Back to Top]</a></td>
</tr>
<tr>
<td class="step"><a class="step_num" name="13"> Step 13: </a></p>
<p>This is the confirmation screen of the options you have selected.</p>
<p>Click back to modify your install settings or click next to start the installation.</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image028.jpg" border="0" alt="" width="501" height="390" /></td>
</tr>
<tr>
<td align="center"><a class="step_num" href="#top">[Back to Top]</a></td>
</tr>
<tr>
<td class="step"><a class="step_num" name="14"> Step 14: </a></p>
<p>Some time midway into the installation a window will pop-up asking for the directory where to save the document root folder.</p>
<p>It is recommended that you leave it as it is and click ok to continue the installation.</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image029.jpg" border="0" alt="" width="501" height="390" /></td>
</tr>
<tr>
<td align="center"><a class="step_num" href="#top">[Back to Top]</a></td>
</tr>
<tr>
<td class="step"><a class="step_num" name="15"> Step 15: </a></p>
<p>After the said pop-up another window will appear asking for you default browser.</p>
<p>If you have no preference for browsers just hit Open.</p>
<p>If not search for the .exe file of your preferred browser then click Open to continue the installation.</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image030.jpg" border="0" alt="" width="563" height="419" /></td>
</tr>
<tr>
<td class="step">Once the installation is finished, click finish.</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image031.jpg" border="0" alt="" width="501" height="390" /></td>
</tr>
<tr>
<td align="center"><a class="step_num" href="#top">[Back to Top]</a></td>
</tr>
<tr>
<td class="step"><a class="step_num" name="16"> Step 16: </a></p>
<p>To manually start the WAMP server, click Start&gt;Programs&gt;WampServer or [name you assigned in <a class="link" href="#15">Step 15</a>] &gt;start WampServer.</p>
<p>This is illustrated below:</td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image047.jpg" border="0" alt="" width="594" height="445" /></td>
</tr>
<tr>
<td align="center"><a class="step_num" href="#top">[Back to Top]</a></td>
</tr>
<tr>
<td class="step"><a class="step_num" name="17"> Step 17: </a></p>
<p>Open your preferred browser and type in the address bar LOCALHOST.</p>
<p>It should display the WAMP homepage like below, signifying a successful installation.</p>
<p>Click this link to try launching the localhost &gt; <a href="http://localhost/"> http://localhost </a></td>
</tr>
<tr>
<td align="center"><img src="http://eacomm.com/support/manuals/wamp_install/images/image048.jpg" border="0" alt="" width="600" height="450" /></td>
</tr>
<tr>
<td align="center"><a class="step_num" href="#top">[Back to Top]</a></td>
</tr>
<tr>
<td class="step"><a class="step_num" name="18"> NOTE: </a></p>
<p>Always remember to enable the WAMP server (if it isn&#8217;t already enabled) as illustrated in <a class="link" href="#16">Step 16</a> whenever</p>
<p>you want to test any page in the localhost.</td>
</tr>
<tr>
<td align="center"><a class="step_num" href="#top">[Back to Top]</a></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://blog.eacomm.com/archives/59/wamp-installation-guide/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
