<?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>Mehmet Ali Ertürk &#187; Apache</title>
	<atom:link href="http://mehmetalierturk.com/tag/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://mehmetalierturk.com</link>
	<description>Innovation is the ability to see change as an opportunity, not a threat</description>
	<lastBuildDate>Wed, 18 Jan 2012 14:28:47 +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>A Real Django Application On A Shared Hosting</title>
		<link>http://mehmetalierturk.com/2009/02/06/a-real-django-application-on-shared-hosting/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-real-django-application-on-shared-hosting</link>
		<comments>http://mehmetalierturk.com/2009/02/06/a-real-django-application-on-shared-hosting/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 20:27:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Django]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.mehmetalierturk.com/?p=596</guid>
		<description><![CDATA[I got working a simple django application on a shared hosting before but never tried a real application till to night. I was developing a project for fun nothing much and it is about to finish and ready for a &#8230; <a href="http://mehmetalierturk.com/2009/02/06/a-real-django-application-on-shared-hosting/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I got working a <a href="http://www.mehmetalierturk.com/2009/01/11/django-on-shared-hostings/">simple django application on a shared hosting</a> before but never tried a real application till to night. I was developing a project for fun nothing much and it is about to finish and ready for a real time test. After struggling with .haccess mod_rewrite issues<sup>1</sup> (mod_rewrite: maximum number of internal redirects reached. Assuming configuration error. Use &#8216;RewriteOptions MaxRedirects&#8217; to increase the limit if neccessary) my application is deployed and first http request is called. No, as you guess it didn&#8217;t work. My hosting provider uses an old version of mysql driver for python which is MySQLdb-1.2.0 but django 1.0 requires  MySQLdb-1.2.1p2 or newer. So, planning to email and ask them if it is possible to upgrade driver if not I&#8217;m going to use my friends home servers to host it.</p>
<p><sup>1</sup> To fix this issue add your domain name to rewrite condition like<br />
<code>RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{HTTP_HOST} yoursite.com<br />
RewriteCond %{REQUEST_URI} !yoursite.com<br />
RewriteRule ^(.*)$ cgi/yoursite.cgi/$1 [QSA,L]</code></p>
]]></content:encoded>
			<wfw:commentRss>http://mehmetalierturk.com/2009/02/06/a-real-django-application-on-shared-hosting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Server In You Pocket</title>
		<link>http://mehmetalierturk.com/2008/04/21/the-server-in-you-pocket/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-server-in-you-pocket</link>
		<comments>http://mehmetalierturk.com/2008/04/21/the-server-in-you-pocket/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 20:17:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Django]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://merturk.wordpress.com/2008/04/21/the-server-in-you-pocket/</guid>
		<description><![CDATA[I&#8217;ve been dealing with iPhone since I bought it but I&#8217;ve not mentioned it before. I don&#8217;t have a mac so I don&#8217;t have an iPhone SDK too. I was using cross platform compilers to compile an application on windows &#8230; <a href="http://mehmetalierturk.com/2008/04/21/the-server-in-you-pocket/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been dealing with iPhone since I bought it but I&#8217;ve not mentioned it before. I don&#8217;t have a mac so I don&#8217;t have an iPhone SDK too. I was using cross platform compilers to compile an application on windows and put it on <a href="http://www.apple.com/iphone/">iPhone</a>. It is really painful. Today I got my first server up and running, it is <a href="http://www.djangoproject.com/">django </a>development server. Also, a crud application running on it. </p>
<p><a href="http://bp1.blogger.com/_m2dDliH3PFI/SAz5p6Lw84I/AAAAAAAAALk/D_AzN73n49Q/s1600-h/iphone.jpg"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://bp1.blogger.com/_m2dDliH3PFI/SAz5p6Lw84I/AAAAAAAAALk/D_AzN73n49Q/s400/iphone.jpg" border="0" /></a></p>
<p>A <a href="http://livinghardknox.com/2007/08/20/django-and-the-iphone/">tutorial</a> is available about it.</p>
]]></content:encoded>
			<wfw:commentRss>http://mehmetalierturk.com/2008/04/21/the-server-in-you-pocket/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Load Balancing</title>
		<link>http://mehmetalierturk.com/2008/03/13/load-balancing/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=load-balancing</link>
		<comments>http://mehmetalierturk.com/2008/03/13/load-balancing/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 17:29:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Apache2]]></category>
		<category><![CDATA[Glassfish]]></category>
		<category><![CDATA[J2EE]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JEE]]></category>
		<category><![CDATA[Sun]]></category>

		<guid isPermaLink="false">http://merturk.wordpress.com/2008/03/13/load-balancing/</guid>
		<description><![CDATA[I had some problems with load balancing on glassfish clusters but today I got it up and running on my local machine using apache2 as web server.]]></description>
			<content:encoded><![CDATA[<p>I had some problems with load balancing on <a href="https://glassfish.dev.java.net/">glassfish</a> clusters but today I got it up and running on my local machine using <a href="http://httpd.apache.org/">apache2</a> as web server.  </p>
<p><a href="http://bp2.blogger.com/_m2dDliH3PFI/R9llVj8ZaJI/AAAAAAAAAJg/ew8RsKpdMgY/s1600-h/loadbalance.png"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://bp2.blogger.com/_m2dDliH3PFI/R9llVj8ZaJI/AAAAAAAAAJg/ew8RsKpdMgY/s400/loadbalance.png" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mehmetalierturk.com/2008/03/13/load-balancing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why not to use MS SQL Server</title>
		<link>http://mehmetalierturk.com/2008/01/22/why-not-to-use-ms-sql-server/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=why-not-to-use-ms-sql-server</link>
		<comments>http://mehmetalierturk.com/2008/01/22/why-not-to-use-ms-sql-server/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 08:41:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Full-text]]></category>
		<category><![CDATA[Lucene]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://merturk.wordpress.com/2008/01/22/why-not-to-use-ms-sql-server/</guid>
		<description><![CDATA[The Keyword column corresponds to some representation of a single token extracted at indexing time. What makes up a token is determined by a component of the full-text engine called a &#8220;word breaker.&#8221; Each language supported by full-text search has &#8230; <a href="http://mehmetalierturk.com/2008/01/22/why-not-to-use-ms-sql-server/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<blockquote><p>The Keyword column corresponds to some representation of a single token extracted at indexing time. What makes up a token is determined by a component of the full-text engine called a &#8220;word breaker.&#8221; Each language supported by full-text search has a word breaker component that breaks a text stream into individual tokens based on the rules for word boundaries of that particular language.</p></blockquote>
<p>Except Turkish MS SQL Server 2005 supports all languages that&#8217;s why you can not use full-text search efficiently in Turkey. If you have to use MS SQL Server 2005 you should try <a href="http://lucene.apache.org/java/docs/">Lucene</a> for search purposes.</p>
<p>MSDN documentation mentions full-text search improvements on MS SQL Server 2005, I can not imagine how terrible MS SQL Server 2000 was &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://mehmetalierturk.com/2008/01/22/why-not-to-use-ms-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

