<?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>Wordpress API &#187; Apache</title>
	<atom:link href="http://wordpressapi.com/category/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://wordpressapi.com</link>
	<description>Wordpress Tutorials, Tips, Code, Hacks, Themes, plugin, Developer Code book -Wordpress Code, Themes, Plugins, Tips, Tutorials, News, Releases, Designs, Hacks, Tricks, Blog</description>
	<lastBuildDate>Wed, 25 Jan 2012 18:48:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to remove the AuthType Basic</title>
		<link>http://wordpressapi.com/2011/02/28/remove-authtype-basic/</link>
		<comments>http://wordpressapi.com/2011/02/28/remove-authtype-basic/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 19:58:37 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[apache configuration]]></category>
		<category><![CDATA[auth]]></category>
		<category><![CDATA[AuthName]]></category>
		<category><![CDATA[AuthType]]></category>
		<category><![CDATA[AuthUserFile]]></category>
		<category><![CDATA[configuration file]]></category>
		<category><![CDATA[Directory]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[passwd]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Satisfy]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[web authentication]]></category>

		<guid isPermaLink="false">http://wordpressapi.com/?p=6020</guid>
		<description><![CDATA[http://wordpressapi.com/2011/02/28/remove-authtype-basic/For putting the web authentication we always use the .htaccess or apache configuration file. For removing the web auth from folder you need put following code in .htaccess file. without directory use the following code. #AuthType Basic #AuthName &#8220;By Invitation &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2011/02/28/remove-authtype-basic/<p>For putting the web authentication we always use the .htaccess or apache configuration file. For removing the web auth from folder you need put following code in .htaccess file.</p>
<pre class="brush: php; title: ; notranslate">
&lt;Directory /var/www/html/&gt;
#AuthType Basic
#AuthName &quot;By Invitation Only&quot;
#AuthUserFile /etc/httpd/passwd/passwords
#Require user wpapi
#Require valid-user
&lt;/Directory&gt;

&lt;Directory /var/www/html/&gt;
AuthType None
Require all granted
Satisfy Any
&lt;/Directory&gt;
</pre>
<p>without directory use the following code.</p>
<p>#AuthType Basic<br />
#AuthName &#8220;By Invitation Only&#8221;<br />
#AuthUserFile /etc/httpd/passwd/passwords<br />
#Require user wpapi<br />
#Require valid-user</p>
<p>AuthType None<br />
Require all granted<br />
Satisfy Any</p>
<p><a rel="attachment wp-att-6548" href="http://wordpressapi.com/2011/02/28/remove-authtype-basic/how-to-remove-the-authtype-basic/"><img class="alignnone size-full wp-image-6548" title="How to remove the AuthType Basic" src="http://images.wordpressapi.com/How-to-remove-the-AuthType-Basic.png" alt="" width="325" height="279" /></a></p>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2011/02/28/remove-authtype-basic/" title="apache require all granted usefull">apache require all granted usefull</a></li><li><a href="http://wordpressapi.com/2011/02/28/remove-authtype-basic/" title="authtype none satisfy any">authtype none satisfy any</a></li><li><a href="http://wordpressapi.com/2011/02/28/remove-authtype-basic/" title="authtype nonerequire all granted">authtype nonerequire all granted</a></li><li><a href="http://wordpressapi.com/2011/02/28/remove-authtype-basic/" title="authuserfile amazon ec2">authuserfile amazon ec2</a></li><li><a href="http://wordpressapi.com/2011/02/28/remove-authtype-basic/" title="jquery upload authtype">jquery upload authtype</a></li><li><a href="http://wordpressapi.com/2011/02/28/remove-authtype-basic/" title="remove authtype basic">remove authtype basic</a></li><li><a href="http://wordpressapi.com/2011/02/28/remove-authtype-basic/" title="wordpres auth user file">wordpres auth user file</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2011/02/28/remove-authtype-basic/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to protect your images directly accessing through server by apache</title>
		<link>http://wordpressapi.com/2010/12/06/protect-images-accessing-server-apache/</link>
		<comments>http://wordpressapi.com/2010/12/06/protect-images-accessing-server-apache/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 20:15:38 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://images.wordpressapi.com/?p=5534</guid>
		<description><![CDATA[http://wordpressapi.com/2010/12/06/protect-images-accessing-server-apache/To protect your images or media file you should use apache rewrite rules. To protect your images or other files from being linked or used on another website. Due the this issue your images may be used by many sites. &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2010/12/06/protect-images-accessing-server-apache/<p>To protect your images or media file you should use apache rewrite rules. To protect your images or other files from being linked or used on another website. Due the this issue your images may be used by many sites.</p>
<div id="attachment_5535" class="wp-caption alignnone<img class="size-full wp-image-5535" title="How to protect your images directly accessing through server by apache" src="http://images.wordpressapi.com/restrict-access-of-images.gif" alt="How to protect your images directly accessing through server by apache" width="250" height="245" /><p class="wp-caption-text">How to protect your images directly accessing through server by apache</p></div>
<p>The Apache Server&#8217;s Mod Rewrite Engine can examine the name of the document requesting a file of a particular type. If the URL of the page requesting the image file is from an allowed  domain, display the image. Otherwise, return a broken image.</p>
<p>There are many people who try to use your website images. That will cut your bandwidth so using this code is good idea.</p>
<p>You can use following apache code in apche config file or put following code in your .htaccess file.</p>
<pre class="brush: php; title: ; notranslate">
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://images.wordpressapi.com/.*$     [NC]
RewriteCond %{HTTP_REFERER} !^http://www.wordpressapi.com/files/.*$ [NC]
RewriteRule .*\.jpg$
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://images.wordpressapi.com/.*$     [NC]
RewriteCond %{HTTP_REFERER} !^http://www.wordpressapi.com/files/.*$ [NC]
RewriteRule .*\.jpeg$
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://images.wordpressapi.com/.*$     [NC]
RewriteCond %{HTTP_REFERER} !^http://www.wordpressapi.com/files/.*$ [NC]
RewriteRule .*\.png$
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://images.wordpressapi.com/.*$     [NC]
RewriteCond %{HTTP_REFERER} !^http://www.wordpressapi.com/files/.*$ [NC]
RewriteRule .*\.gif$
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]
</pre>
<p>Second thing you should do. you should create the dummy index.html file and put in your images folder for so any visitor will not see the directory listing of images.</p>
<p>If you use above code then when other domain try to see or use the your images then they will see the following error message.</p>
<p>it will result in a Forbidden error.<br />
Still if you are having any issue or question then write to me.</p>
<p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2010/12/06/protect-images-accessing-server-apache/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>How to configure haproxy load balancing on amazon ec2</title>
		<link>http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/</link>
		<comments>http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 17:45:35 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[Amazon cloud]]></category>
		<category><![CDATA[amazon EC2]]></category>
		<category><![CDATA[haproxy]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[load balancing]]></category>

		<guid isPermaLink="false">http://images.wordpressapi.com/?p=5458</guid>
		<description><![CDATA[http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/Many people take amazon EC2 cloud hosting. Amazon does gives the load balancer for application load balancing. But Amazon load balancer is not that much good. Amazon load balancer is not working on hardware or software base. That balancer just &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/<p>Many people take amazon EC2 cloud hosting. Amazon does gives the load balancer for application load balancing. But Amazon load balancer is not that much good. Amazon load balancer is not working on hardware or software base. That balancer just sending request to server one by one. Many people confused how to configure load balancer on Amazon EC2.</p>
<p>Here I am going to give you detail instructions about setting up the HaProxy load balancer on Amazon EC2.</p>
<p>What is Haproxy?</p>
<p><a name="desc">HAProxy is a free, <strong><em>very</em></strong> fast and reliable solution offering </a><a href="http://en.wikipedia.org/wiki/High_availability">high availability</a>, 	    <a href="http://en.wikipedia.org/wiki/Load_balancer">load balancing</a>, and 	    proxying for TCP and HTTP-based applications. It is particularly suited for web 	    sites crawling under very high loads while needing persistence or Layer7 	    processing. Supporting <strong>tens of thousands</strong> of connections is clearly 	    realistic with todays hardware. Its mode of operation makes its integration 	    into existing architectures very easy and riskless.</p>
<p><img class="alignnone size-full wp-image-5459" title="haproxy-amazon-ec2" src="http://images.wordpressapi.com/haproxy-amazon-ec2.png" alt="" width="363" height="290" /></p>
<p>For Haproxy load balancing I recommend to create the micro instance first. Then login to micro instance and install haproxy on that machine. I taken the Centos 5.0 virgin os. Use following command for install the haproxy.</p>
<p>#yum install haproxy</p>
<p>Then Open the haproxy config file.</p>
<p># vi /etc/haproxy.cfg</p>
<p>For detail configuration you should read the Haproxy config documentation.</p>
<p><a href="http://haproxy.1wt.eu/download/1.3/doc/configuration.txt" target="_blank">http://haproxy.1wt.eu/download/1.3/doc/configuration.txt</a></p>
<p>Haproxy&#8217;s default load balancing style is roundrobin. Which is trusted and good. With this load balancing I am serving around two million pages daily. Means I am handling 6 to 7 million requests per day. I am not having any issues.</p>
<p>I used the three backend server for delivery of my application and one server for serving the static data which is having images and js and css and application files.</p>
<p>Here is my configuration file</p>
<pre class="brush: php; title: ; notranslate">

global
 maxconn     4096 # Total Max Connections. This is dependent on ulimit
 daemon
 nbproc      4 # Number of processing cores. Dual Dual-core Opteron is 4 cores for example.

#---------------------------------------------------------------------
# common defaults that all the 'listen' and 'backend' sections will
# use if not designated in their block
#---------------------------------------------------------------------
defaults
 mode        http
 log         global
 option      dontlognull
 option      httpclose
 option      httplog
 option      forwardfor
 option      redispatch
 timeout connect 10000 # default 10 second time out if a backend is not found
 timeout client 300000
 timeout server 300000
 maxconn     60000
 retries     3

#---------------------------------------------------------------------
# main frontend which proxys to the backends
#---------------------------------------------------------------------
#frontend  main *:80
frontend http-in
 bind :80
 acl url_static       path_beg       -i /static /images /javascript /stylesheets
 acl url_static       path_end       -i .jpg .gif .png .css .js
 acl url_stats        path_beg    /haproxy-stats
 use_backend        be_stats    if url_stats

 use_backend static          if url_static
 default_backend             app

#-------------------------------------------------
#back-end statistics section
#----------------------------------------------------------------
backend be_stats
 stats uri /haproxy-stats
#    stats show-node

#---------------------------------------------------------------------
# static backend for serving up images, stylesheets and such
#---------------------------------------------------------------------
backend static
 balance     roundrobin
 server      static 10.211.164.138:80 check
 #server      static 10.211.185.111:80 check

#---------------------------------------------------------------------
# round robin balancing between the various backends
#---------------------------------------------------------------------
backend app
 balance     roundrobin
 server  app1 10.214.284.241:80 check
 server  app2 10.208.168.131:80 check
 server  app3 10.212.158.126:80 check
</pre>
<p>You can use the above code in haproxy.cfg file. You just need to change the IP address which are listed under backend static and backend app section. You just put your static server(amazon EC2 instance&#8217;s internal IP address).</p>
<p>You should use internal IP address of server because that will reduce the bandwidth uses of Amazon EC2 server. Do not use the public IP address for load balance because that will cost you.</p>
<p>Put application database and application files on all the server. Point your domain to your load balancer machine&#8217;s Public IP address.</p>
<p>Let say your application is running on following domain.</p>
<p>www.YOURDOMAIN.COM &#8211; point to Load balancer macine.</p>
<p>Open your all application and static server&#8217;s apache configuration file. put following entry in that file.</p>
<pre class="brush: php; title: ; notranslate">

&lt;VirtualHost *:80&gt;
DocumentRoot /var/www/html
ServerName www.YOURDOMAIN.COM

# Other directives here

&lt;/VirtualHost&gt;
</pre>
<p>after this just restart the apache server of all servers.</p>
<p>If you are having any issues or questions about setting up the haproxy on amazon EC2 server Please write to me.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="haproxy tutorial">haproxy tutorial</a></li><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="amazon ec2">amazon ec2</a></li><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="haproxy default timeout">haproxy default timeout</a></li><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="haproxy config">haproxy config</a></li><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="server amazon ec2 icon">server amazon ec2 icon</a></li><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="haproxy microinstance">haproxy microinstance</a></li><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="loadbalancing javascript css">loadbalancing javascript css</a></li><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="tuto haproxy">tuto haproxy</a></li><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="dual haproxy">dual haproxy</a></li><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="haproxy on ec2 yum">haproxy on ec2 yum</a></li><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="haproxy reconfigure reset connections">haproxy reconfigure reset connections</a></li><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="yum install haproxy centos">yum install haproxy centos</a></li><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="haproxy roundrobin timeout">haproxy roundrobin timeout</a></li><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="haproxy stats backend">haproxy stats backend</a></li><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="tutorial haproxy centos 6">tutorial haproxy centos 6</a></li><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="haproxy use_backend acl">haproxy use_backend acl</a></li><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="haproxy tutorial ec2">haproxy tutorial ec2</a></li><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="static images on load balancer">static images on load balancer</a></li><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="setup load balancer in ec2">setup load balancer in ec2</a></li><li><a href="http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/" title="install haproxy centos 6">install haproxy centos 6</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2010/11/23/configure-haproxy-load-balancing-amazon-ec2/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>how to install Jmeter on Linux</title>
		<link>http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/</link>
		<comments>http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 14:18:55 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[jmeter]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[load testing]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://images.wordpressapi.com/jmeter-installation-linux/</guid>
		<description><![CDATA[http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/Jmeter is basically used for load testing of web applications. JMeter is to first download the latest production release and install it. The release contains all of the files you need to build and run most types of tests, e.g. &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/<p><a href="http://images.wordpressapi.com/jmeter-logo.jpg"><img class="alignleft size-full wp-image-3473" title="jmeter-logo" src="http://images.wordpressapi.com/jmeter-logo.jpg" alt="" width="221" height="102" /></a>Jmeter is basically used for load testing of web applications.</p>
<p>JMeter is to first  <a href="http://jakarta.apache.org/site/downloads/index.html"> download the latest production release </a> and install it. The release contains all of the files you need to build and run most  types of tests, e.g. Web (HTTP/HTTPS), FTP, JDBC, LDAP, Java, and JUnit.</p>
<p>If you want to perform JDBC testing, then you will, of course, need the appropriate JDBC driver from your  vendor.  JMeter does not come with any JDBC drivers.</p>
<p>If you want to install the jmeter on your linux box you need to follow my steps</p>
<p>1) Goto http://jakarta.apache.org/site/downloads/downloads_jmeter.cgi<br />
2) Download Binary 2.3.4.zip . The zip file name will be &#8220;jakarta-jmeter-2.3.4&#8243;<br />
3) Paste it in /var/www/html/<br />
4) Unzip &#8220;jakarta-jmeter-2.3.4&#8243;<br />
5) New folder with name &#8220;jakarta-jmeter-2.3.4&#8243; will be created<br />
6) Go to command prompt<br />
7) go to &#8220;jakarta-jmeter-2.3.4&#8243; folder (cd /var/www/html/jakarta-jmeter-2.3.4) <img src='http://wordpressapi.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> go to &#8220;bin&#8221; folder (cd bin)<br />
9) Now you are in bin folder (i.e /var/www/html/jakarta-jmeter-2.3.4/bin/)<br />
10) type the command &#8220;sh jmeter&#8221;<br />
11) After a short pause, the JMeter GUI should appear.</p>
<p>After this you can use following commands for load testing.</p>
<blockquote><p>For non-interactive testing, you may choose to run JMeter without the  GUI. To do so, use the following command options</p>
<p>-n This specifies JMeter is to run in non-gui mode</p>
<p>-t [name of JMX file that contains the Test Plan].</p>
<p>-l [name of JTL file to log sample results to].</p>
<p>-r Run the test in the servers specified by the JMeter property  &#8220;remote_hosts&#8221;</p>
<p>-R [list of remote servers] Run the test in the specified remote servers</p>
<p>The script also lets you specify the optional firewall/proxy server  information:</p>
<p>-H [proxy server hostname or ip address]<br />
-P [proxy server port]</p>
<p><strong> Example </strong> : jmeter -n -t my_test.jmx -l log.jtl -H my.proxy.server -P 8000</p></blockquote>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="jmeter linux">jmeter linux</a></li><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="jmeter on linux">jmeter on linux</a></li><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="install jmeter on linux">install jmeter on linux</a></li><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="install jmeter centos">install jmeter centos</a></li><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="jmeter download for linux">jmeter download for linux</a></li><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="install jmeter linux">install jmeter linux</a></li><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="download jmeter for linux">download jmeter for linux</a></li><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="jmeter for linux">jmeter for linux</a></li><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="jmeter fedora">jmeter fedora</a></li><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="how to install jmeter on linux">how to install jmeter on linux</a></li><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="jmeter download linux">jmeter download linux</a></li><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="jmeter linux version">jmeter linux version</a></li><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="CentOs how install jmeter">CentOs how install jmeter</a></li><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="installing jmeter on linux">installing jmeter on linux</a></li><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="jmeter centos">jmeter centos</a></li><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="install jmeter on centos">install jmeter on centos</a></li><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="installing jmeter in fedora">installing jmeter in fedora</a></li><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="jmeter download no linux">jmeter download no linux</a></li><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="running jmeter on centos">running jmeter on centos</a></li><li><a href="http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/" title="jmeter tutorial instalacion linux">jmeter tutorial instalacion linux</a></li></ul><p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2010/06/22/how-to-install-jmeter-on-linux/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to remove the www from url with rewite rule</title>
		<link>http://wordpressapi.com/2010/03/07/remove-www-url-rewite-rule/</link>
		<comments>http://wordpressapi.com/2010/03/07/remove-www-url-rewite-rule/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 04:42:28 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://images.wordpressapi.com/?p=1731</guid>
		<description><![CDATA[http://wordpressapi.com/2010/03/07/remove-www-url-rewite-rule/Now these days keeping www in URL is becoming old fashion. How can check many websites for that and the current example is twitter.com I specially dont like to put www in URL so we can easily remove the www &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2010/03/07/remove-www-url-rewite-rule/<p><a href="http://images.wordpressapi.com/apache.jpg"><img class="size-full wp-image-1734 alignleft" style="margin: 5px" title="apache" src="http://images.wordpressapi.com/apache.jpg" alt="" width="200" height="150" /></a>Now these days keeping www in URL is becoming old fashion. How can check many websites for that and the current example is twitter.com</p>
<p>I specially dont like to put www in URL so we can easily remove the www from URL.</p>
<p>Open your apache configuration file. If you are using Linux then open file from following location</p>
<p># vim /etc/httpd/conf/httpd.conf</p>
<p>put following lines in your virtual directory section.</p>
<pre class="brush: plain; title: ; notranslate">

# remove www from url
RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
RewriteRule ^.*$ http://example.com%{REQUEST_URI} [R=301,L]
</pre>
<p>We can use this rewrite rule in .htaccess file also. But make sure .htaccess is enable through apache server.</p>
<pre class="brush: plain; title: ; notranslate">

# remove the www from URL.
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
RewriteRule ^.*$ http://example.com%{REQUEST_URI} [R=301s,L]
</pre>
<p>For WordPress websites for seo purpose putting above lines in .htaccess file is really best. That will gives you the really great result in future.</p>
<p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2010/03/07/remove-www-url-rewite-rule/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>what is cloud hosting &#8211; Know In detail</title>
		<link>http://wordpressapi.com/2010/02/24/what-is-cloud-hosting-know-in-detail/</link>
		<comments>http://wordpressapi.com/2010/02/24/what-is-cloud-hosting-know-in-detail/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 20:06:45 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[cloud hosting]]></category>
		<category><![CDATA[heavy traffic]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://images.wordpressapi.com/?p=1525</guid>
		<description><![CDATA[http://wordpressapi.com/2010/02/24/what-is-cloud-hosting-know-in-detail/In now day many times we heard about cloud hosting and cloud computing. Recently we heard from Matt (WordPress founder) also. Many web designers are not aware with cloud hosting. In this article I am going to write about in &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2010/02/24/what-is-cloud-hosting-know-in-detail/<p>In now day many times we heard about cloud hosting and cloud computing. Recently we heard from Matt (WordPress founder) also. Many web designers are not aware with cloud hosting.</p>
<p>In this article I am going to write about in detail about cloud hosting. We are heard about messaging servers and big web services.</p>
<p>Twitter is the biggest mirco blogging website in the world and they are running like more then 100 mongrel server instances on Nginx server for handling the twitter. But still they are facing lot of traffic issue. May be there are multiple reasons. But still one of that is Rails. How much requests single mongrel instance can handle and if they got billions of hits in single second. What will happen we never no.</p>
<p>Who are in server administration they will defiantly have good idea about these issues.</p>
<h2>What is cloud hosting?</h2>
<p>Cloud hosting is nothing but multiple virtual machines which are basically does load balancing.</p>
<p>Generally, website hosted on a cloud hosting operates on a clustered servers where online operations are not limited to a single server. By handling security, load balance and hardware resources virtually, the website has access to the processing power of a number of servers that are distributed in real time.</p>
<p>Cloud computing is a way of computing, via the Internet, that broadly shares computer resources instead of having a local personal computer handle specific applications.</p>
<p>I can say Cloud hosting is solution for multiple dedicated servers. Handling multiple dedicated server is really pain. So for high traffic websites choosing the cloud hosting is the best option.</p>
<p>Google, Yahoo, MSN, Facebook many companies are already using the cloud hosting for better performance.</p>
<p>For choosing the cloud hosting there are few good options present in market. Some of few as follows:</p>
<p>1. <a href="http://aws.amazon.com/ec2/" target="_blank">Amazon</a></p>
<p><a href="http://images.wordpressapi.com/Amazon-Elastic-Compute-Cloud-Amazon-EC2_1267090550003.png"><img class="size-full wp-image-1526 alignnone" title="Amazon Elastic Compute Cloud (Amazon EC2)_1267090550003" src="http://images.wordpressapi.com/Amazon-Elastic-Compute-Cloud-Amazon-EC2_1267090550003.png" alt="" width="187" height="75" /></a></p>
<p>2. <a href="http://www.gogrid.com" target="_blank">gogrid</a></p>
<p><a href="http://images.wordpressapi.com/Cloud-Hosting-Cloud-Computing-Hybrid-Infrastructure-from-GoGrid_1267090529746.png"><img class="alignnone size-full wp-image-1527" title="Cloud Hosting, Cloud Computing, Hybrid Infrastructure from GoGrid_1267090529746" src="http://images.wordpressapi.com/Cloud-Hosting-Cloud-Computing-Hybrid-Infrastructure-from-GoGrid_1267090529746.png" alt="" width="267" height="80" /></a></p>
<p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2010/02/24/what-is-cloud-hosting-know-in-detail/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>How to add www to domain name through apache or htaccess</title>
		<link>http://wordpressapi.com/2010/01/28/add-www-domain-apache-htaccess/</link>
		<comments>http://wordpressapi.com/2010/01/28/add-www-domain-apache-htaccess/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 13:38:28 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://images.wordpressapi.com/?p=561</guid>
		<description><![CDATA[http://wordpressapi.com/2010/01/28/add-www-domain-apache-htaccess/Just use following code in apache configuration file or .htaccess file. If you are using the shared hosting then please go with only .htaccess file. Just copy paste following code in .htaccess file. &#60;IfModule mod_rewrite.c&#62; Options +FollowSymlinks RewriteEngine On RewriteBase &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2010/01/28/add-www-domain-apache-htaccess/<p style="margin-bottom: 0in;font-weight: normal">Just use following code  in apache configuration file or .htaccess file.</p>
<p style="margin-bottom: 0in;font-weight: normal">If you are using the shared hosting then please go with only .htaccess file.</p>
<p style="margin-bottom: 0in;font-weight: normal">
<p style="margin-bottom: 0in;font-weight: normal">Just copy paste following code in .htaccess file.</p>
<p style="margin-bottom: 0in;font-weight: normal">
<p style="margin-bottom: 0in;font-weight: normal">&lt;IfModule mod_rewrite.c&gt;</p>
<p style="margin-bottom: 0in;font-weight: normal">Options +FollowSymlinks</p>
<p style="margin-bottom: 0in;font-weight: normal">RewriteEngine On</p>
<p style="margin-bottom: 0in;font-weight: normal">RewriteBase /</p>
<p style="margin-bottom: 0in;font-weight: normal">
<p style="margin-bottom: 0in;font-weight: normal">RewriteCond %{HTTP_HOST} !^www\.wordpressapi\.com$ [NC]</p>
<p style="margin-bottom: 0in;font-weight: normal">RewriteRule ^(.*)$ http://www.wordpressapi.com/files/$1 [L,R=301]</p>
<p style="margin-bottom: 0in;font-weight: normal">
<p style="margin-bottom: 0in;font-weight: normal">&lt;/IfModule&gt;</p>
<p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2010/01/28/add-www-domain-apache-htaccess/feed/</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
		<item>
		<title>How to start Activemq with XML configuration file</title>
		<link>http://wordpressapi.com/2009/12/11/how-to-start-activemq-with-xml-configuration-file/</link>
		<comments>http://wordpressapi.com/2009/12/11/how-to-start-activemq-with-xml-configuration-file/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 03:34:40 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[activemq]]></category>

		<guid isPermaLink="false">http://purab.wordpress.com/?p=332</guid>
		<description><![CDATA[http://wordpressapi.com/2009/12/11/how-to-start-activemq-with-xml-configuration-file/You can download Aapache activeMQ from following URL; http://activemq.apache.org/activemq-530-release.html Choose the your OS(Linux/Windows). After downloading apache-activemq-5.3.0-bin.zip. Extract the ActiveMQ. Open command prompt and go to activeMQ/bin directory and run the &#8220;activemq&#8221; command. ActiveMQ will start without configration. If you are &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2009/12/11/how-to-start-activemq-with-xml-configuration-file/<p>You can download Aapache activeMQ from following URL;<br />
http://activemq.apache.org/activemq-530-release.html</p>
<p>Choose the your OS(Linux/Windows). After downloading apache-activemq-5.3.0-bin.zip.<br />
Extract the ActiveMQ. Open command prompt and go to activeMQ/bin directory and run the &#8220;activemq&#8221; command.</p>
<p>ActiveMQ will start without configration.<br />
If you are running ActiveMQ on local machine than you can open the ActiveMQ&#8217;s Admin from following URL;<br />
http://0.0.0.0:8161/admin/ (8161 is default port)</p>
<p>If you want to run ActiveMQ with XML file. Use following command<br />
#bin/activemq xbean:file:../config.xml</p>
<p>For more information Please visit the http://activemq.apache.org/</p>
<p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2009/12/11/how-to-start-activemq-with-xml-configuration-file/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>How to install SSL with apache on fedora</title>
		<link>http://wordpressapi.com/2009/11/10/how-to-install-ssl-with-apache-on-fedora/</link>
		<comments>http://wordpressapi.com/2009/11/10/how-to-install-ssl-with-apache-on-fedora/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 13:06:46 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://purab.wordpress.com/2009/11/10/how-to-install-ssl-with-apache-on-fedora/</guid>
		<description><![CDATA[http://wordpressapi.com/2009/11/10/how-to-install-ssl-with-apache-on-fedora/Just use following commands [root@localhost siwan]# yum install openssl [root@localhost siwan]# yum install openssl-devel [root@localhost siwan]# yum install mod_ssl This will start apache server. [root@localhost siwan]# /etc/init.d/httpd restart Follow us on Twitter WordPress API]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2009/11/10/how-to-install-ssl-with-apache-on-fedora/<p>Just use following commands<br />
[root@localhost siwan]# yum install openssl<br />
[root@localhost siwan]# yum install openssl-devel<br />
[root@localhost siwan]# yum install mod_ssl</p>
<p>This will start apache server.<br />
[root@localhost siwan]# /etc/init.d/httpd restart</p>
<p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2009/11/10/how-to-install-ssl-with-apache-on-fedora/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>How to use hosts file on Mac, Windows and Linux</title>
		<link>http://wordpressapi.com/2009/11/04/how-to-use-hosts-file-on-mac-windows-and-linux/</link>
		<comments>http://wordpressapi.com/2009/11/04/how-to-use-hosts-file-on-mac-windows-and-linux/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 09:31:08 +0000</pubDate>
		<dc:creator>Wordpress API</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Nginx]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://purab.wordpress.com/2009/11/04/how-to-use-hosts-file-on-mac-windows-and-linux/</guid>
		<description><![CDATA[http://wordpressapi.com/2009/11/04/how-to-use-hosts-file-on-mac-windows-and-linux/The hosts file is a computer file used by an operating system to map hostnames to IP addresses. On many operating systems, the host file content is used preferentially over other methods, such as the Domain Name System (DNS). Unlike &#8230; Continue reading &#8594;]]></description>
			<content:encoded><![CDATA[http://wordpressapi.com/2009/11/04/how-to-use-hosts-file-on-mac-windows-and-linux/<p>The hosts file is a computer file used by an operating system to map hostnames to IP addresses.<br />
On many operating systems, the host file content is used preferentially over other methods,<br />
such as the Domain Name System (DNS). Unlike DNS, the hosts file is under the control of the local computer&#8217;s administrator</p>
<p>Locate the file &#8220;Hosts&#8221; on your computer:<br />
Windows<br />
Windows 95/98/Me  c:\windows\hosts<br />
Windows NT/2000/XP Pro  c:\winnt\system32\drivers\etc\hosts<br />
Windows XP Home c:\windows\system32\drivers\etc\hosts</p>
<p>Linux<br />
/etc/hosts or /etc/host.conf or /etc/nsswitch.conf</p>
<p>Symbian<br />
C:\system\data\hosts</p>
<p>Mac OS<br />
/private/etc/hosts or /etc/hosts</p>
<p>In that file you can edit entry like this</p>
<p># Do not remove the following line, or various programs<br />
# that require network functionality will fail.<br />
127.0.0.1               localhost.localdomain localhost localhost       yourlocaldomain.com , example.com<br />
::1             localhost6.localdomain6 localhost6<br />
192.168.2.200   intranet</p>
<p>directory.example.com         71.155.186.91</p>
<p>Follow us on Twitter <a href="http://twitter.com/wordpressapi">WordPress API</a></p>]]></content:encoded>
			<wfw:commentRss>http://wordpressapi.com/2009/11/04/how-to-use-hosts-file-on-mac-windows-and-linux/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: wordpressapi.com @ 2012-02-05 13:35:37 by W3 Total Cache -->
