<?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>TECHiE TALKS &#187; Apache</title>
	<atom:link href="http://www.icpep.org/category/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.icpep.org</link>
	<description>Just another techie stuff</description>
	<lastBuildDate>Fri, 10 Feb 2012 07:50:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Setting Up a MemCached Server</title>
		<link>http://www.icpep.org/setting-up-a-memcached-server/</link>
		<comments>http://www.icpep.org/setting-up-a-memcached-server/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 09:47:34 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows Hacks]]></category>
		<category><![CDATA[memcached]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=1555</guid>
		<description><![CDATA[image from www.memcached.org Based on their official website memcached is defined as: Free &#038; open source, high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load. Memcached is an in-memory key-value store for small chunks of arbitrary data (strings, objects) from results of database calls, API calls, or page rendering. Memcached is simple yet powerful. Its simple design promotes quick deployment, ease of development, and solves many [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img src="http://www.icpep.org/wp-content/uploads/2012/01/memcached_banner75-300x55.jpg" alt="memcached" title="memcached" width="300" height="55" class="aligncenter size-medium wp-image-1556" /><br /><center><em>image from www.memcached.org</em></center></p>
<p align="justify">Based on their official website <a href="http://memcached.org/" title="MemCached" target="_blank">memcached</a> is defined as:</p>
<blockquote><p>Free &#038; open source, high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load.</p>
<p>Memcached is an in-memory key-value store for small chunks of arbitrary data (strings, objects) from results of database calls, API calls, or page rendering.</p>
<p>Memcached is simple yet powerful. Its simple design promotes quick deployment, ease of development, and solves many problems facing large data caches. Its API is available for most popular languages.</p></blockquote>
<p>&mdash; memcached.org</p>
<h2 style="text-shadow:1px 0px 1px #000;font-weight:bolder;"><u>MemCached Server</u></h2>
<p align="justify">This is how I installed(<em>a simple installation</em>) my memcached server that can be accessed by a webserver on our local area network.  The server is running Ubuntu as its operating system.  <span id="highlight">Caution: The version on ubuntu&#8217;s repository could not be the latest version.  Refer to memcached&#8217;s website for the latest version.  If you want to install the latest version from the source you can refer to memcached&#8217;s <a href="http://code.google.com/p/memcached/wiki/NewInstallFromSource" title="Memcached's wiki page" target="_blank">wiki</a> page</span></p>
<p align="justify">Open synaptic package manager and install <span id="highlight">memcached</span> and <span id="highlight">php5-memcached</span>.  After the installation restart the webserver using the command:</p>
<div id="code">sudo apache2ctl restart</div>
</p>
<p>Start memcached by using the command:</p>
<p align="justify"><div id="code">/etc/init.d/memcached start</div></p>
<p>By default memcached is running on port <span id="highlight">11211</span> and is accessible by the machine with IP 127.0.0.1 which is the machine&#8217;s local IP address with <span id="highlight">64MB</span> memory allocation</p>
<p align="justify">To try if memcached is working use this simple PHP code</p>
<pre class="crayon-plain-tag"><code>&lt; ?php
$m = new Memcached();
$m-&gt;addServer('localhost', 11211);

$m-&gt;set('int', 99);
$m-&gt;set('string', 'a simple string');
$m-&gt;set('array', array(11, 12));
$m-&gt;set('object', new stdclass, time() + 300);

var_dump($m-&gt;get('int'));
var_dump($m-&gt;get('string'));
var_dump($m-&gt;get('array'));
var_dump($m-&gt;get('object'));
?&gt;</code></pre>
<p align="justify">Open the script on the browser.  Try opening the cli and telnet to memcached using the command:</p>
<p><div id="code">telnet 127.0.0.1 11211</div></p>
<p>The image below shows how the cli would look like after the command</p>
<p align="center"><img src="http://www.icpep.org/wp-content/uploads/2012/01/telnet-300x70.png" alt="telnet to memcached" title="telnet to memcached" width="300" height="70" class="aligncenter size-medium wp-image-1557" /></p>
<p align="justify">Check memcached&#8217;s status by using the command</p>
<div id="code">
stats
</div>
</p>
<p>We can get a cached value using the command:</p>
<p><div id="code">get string</div></p>
<p>It should return <span id="highlight">&#8220;a simple string&#8221;</span> as assigned on the script.</p>
<p>To explore more, commands can be seen on this page <a href="http://lzone.de/articles/memcached.htm" target="_blank"><em>http://lzone.de/articles/memcached.htm</em></a></p>
<p align="justify">To allow another machine (<em>local web server</em>) to store data on the memcached server we need to edit the configuration file using the command:</p>
<p><div id="code">
sudo nano /etc/memcached.conf
</div></p>
<p align="justify">In my case I changed the allotted memory to 256MB and allowed IP of 191.168.1.254 which is our windows webserver as seen on the image below:</p>
<p align="center"><a href="http://www.icpep.org/wp-content/uploads/2012/01/Screenshot-2.png" target="_blank"><img src="http://www.icpep.org/wp-content/uploads/2012/01/Screenshot-2-300x180.png" alt="memcached configuration" title="memcached configuration" width="300" height="180" class="aligncenter size-medium wp-image-1558" /></a></p>
<p>After the configuration I restarted memcached using the command:</p>
<p><div id="code">sudo /etc/init.d/memcached restart</div></p>
<h2 style="text-shadow:1px 0px 1px #000;font-weight:bolder;"><u>The Webserver (XAMPP)</u></h2>
<p align="justify">To quickly test the memcached server I used xampp portable version which can be downloaded on their official website <em>www.apachefriends.org</em>.</p>
<p align="justify">As stated earlier the webserver is already allowed to use the memcached server.  As an information memcached is a daemon which runs like the mysql server, so we need PHP to connect to the memcached server.</p>
<p align="justify"><ol>
<li>To start, download memcached on <a href="http://code.jellycan.com/memcached/" title="memcached windows " target="_blank">code.jellycan.com/memcached</a> which is win32 binary.
</li>
<li>After downloading extract the file (<em>recommended: C:\memcached</em>).  You should have the file <em>memcached.exe</em></li>
<li>
We can install memcached as a service on the command line using the command:</p>
<div id="code">C:\memcached\memcached.exe -d install</div>
</li>
<li>
Start memcached using the command:</p>
<div id="code">C:\memcached\memcached.exe -d start</div>
</li>
<li>
After running memcached we need to tie it with PHP using the <span id="highlight">php_memcached.dll</span>.  You should have this file on your PHP&#8217;s ext folder, if not download the file at these links <a href="http://downloads.php.net/pierre/" title="php_memcached.dll" target="_blank">http://downloads.php.net/pierre/</a>, <a href="http://www.pureformsolutions.com/pureform.wordpress.com/2008/06/17/php_memcache.dll" target="_blank">http://www.pureformsolutions.com/pureform.wordpress.com/2008/06/17/php_memcache.dll</a> or on our server: <a class='wpdm-popup' rel='colorbox' title='php_memcached.dll' href='http://www.icpep.org/?download=4' style="background:url('http://www.icpep.org/wp-content/plugins/download-manager/icon/download.png') no-repeat;padding:3px 12px 12px 28px;font:bold 10pt verdana;">php_memcached.dll.rar</a>
</li>
<li>
enable the use of php_memcached.dll by editing your php.ini and uncomment the line <span id="highlight">extension=php_memcache.dll</span> if it does not exist add this line.  After editing the file restart the webserver.
</li>
</ol>
<p>You can access the data on the memcached server by using the code below:</p>
<pre class="crayon-plain-tag"><code>&lt; ?php
        $memcache = new Memcache();
        if(!$memcache-&gt;connect('191.168.1.7', 11211))
                die(&quot;Couldn't connect to memcached!&quot;);

        $key=&quot;string&quot;;

        $result = $memcache-&gt;get($key);

        if($result)
        {
                echo &quot;$key is $result&quot;;
        }
        else
        {
            echo 'There is no data saved named '. $key;
        }
?&gt;</code></pre><p>
<p>You should have an output of <span id="highlight">&#8220;a simple string&#8221;</span>.  I hope this helped you set up the server.  Happy coding!</p>
<p>Sources:</p>
<p>http://pureform.wordpress.com/2008/01/10/installing-memcache-on-windows-for-php/</p>
<p>http://memcached.org</p>
<p>http://blogs.oracle.com/oswald/entry/cache_cache_cache_part_1</p>
<style type="text/css">li{text-align:justify;}</style>
<div id="seo_alrp_related"><h2>Posts Related to Setting Up a MemCached Server</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/fixing-apaches-error-could-not-reliably-determine-the-servers-fully-qualified-domain-name-using-127-0-1-1-for-servername-in-ubuntu/" rel="bookmark">Fixing Apache&#8217;s Error: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName in Ubuntu</a></h3><p>One of the server I am using is running ubuntu. I am installing memcached on the server and every time I restart the web server ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/from-apache-to-nginx/" rel="bookmark">From Apache to NginX</a></h3><p>After using Apache Webserver for 4 years I had no doubt of its simplicity and performance.  Reading several articles about the comparison of apache and ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/smb-swat-on-centos-5/" rel="bookmark">SMB Swat on CentOS 5</a></h3><p>&nbsp; Simple howto's when SWAT is not available after you install CentOS.  To start with here are some cli commands to use, [root@goldmine ~]# yum ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/mysql-reset-root-password/" rel="bookmark">MySQL Reset Root Password</a></h3><p>My friend forgot his mysql password and the database needs to be accessed by the root user.  My friend is running MySQL 5.1 and as ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/code-igniter-installation-and-first-run/" rel="bookmark">Code Igniter Installation and First Run</a></h3><p>Code Igniter is an PHP Application Development Framework - a toolkit for PHP developers. The main goal of Code Igniter is to enable developers to ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/setting-up-a-memcached-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing Apache&#8217;s Error: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName in Ubuntu</title>
		<link>http://www.icpep.org/fixing-apaches-error-could-not-reliably-determine-the-servers-fully-qualified-domain-name-using-127-0-1-1-for-servername-in-ubuntu/</link>
		<comments>http://www.icpep.org/fixing-apaches-error-could-not-reliably-determine-the-servers-fully-qualified-domain-name-using-127-0-1-1-for-servername-in-ubuntu/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 06:33:21 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=1548</guid>
		<description><![CDATA[One of the server I am using is running ubuntu. I am installing memcached on the server and every time I restart the web server I always have the error &#8220;Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName&#8221;. If you are having the same error then this post is for you. To solve the problem this is how I solved the problem. Open the cli and use the command to edit apache&#8217;s config file: [...]]]></description>
			<content:encoded><![CDATA[<p align="center">
<img src="http://www.icpep.org/wp-content/uploads/2012/01/Screenshot-1.png" alt="Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName" title="Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName" width="1043" height="52" class="aligncenter size-full wp-image-1549" />
</p>
<p align="justify">
One of the server I am using is running ubuntu.  I am installing memcached on the server and every time I restart the web server I always have the error &#8220;Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName&#8221;.  If you are having the same error then this post is for you.  To solve the problem this is how I solved the problem.
</p>
<p>Open the cli and use the command to edit apache&#8217;s config file:</p>
<p>
<div id="code">sudo gedit /etc/apache2/httpd.conf</div>
</p>
<p>The file is empty by default.  Add the line:</p>
<p>
<div id="code">ServerName localhost</div>
</p>
<p>Save the changes and restart the server:</p>
<p>
<div id="code">apache2ctl restart</div>
</p>
<p>I hope this solved the problem&#8230;  Happy coding!</p>
<p>&nbsp;</p>
<div id="seo_alrp_related"><h2>Posts Related to Fixing Apache's Error: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName in Ubuntu</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/setting-up-a-memcached-server/" rel="bookmark">Setting Up a MemCached Server</a></h3><p>image from www.memcached.org Based on their official website memcached is defined as: Free & open source, high-performance, distributed memory object caching system, generic in nature, ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/solved-ubuntu-wont-login/" rel="bookmark">[Solved] Ubuntu Won&#8217;t Login</a></h3><p>I am a loyal user of Thunderbird and ubuntu 10.04 is by default using evolution for its mail client. So what I did was uninstalled ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/from-apache-to-nginx/" rel="bookmark">From Apache to NginX</a></h3><p>After using Apache Webserver for 4 years I had no doubt of its simplicity and performance.  Reading several articles about the comparison of apache and ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/pdo-database-extensions-error/" rel="bookmark">PDO Database Extensions Error</a></h3><p>&nbsp; &nbsp; I installed Apache, MySQL and PHP on windows 7.  I tried to install drupal version 7.9 and went through an error as shown ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/phpmyadmin-importing-large-data/" rel="bookmark">PHPMyAdmin Importing Large Data</a></h3><p>By Default phpmyadmin can import data on your mysql database up to 2MB of data and beyond that will be an error.  This has been ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/fixing-apaches-error-could-not-reliably-determine-the-servers-fully-qualified-domain-name-using-127-0-1-1-for-servername-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHPMyAdmin Importing Large Data</title>
		<link>http://www.icpep.org/phpmyadmin-importing-large-data/</link>
		<comments>http://www.icpep.org/phpmyadmin-importing-large-data/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 07:06:41 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ap]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=970</guid>
		<description><![CDATA[By Default phpmyadmin can import data on your mysql database up to 2MB of data and beyond that will be an error.  This has been a big problem  by most webmasters and sometimes this can be a barrier to stop improving the sites.  Before I kept on searching what to use to import a large data on my MySQL database and all I can see is BigDump.  It is a software used for large and very large MySQL Dumps which [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-971 aligncenter" title="logo_phpmyadmin" src="http://www.icpep.org/wp-content/uploads/2009/11/logo_phpmyadmin.gif" alt="logo_phpmyadmin" width="200" height="180" /></p>
<p style="text-align: justify;">By Default phpmyadmin can import data on your mysql database up to 2MB of data and beyond that will be an error.  This has been a big problem  by most webmasters and sometimes this can be a barrier to stop improving the sites.  Before I kept on searching what to use to import a large data on my MySQL database and all I can see is BigDump.  It is a software used for large and very large MySQL Dumps which is also an option to import large data on your database.</p>
<p style="text-align: justify;">If you find BigDump a pain in the head then another way to solve the problem is to edit your php.ini file.  All you need to do is open your php.ini file and edit the line</p>
<div style="border: 2px solid #cecece; padding: 5px; background: #f1f1f1 none repeat scroll 0% 0%; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous;">upload_max_filesize = 2M</div>
<p>Setting 2M to a larger size will fix the problem.  One problem with this is that it will affect the web server&#8217;s runtime limit and could throw an error if you dump a very large data.</p>
<div id="seo_alrp_related"><h2>Posts Related to PHPMyAdmin Importing Large Data</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/mysql-duplicate-error/" rel="bookmark">Mysql Duplicate Error</a></h3><p>I created a web application that managers collected links.  The web application was called duplicate checker where premium links collected are being stored in a ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/change-a-string-or-character-in-mysql/" rel="bookmark">Change a String or Character in MySQL</a></h3><p>Knowing the right MySQL statement is the most important part in having thousands of data in your database, one false move and you can't undo ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/code-igniter-query/" rel="bookmark">Code Igniter Query</a></h3><p>Code Igniter is one of the best PHP framework available today.  It is free to download and user guide can be found together with the ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/from-apache-to-nginx/" rel="bookmark">From Apache to NginX</a></h3><p>After using Apache Webserver for 4 years I had no doubt of its simplicity and performance.  Reading several articles about the comparison of apache and ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/pdo-database-extensions-error/" rel="bookmark">PDO Database Extensions Error</a></h3><p>&nbsp; &nbsp; I installed Apache, MySQL and PHP on windows 7.  I tried to install drupal version 7.9 and went through an error as shown ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/phpmyadmin-importing-large-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache Allow htaccess</title>
		<link>http://www.icpep.org/apache-allow-htaccess/</link>
		<comments>http://www.icpep.org/apache-allow-htaccess/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 05:24:41 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Apache]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=955</guid>
		<description><![CDATA[Most web developers use a &#8220;third party&#8221; web server which comes in a package such as WAMP or XAMPP resulting to miss configuration of the web server to perform several capabilities.  One of which is allowing htaccess configuration to take over the webserver&#8217;s main configuration.  Even apache itself usage of htaccess is disabled by default and configuring the server is needed to allow htaccess on your server.  Below is how to allow htaccess on your web server: Open your Apache [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-956   aligncenter" title="htaccess" src="http://www.icpep.org/wp-content/uploads/2009/11/htaccess.gif" alt="htaccess" width="448" height="336" /></p>
<p style="text-align: justify;">Most web developers use a &#8220;third party&#8221; web server which comes in a package such as <strong>WAMP</strong> or<strong><em> XAMPP </em></strong>resulting to miss configuration of the web server to perform several capabilities.  One of which is allowing htaccess configuration to take over the webserver&#8217;s main configuration.  Even apache itself usage of htaccess is disabled by default and configuring the server is needed to allow htaccess on your server.  Below is how to allow htaccess on your web server:<br />
<span id="more-955"></span><br />
Open your Apache httpd.conf Configuration File and &#8220;uncomment&#8221; the line</p>
<div style="border:2px solid #CECECE;padding:5px;background:#F1F1F1;">#LoadModule rewrite_module modules/mod_rewrite.so</div>
<p>You can &#8220;uncomment&#8221; it by removing the number sign &#8220;#&#8221; resulting to</p>
<div style="border:2px solid #CECECE;padding:5px;background:#F1F1F1;">LoadModule rewrite_module modules/mod_rewrite.so</div>
<p>After removing the number sign you need to change the AllowOverride directive, the default configuration is:</p>
<div style="border:2px solid #CECECE;padding:5px;background:#F1F1F1;">&lt;/Directory&gt;<br />
Options FollowSymLinks<br />
AllowOverride None<br />
Order deny,allow<br />
Deny from all<br />
Satisfy all<br />
&lt;/Directory&gt;</div>
<p>It should be changed to :</p>
<div style="border:2px solid #CECECE;padding:5px;background:#F1F1F1;">&lt;Directory /&gt;<br />
Options FollowSymLinks<br />
AllowOverride All<br />
Order deny,allow<br />
Deny from all<br />
Satisfy all<br />
&lt;/Directory&gt;</div>
<p>You also need to change the line</p>
<div style="border:2px solid #CECECE;padding:5px;background:#F1F1F1;">AllowOverride None</div>
<p>to</p>
<div style="border:2px solid #CECECE;padding:5px;background:#F1F1F1;">AllowOverride All</div>
</p>
<p style="text-align: justify;">this can be found where you set your DocumentRoot where in my case is set to (<em>&lt;/Directory &#8220;D:/HTDOCS&#8221;&gt;</em>).  After configuring Apache you need to restart the server for the changes to take effect.</p>
<div id="seo_alrp_related"><h2>Posts Related to Apache Allow htaccess</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/from-apache-to-nginx/" rel="bookmark">From Apache to NginX</a></h3><p>After using Apache Webserver for 4 years I had no doubt of its simplicity and performance.  Reading several articles about the comparison of apache and ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/fixing-apaches-error-could-not-reliably-determine-the-servers-fully-qualified-domain-name-using-127-0-1-1-for-servername-in-ubuntu/" rel="bookmark">Fixing Apache&#8217;s Error: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName in Ubuntu</a></h3><p>One of the server I am using is running ubuntu. I am installing memcached on the server and every time I restart the web server ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/php-curl/" rel="bookmark">PHP Curl</a></h3><p>If you are a web developer and having problems on Installing PHP Curl on Apache with PHP installed on Windows Operating System, below is my ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/changing-the-owner-of-your-docroot-lamp/" rel="bookmark">Changing the Owner of Your Docroot (LAMP)</a></h3><p>In a LAMP server when you upload files in your htdocs folder by default  the owner of the files is root or the account you ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/setting-up-a-memcached-server/" rel="bookmark">Setting Up a MemCached Server</a></h3><p>image from www.memcached.org Based on their official website memcached is defined as: Free & open source, high-performance, distributed memory object caching system, generic in nature, ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/apache-allow-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

