<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>A Journey of images</title>
	<atom:link href="http://journeyimaging.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://journeyimaging.wordpress.com</link>
	<description>The Journey to the google number one position</description>
	<lastBuildDate>Thu, 17 Nov 2011 14:16:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='journeyimaging.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>A Journey of images</title>
		<link>http://journeyimaging.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://journeyimaging.wordpress.com/osd.xml" title="A Journey of images" />
	<atom:link rel='hub' href='http://journeyimaging.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Server administration IPTABLES and IFTOP</title>
		<link>http://journeyimaging.wordpress.com/2011/11/08/fun-times-server-administration-iptables-and-iftop/</link>
		<comments>http://journeyimaging.wordpress.com/2011/11/08/fun-times-server-administration-iptables-and-iftop/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 07:31:13 +0000</pubDate>
		<dc:creator>gerritvisagie</dc:creator>
				<category><![CDATA[Local Development Server]]></category>

		<guid isPermaLink="false">http://journeyimaging.wordpress.com/?p=302</guid>
		<description><![CDATA[If you are experiencing a problem with your webserver running slow or think you might have a dos attack on your hands, here is a trick i use to make sure i block any suspisious IP&#8217;s. I use 2 packages on my Ubuntu server to have a look at what is going on. Iftop easily [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=journeyimaging.wordpress.com&amp;blog=9931931&amp;post=302&amp;subd=journeyimaging&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>If you are experiencing a problem with your webserver running slow or think you might have a dos attack on your hands, here is a trick i use to make sure i block any suspisious IP&#8217;s.</h3>
<p><strong>I use 2 packages on my Ubuntu server to have a look at what is going on.</strong></p>
<h4>Iftop easily obtained with</h4>
<p><span style="color:#333399;">apt-get install iftop<a href="http://journeyimaging.files.wordpress.com/2011/11/iftop.jpg"><img class="alignright size-medium wp-image-304" title="iftop" src="http://journeyimaging.files.wordpress.com/2011/11/iftop.jpg?w=293&#038;h=300" alt="" width="293" height="300" /></a></span></p>
<p>Run it and have a look, it gives you the source ip and ports that are being accessed</p>
<p> Press P to display ports  and N for DNS resolution</p>
<p><em> Personally I prefer it off</em></p>
<p> You can lookup any suspicious ip addresses  with ip-lookup.net/ </p>
<p>Now you will have to look for any suspicious ip addresses that should not be accessing especially SSH and using high volumes of data especially any foreign servers accessing your port 25 (SMTP)</p>
<p> Setup smtp authentication or block them off with a fire wall rule (see net section)</p>
<p> If it does not originate from your country or any nabour countries  ones its a safe bet to block it, just ensure not to block the new technologies like the blackberry servers that originate from countries like the UK for  Africa.</p>
<h4><strong> Next up is the all powerful IPTABLES</strong></h4>
<p> Its installed by default on the server</p>
<p> For a really nice extensive overview visit: <a href="https://help.ubuntu.com/community/IptablesHowTo">https://help.ubuntu.com/community/IptablesHowTo</a></p>
<p> Firstly  How to see if you have any rules on your firewall</p>
<p> iptables &#8211;list</p>
<p>If the very first line reads </p>
<p><span style="color:#ff0000;"><em> ACCEPT     all  &#8211;  anywhere             anywhere</em></span></p>
<p>  You will have to ensure to use the –I  option this writes the rule to the front of the list</p>
<p> Iptables initializes rules from the top so <span style="color:#ff0000;"><em>ACCEPT all –anywhere</em></span> will result in none of your rules below it working</p>
<p> To stop a specific range:</p>
<p><span style="color:#333399;">iptables -I INPUT -p tcp -m iprange &#8211;src-range 180.0.0.0-180.255.255.255 -j DROP</span></p>
<p> to block a specific ip use:</p>
<p><span style="color:#333399;"> iptables -I  INPUT -s 180.76.5.0  -j DROP</span></p>
<p> and to drop a smtp connecter</p>
<p><span style="color:#333399;"> iptables -I  INPUT -s  196.215.3.214 -p smtp &#8211;dport 25  -j DROP</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/journeyimaging.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/journeyimaging.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/journeyimaging.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/journeyimaging.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/journeyimaging.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/journeyimaging.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/journeyimaging.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/journeyimaging.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/journeyimaging.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/journeyimaging.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/journeyimaging.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/journeyimaging.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/journeyimaging.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/journeyimaging.wordpress.com/302/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=journeyimaging.wordpress.com&amp;blog=9931931&amp;post=302&amp;subd=journeyimaging&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://journeyimaging.wordpress.com/2011/11/08/fun-times-server-administration-iptables-and-iftop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59d784c335493dc96bcadb16142bb609?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerritvisagie</media:title>
		</media:content>

		<media:content url="http://journeyimaging.files.wordpress.com/2011/11/iftop.jpg?w=293" medium="image">
			<media:title type="html">iftop</media:title>
		</media:content>
	</item>
		<item>
		<title>No phpmyadmin? Lets  get that database</title>
		<link>http://journeyimaging.wordpress.com/2011/10/27/no-phpmyadmin-lets-get-that-database/</link>
		<comments>http://journeyimaging.wordpress.com/2011/10/27/no-phpmyadmin-lets-get-that-database/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 20:50:47 +0000</pubDate>
		<dc:creator>gerritvisagie</dc:creator>
				<category><![CDATA[Local Development Server]]></category>
		<category><![CDATA[database backup]]></category>
		<category><![CDATA[mysqldump]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[ping]]></category>
		<category><![CDATA[putty]]></category>

		<guid isPermaLink="false">http://journeyimaging.wordpress.com/?p=294</guid>
		<description><![CDATA[Cant find the phpmyadmin login of a website you need to backup?  I found myself having this problem with a Joomla website that was about to transfer and a config file with just &#8220;Localhost&#8221; as the host address.  Plus a support center that closed at 5pm sharp. Dont we all  just love the bureaucratic way? I was [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=journeyimaging.wordpress.com&amp;blog=9931931&amp;post=294&amp;subd=journeyimaging&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Cant find the phpmyadmin login of a website you need to backup? </strong></p>
<p>I found myself having this problem with a Joomla website that was about to transfer and a config file with just &#8220;Localhost&#8221; as the host address.  Plus a support center that closed at 5pm sharp. Dont we all  just love the bureaucratic way?</p>
<p>I was lucky that i had ftp details. if you dont have the ftp username. Wait for the support center to open&#8230; but if you do have the user here is a few quick things you can try to solve your problem.</p>
<p>Try pining the domain by opening command prompt.</p>
<p>run cmd.</p>
<p>type in: ping websiteadress.com</p>
<p>you should get somthing like this:</p>
<pre>
<a href="http://journeyimaging.files.wordpress.com/2011/10/ping.jpg"><img class="size-full wp-image-295 alignnone" style="margin:10px;" title="ping" src="http://journeyimaging.files.wordpress.com/2011/10/ping.jpg?w=480&#038;h=243" alt="" width="480" height="243" /></a>

Now that you have the IP address of the server try typing into your url bar:
<em>http://[your.ip.adress]:3306</em></pre>
<p><strong>Some hosts may redirect you to their phpmyadmin page .</strong></p>
<p><strong>Next up try</strong> <em><a href="http://88.10.315.138/phpmyadmin/">http://88.10.315.138/phpmyadmin/</a></em></p>
<p>If your lucky this might also resolve your problem.</p>
<h3>But if all else fails its time for some command line.</h3>
<p>What you want to do is use the IP address to log into the SSH command line of the server.<a href="http://journeyimaging.files.wordpress.com/2011/10/putty.jpg"><img class="size-full wp-image-296 alignnone" title="putty" src="http://journeyimaging.files.wordpress.com/2011/10/putty.jpg?w=480" alt=""   /></a></p>
<address>Use a free ssh program like putty to connect to the address and utilize your ftp user to gain access to your folder</address>
<p>the following commands can be used:</p>
<p><span class="Apple-style-span" style="font-family:Consolas, Monaco, monospace;font-size:12px;line-height:18px;white-space:pre;">mysqldump -u databaseusername -p &#8211;all-databases &gt;alldatabase.sql</span></p>
<p>Dumps all your databases in the hosting package</p>
<hr />
<pre><strong><code>mysqldump -u databaseusername -p <em><code>db_name &gt;alldatabase.sql</code></em></code></strong></pre>
<p><code><code>for use with specific databases</code></code></p>
<hr />
<p>For a full list of functions:<a href="http://dev.mysql.com/doc/refman/5.1/en/mysqldump.html"> http://dev.mysql.com/doc/refman/5.1/en/mysqldump.html</a></p>
<p>Do not forget the last &gt;filename.sql or else you will only be dumping to screen.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/journeyimaging.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/journeyimaging.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/journeyimaging.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/journeyimaging.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/journeyimaging.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/journeyimaging.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/journeyimaging.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/journeyimaging.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/journeyimaging.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/journeyimaging.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/journeyimaging.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/journeyimaging.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/journeyimaging.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/journeyimaging.wordpress.com/294/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=journeyimaging.wordpress.com&amp;blog=9931931&amp;post=294&amp;subd=journeyimaging&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://journeyimaging.wordpress.com/2011/10/27/no-phpmyadmin-lets-get-that-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59d784c335493dc96bcadb16142bb609?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerritvisagie</media:title>
		</media:content>

		<media:content url="http://journeyimaging.files.wordpress.com/2011/10/ping.jpg" medium="image">
			<media:title type="html">ping</media:title>
		</media:content>

		<media:content url="http://journeyimaging.files.wordpress.com/2011/10/putty.jpg" medium="image">
			<media:title type="html">putty</media:title>
		</media:content>
	</item>
		<item>
		<title>Parse PHP files Help Apache recognize .php files</title>
		<link>http://journeyimaging.wordpress.com/2011/07/05/parse-php-files-help-helping-apache-recognize-php-files/</link>
		<comments>http://journeyimaging.wordpress.com/2011/07/05/parse-php-files-help-helping-apache-recognize-php-files/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 10:03:02 +0000</pubDate>
		<dc:creator>gerritvisagie</dc:creator>
				<category><![CDATA[Local Development Server]]></category>

		<guid isPermaLink="false">http://journeyimaging.wordpress.com/?p=287</guid>
		<description><![CDATA[Ever installed a apache php5 server on ubuntu only to find that it is prompting you to download the pages instead of viewing them? Well this is because you web server is not recognizing the .php extension. To enable libapache2-mod-php Run sudo a2enmod php and force reload with /etc/init.d/apache2 force-reload If you receve an error where [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=journeyimaging.wordpress.com&amp;blog=9931931&amp;post=287&amp;subd=journeyimaging&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ever installed a apache php5 server on ubuntu only to find that it is prompting you to download the pages instead of viewing them?</p>
<p>Well this is because you web server is not recognizing the .php extension.</p>
<p>To enable libapache2-mod-php</p>
<p>Run</p>
<p><em>sudo a2enmod php</em></p>
<p>and force reload with</p>
<p><em>/etc/init.d/apache2 force-reload</em></p>
<p>If you receve an error where the server says that the librairy could not be found try running</p>
<p><em>apt-get install libapache2-mod-php5</em></p>
<p><em>/etc/init.d/apache2 restart</em></p>
<p>Another fix if the problem persists:</p>
<p><em>cd /etc/apache2 </em></p>
<p>Go into mods-available, scroll down to php5.conf and php5.load</p>
<p>Copy php5.conf and php5.load to mods-enabled:</p>
<p><em>cp php5.conf  etc/apache2/mods-enabled</em></p>
<p><em>cp php5.load etc/apache2/mods-enabled</em></p>
<p>After that Restart your Web-server</p>
<p><em>sudo /etc/init.d/apache2 restart</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/journeyimaging.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/journeyimaging.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/journeyimaging.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/journeyimaging.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/journeyimaging.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/journeyimaging.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/journeyimaging.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/journeyimaging.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/journeyimaging.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/journeyimaging.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/journeyimaging.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/journeyimaging.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/journeyimaging.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/journeyimaging.wordpress.com/287/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=journeyimaging.wordpress.com&amp;blog=9931931&amp;post=287&amp;subd=journeyimaging&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://journeyimaging.wordpress.com/2011/07/05/parse-php-files-help-helping-apache-recognize-php-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59d784c335493dc96bcadb16142bb609?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerritvisagie</media:title>
		</media:content>
	</item>
		<item>
		<title>Run local virtual hosts (xammp &#8211; apache &#8211; windows)</title>
		<link>http://journeyimaging.wordpress.com/2011/04/13/run-local-virtual-hosts-xammp-apache-windows/</link>
		<comments>http://journeyimaging.wordpress.com/2011/04/13/run-local-virtual-hosts-xammp-apache-windows/#comments</comments>
		<pubDate>Wed, 13 Apr 2011 18:18:11 +0000</pubDate>
		<dc:creator>gerritvisagie</dc:creator>
				<category><![CDATA[Local Development Server]]></category>

		<guid isPermaLink="false">http://journeyimaging.wordpress.com/?p=280</guid>
		<description><![CDATA[Tired of always using http://localhost/mysite ? want it to display mysite.com? Well same here fellow Apache users. Brows to your apache folder &#62;apache&#62;conf&#62;extra Edit the httpd-vhosts.conf and add the following (make sure to use the forward slash and not just copy and paste form the clipboard ) NameVirtualHost yourwebsite.com:80 &#60;VirtualHost yourwebsite.com:80&#62; DocumentRoot C:/root/of/your/site ServerName yourwebsite.com [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=journeyimaging.wordpress.com&amp;blog=9931931&amp;post=280&amp;subd=journeyimaging&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Tired of always using http://localhost/mysite ? want it to display mysite.com?</p>
<p>Well same here fellow Apache users.</p>
<p>Brows to your apache folder</p>
<p>&gt;apache&gt;conf&gt;extra</p>
<p><strong>Edit the httpd-vhosts.conf and add the following</strong><br />
(make sure to use the forward slash and not just copy and paste form the clipboard )</p>
<p>NameVirtualHost yourwebsite.com:80<br />
&lt;VirtualHost yourwebsite.com:80&gt;<br />
DocumentRoot C:/root/of/your/site<br />
ServerName yourwebsite.com<br />
&lt;/VirtualHost&gt;</p>
<p>Make sure to also add your localhost to ensure your phpmyadmin and other extentions still work.</p>
<p>NameVirtualHost localhost:80<br />
&lt;VirtualHost localhost:80&gt;<br />
DocumentRoot C:/xampplite/htdocs<br />
ServerName localhost.com<br />
&lt;/VirtualHost&gt;</p>
<p><strong>Next up on your local drive go to:</strong></p>
<p>C:\Windows\System32\drivers\etc</p>
<p>And edit the hosts file to look like this</p>
<p>127.0.0.1  localhost</p>
<p>127.0.0.1  yourwebsite.com</p>
<p>(Note do not define any real website addresses, this is your computers host setup file and will direct all references to the defined domain to the local machine)</p>
<p><strong>Last and not least make sure your appache httpd.conf allows you to view files in the directory</strong> <strong>by adding </strong></p>
<p>&lt;Directory &#8220;C:/root/of/your/site/&#8221;&gt;<br />
Options Indexes FollowSymLinks<br />
AllowOverride All<br />
Order allow,deny<br />
Allow from all<br />
&lt;/Directory&gt;</p>
<p>&nbsp;</p>
<p>Note: Do not use any unsafe characters in folder names. If your apache does not start up after the changes, check the folder names for any spaces an spelling mistakes .</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/journeyimaging.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/journeyimaging.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/journeyimaging.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/journeyimaging.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/journeyimaging.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/journeyimaging.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/journeyimaging.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/journeyimaging.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/journeyimaging.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/journeyimaging.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/journeyimaging.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/journeyimaging.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/journeyimaging.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/journeyimaging.wordpress.com/280/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=journeyimaging.wordpress.com&amp;blog=9931931&amp;post=280&amp;subd=journeyimaging&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://journeyimaging.wordpress.com/2011/04/13/run-local-virtual-hosts-xammp-apache-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59d784c335493dc96bcadb16142bb609?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gerritvisagie</media:title>
		</media:content>
	</item>
	</channel>
</rss>
