<?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>Thomas Hambach - Web engineer &#187; windows</title>
	<atom:link href="http://www.rdlt.com/category/windows/feed" rel="self" type="application/rss+xml" />
	<link>http://www.rdlt.com</link>
	<description>Web development, Web design &#38; Usability</description>
	<lastBuildDate>Mon, 06 Dec 2010 09:45:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>xampp mysqli crashes apache</title>
		<link>http://www.rdlt.com/xampp-mysqli-crashes-apache.html</link>
		<comments>http://www.rdlt.com/xampp-mysqli-crashes-apache.html#comments</comments>
		<pubDate>Wed, 18 Nov 2009 14:46:09 +0000</pubDate>
		<dc:creator>Thomas Hambach</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://www.rdlt.com/?p=238</guid>
		<description><![CDATA[Is your XAMPP installation crashing apache when using the mysqli PHP functions on windows? The apache logs are not telling anything even when you have debug mode enabled? Are you getting something like &#8220;Faulting application apache.exe, version 2.2.11.0, faulting module ntdll.dll&#8221; or &#8220;Faulting application apache.exe, version 2.2.11.0, faulting module MSVCR71.dll.&#8221; ? Really? Sure? Well here&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Is your <strong>XAMPP </strong>installation crashing apache when using the mysqli PHP functions on windows? The apache logs are not telling anything even when you have debug mode enabled? Are you getting something like &#8220;<strong>Faulting application apache.exe, version 2.2.11.0, faulting module ntdll.dll</strong>&#8221; or &#8220;<strong>Faulting application apache.exe, version 2.2.11.0, faulting module MSVCR71.dll.</strong>&#8221; ?</p>
<p>Really? Sure? Well here&#8217;s your solution&#8230;</p>
<p>Download the most recent version of <strong>php_mysqli.dll </strong>and place it in <strong>&lt;yourxampdir&gt;\php\ext</strong> directory.You might want to take a backup of the file you&#8217;re replacing in case it doesn&#8217;t work&#8230;</p>
<p>You can <a href="http://www.rdlt.com/wp-content/uploads/2009/11/php_mysqli.zip">download the php_mysqli.dll righ here</a> or you&#8217;ll have to find a recent version for your PHP version yourself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rdlt.com/xampp-mysqli-crashes-apache.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple memcache instances/servers on windows</title>
		<link>http://www.rdlt.com/multiple-memcache-instancesservers-on-windows.html</link>
		<comments>http://www.rdlt.com/multiple-memcache-instancesservers-on-windows.html#comments</comments>
		<pubDate>Mon, 11 May 2009 10:50:55 +0000</pubDate>
		<dc:creator>Thomas Hambach</dc:creator>
				<category><![CDATA[memcache]]></category>
		<category><![CDATA[memcached]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.rdlt.com/?p=164</guid>
		<description><![CDATA[Setting up memcache on windows is like taking candy from a baby. You can find all the information and the binaries for memcache at http://jehiah.cz/projects/memcached-win32/ . Note that these binaries will also work for x64 based windows. A little trickier is to set up multiple instances of memcached on your windows machine. Basically you have [...]]]></description>
			<content:encoded><![CDATA[<p>Setting up memcache on windows is like taking candy from a baby. You can find all the information and the binaries for memcache at <a href="http://jehiah.cz/projects/memcached-win32/" target="_blank">http://jehiah.cz/projects/memcached-win32/</a> . Note that these binaries will also work for x64 based windows.</p>
<p>A little trickier is to set up multiple instances of memcached on your windows machine. Basically you have to install the same memcache executable as many times as you want servers.</p>
<p>Installing memcache from the command line is simple:</p>
<pre><code>sc create  "Memcached11211" binPath= "E:\webserver\memcached.exe -d runservice -p 11211 -m 128"  DisplayName= "Memcached11211" start= auto</code></pre>
<p>Thus, for multiple instances this will be:</p>
<pre><code>sc create  "Memcached11211" binPath= "E:\webserver\memcached.exe -d runservice -p 11211 -m 15"  DisplayName= "Memcached11211" start= auto
sc create  "Memcached11212" binPath= "E:\webserver\memcached.exe -d runservice -p 11212 -m 15"  DisplayName= "Memcached11212" start= auto
sc create  "Memcached11213" binPath= "E:\webserver\memcached.exe -d runservice -p 11213 -m 15"  DisplayName= "Memcached11213" start= auto
sc create  "Memcached11214" binPath= "E:\webserver\memcached.exe -d runservice -p 11214 -m 15"  DisplayName= "Memcached11214" start= auto
sc create  "Memcached11215" binPath= "E:\webserver\memcached.exe -d runservice -p 11215 -m 15"  DisplayName= "Memcached11215" start= auto
sc create  "Memcached11216" binPath= "E:\webserver\memcached.exe -d runservice -p 11216 -m 15"  DisplayName= "Memcached11216" start= auto
sc create  "Memcached11217" binPath= "E:\webserver\memcached.exe -d runservice -p 11217 -m 15"  DisplayName= "Memcached11217" start= auto
sc create  "Memcached11218" binPath= "E:\webserver\memcached.exe -d runservice -p 11218 -m 15"  DisplayName= "Memcached11218" start= auto
sc create  "Memcached11219" binPath= "E:\webserver\memcached.exe -d runservice -p 11219 -m 15"  DisplayName= "Memcached11219" start= auto
sc create  "Memcached11220" binPath= "E:\webserver\memcached.exe -d runservice -p 11220 -m 15"  DisplayName= "Memcached11220" start= auto
sc create  "Memcached11221" binPath= "E:\webserver\memcached.exe -d runservice -p 11221 -m 15"  DisplayName= "Memcached11221" start= auto
sc create  "Memcached11222" binPath= "E:\webserver\memcached.exe -d runservice -p 11222 -m 15"  DisplayName= "Memcached11222" start= auto</code></pre>
<p>As you can see from the example above, you have to choose a different port for each memcache instance you are running.</p>
<div style="font-size:10px">references: <a href="http://www.nabble.com/Multi-instance-on-Win2K3--td18223078.html" target="_blank">http://www.nabble.com/Multi-instance-on-Win2K3&#8211;td18223078.html</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.rdlt.com/multiple-memcache-instancesservers-on-windows.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

