<?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>Reaper-X &#187; Windows</title>
	<atom:link href="http://www.reaper-x.com/category/technology/computer/software/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.reaper-x.com</link>
	<description>Technology, Games, Blogging ... Whatever</description>
	<lastBuildDate>Thu, 12 Nov 2009 08:50:15 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Set up Caching Nameserver on Windows using BIND</title>
		<link>http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/</link>
		<comments>http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 10:21:52 +0000</pubDate>
		<dc:creator>Reaper-X</dc:creator>
				<category><![CDATA[DNS Server]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[bind]]></category>
		<category><![CDATA[bind tools]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[caching nameserver]]></category>
		<category><![CDATA[home dns server]]></category>
		<category><![CDATA[nameserver]]></category>
		<category><![CDATA[windows bind]]></category>

		<guid isPermaLink="false">http://www.reaper-x.com/?p=743</guid>
		<description><![CDATA[How to set up a local caching nameserver on windows using BIND to cache dns request for faster dns queries


Related posts:<ul><li><a href='http://www.reaper-x.com/2006/09/17/how-to-purge-bad-cache-from-squid/' rel='bookmark' title='Permanent Link: How to purge bad cache from SQUID'>How to purge bad cache from SQUID</a></li><li><a href='http://www.reaper-x.com/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/' rel='bookmark' title='Permanent Link: Complete Guide on Installing and Configuring Squid Proxy Server for Windows'>Complete Guide on Installing and Configuring Squid Proxy Server for Windows</a></li><li><a href='http://www.reaper-x.com/2007/09/24/installing-and-setting-up-apache-22-series-with-php-5-on-windows/' rel='bookmark' title='Permanent Link: Installing and Setting up Apache 2.2 series with PHP 5 on Windows'>Installing and Setting up Apache 2.2 series with PHP 5 on Windows</a></li><li><a href='http://www.reaper-x.com/2008/07/02/how-to-compile-mangos-and-scriptdev2-for-windows/' rel='bookmark' title='Permanent Link: How to Compile Mangos and Scriptdev2 for Windows'>How to Compile Mangos and Scriptdev2 for Windows</a></li><li><a href='http://www.reaper-x.com/2007/03/06/downloading-and-configuring-windows-to-play-flash-video-flv-file-the-hard-way/' rel='bookmark' title='Permanent Link: Downloading and Configuring Windows to Play Flash Video (FLV) File &#8211; The Hard Way'>Downloading and Configuring Windows to Play Flash Video (FLV) File &#8211; The Hard Way</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p>I think most of you who are running Linux as the operating system already know that you can set up a caching nameserver on your home computer in order to speed up dns queries. But what if you&rsquo;re on Windows and want to achieve the same thing (cache dns request)? Well thanks to BIND port for Windows, now you can also set up your own DNS Server on Windows easily (although in my case because my ISP DNS Server often down and running CentOS inside Virtual Machine just for this purpose isn&rsquo;t all that useful considering there&rsquo;s already a port of BIND / Named&nbsp;for Windows).</p>
<p>And to make things short, let&rsquo;s get straight to the point ;)</p>
<p>1. First you&rsquo;ll need to grab <a href="http://www.isc.org/sw/bind/" >Bind from the ISC homepage</a>&nbsp;(grab the Windows version of course), and at the time i wrote this, the latest <em>Bind / Named version is 9.5.0&ndash;P1</em></p>
<p>2. When you&rsquo;ve finished downloading BIND, now just you need to extract it somewhere on your harddrive and then followed by running <strong>BINDInstall.exe</strong> to install BIND. But first as a note, in this example i choose to Install BIND into <strong>C:\BIND</strong></p>
<p>3. After the installation process finished, you&rsquo;ll need to set up an&nbsp;environment variable path first to make it easier for you to call various BIND tools from any directory inside the command prompt. To do this you just need to go into <strong>Control Panel -&gt; System -&gt; Advanced -&gt; Environment Variable</strong>. And then <strong>add / edit PATH</strong> to your BIND\bin directory &hellip; and based from this example the BIND\bin directory would be <strong>C:\BIND\bin</strong></p>
<p>4. Now you need to create&nbsp;two folders / directories inside your BIND directory, let&rsquo;s called it <strong>log </strong>(the end result would be <strong>C:\BIND\log</strong>) and zone (<strong>C:\BIND\zone</strong>)</p>
<p>5. Now to set up caching nameserver on windows using bind (so you can start the BIND service), you need to create a filename inside the <strong>etc directory under BIND</strong> directory called <strong>named.conf</strong> and then write these lines into the named.conf</p>
<p>
<code><br />
options {<br />
directory &#34;c:\bind\zone&#34;;<br />
allow-query { localhost; };<br />
forwarders { <strong>XXXXXX; XXXXXX;</strong> };<br />
forward only; query-source address * port 53;<br />
};<br />
logging {<br />
channel queries_log {<br />
file &#34;c:\bind\log\queries.log&#34;;<br />
print-severity yes;<br />
print-time yes;<br />
};<br />
category queries { queries_log ; };<br />
};<br />
zone &#34;localhost.&#34; IN {<br />
type master;<br />
file &#34;localhost.zone&#34;;<br />
allow-update { none; };<br />
};<br />
zone &#34;0.0.127.in-addr.arpa.&#34; IN {<br />
type master;<br />
file &#34;localhost.rev&#34;;<br />
allow-update { none; };<br />
};<br />
include &#34;c:\bind\etc\rndc.key&#34;;<br />
</code>
</p>
<p>Note: Change XXXX into your ISP DNS Server, and also i put a logging for every request made but you can always turned off the logging feature if you want</p>
<p>6. Now you need to create two files inside the zone directory (C:\Bind\Zone) called <strong>localhost.zone</strong>, and <strong>localhost.rev</strong> and then write these lines:</p>
<p><strong><em>localhost.zone</em></strong></p>
<p>
<code><br />
$TTL    86400<br />
@               IN SOA  @       root (<br />
                                        42              ; serial<br />
                                        3H              ; refresh<br />
                                        15M             ; retry<br />
                                        1W              ; expiry<br />
                                        1D )            ; minimum<br />
                IN NS           @<br />
                IN A            127.0.0.1<br />
                IN AAAA         ::1<br />
</code>
</p>
<p><strong><em>localhost.rev</em></strong></p>
<p>
<code><br />
$TTL    86400<br />
@       IN      SOA     localhost. root.localhost.  (<br />
                                      1997022700 ; Serial<br />
                                      28800      ; Refresh<br />
                                      14400      ; Retry<br />
                                      3600000    ; Expire<br />
                                      86400 )    ; Minimum<br />
        IN      NS      localhost.<br />
1       IN      PTR     localhost.<br />
</code>
</p>
<p>7. Now you need to open the command prompt and type:</p>
<p>
<code><br />
cd C:\BIND\bin<br />
rndc-confgen -a<br />
</code>
</p>
<p>8. Now go into windows directory -&gt; system32 -&gt; drivers -&gt; etc &hellip; and create a filename called <strong>resolv.conf</strong> and write this line into resolv.conf</p>
<p><code>nameserver 127.0.0.1</code></p>
<p>9. Now we need to start the BIND service first. To do this you just need to type <em>services.msc</em> from the RUN Command&nbsp;or you can also get into Windows services from <em>Control Panel -&gt; Administrative Tools -&gt; Services</em> &hellip; and then start the <strong>ISC BIND</strong> service</p>
<p>10. Since everything has been configured, the last step would be testing it of course, to do this you just need&nbsp;to go into the command prompt and type:</p>
<p><code>dig reaper-x.com</code></p>
<p>At the first time you&rsquo;ll see something like this (note: result may vary)</p>
<p><code>Query time: 453 msec</code></p>
<p>Now type (again)</p>
<p><code>dig reaper-x.com</code></p>
<p>and if&nbsp;you get (or at least the query time gets reduced)</p>
<p><code>Query time: 0 msec</code></p>
<p>11. Finally you just need to change the preferred DNS Server in your connection into 127.0.0.1 and you&#8217;re done</p>
<p>That means you&rsquo;ve configured your caching nameserver using BIND on windows to cache dns request, congrats :)</p>
<p>But wait, what if you want to flush your dns cache? .. in order to flush your dns cache, all you have to do is just execute this command in the command prompt</p>
<p><code>rndc flush</code></p>
<p>Well basically that&rsquo;s all about it :)</p>
	<p></p>
	<p><em>Copyright &copy; <a href="http://www.reaper-x.com"  title="Reaper-X Technology">Reaper-X Technology</a> &ndash; www.reaper-x.com | <a href="http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/"  title="Set up Caching Nameserver on Windows using BIND">Permalink</a> | <a href="http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/#comments"  title="10 comments">10 comments</a></em></p>
	<p><em><a href="http://www.reaper-x.com" >0x87485B96</a> | Tags : <a href="http://www.reaper-x.com/category/technology/computer/software/dns-server/" rel="nofollow"  title="View all posts in DNS Server" rel="category tag">DNS Server</a>,  <a href="http://www.reaper-x.com/category/how-to/" rel="nofollow"  title="View all posts in How To" rel="category tag">How To</a>,  <a href="http://www.reaper-x.com/category/how-to/tutorials/" rel="nofollow"  title="View all posts in Tutorials" rel="category tag">Tutorials</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/windows/" rel="nofollow"  title="View all posts in Windows" rel="category tag">Windows</a></em></p>

<p>Related posts:<ul><li><a href='http://www.reaper-x.com/2006/09/17/how-to-purge-bad-cache-from-squid/' rel='bookmark' title='Permanent Link: How to purge bad cache from SQUID'>How to purge bad cache from SQUID</a></li><li><a href='http://www.reaper-x.com/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/' rel='bookmark' title='Permanent Link: Complete Guide on Installing and Configuring Squid Proxy Server for Windows'>Complete Guide on Installing and Configuring Squid Proxy Server for Windows</a></li><li><a href='http://www.reaper-x.com/2007/09/24/installing-and-setting-up-apache-22-series-with-php-5-on-windows/' rel='bookmark' title='Permanent Link: Installing and Setting up Apache 2.2 series with PHP 5 on Windows'>Installing and Setting up Apache 2.2 series with PHP 5 on Windows</a></li><li><a href='http://www.reaper-x.com/2008/07/02/how-to-compile-mangos-and-scriptdev2-for-windows/' rel='bookmark' title='Permanent Link: How to Compile Mangos and Scriptdev2 for Windows'>How to Compile Mangos and Scriptdev2 for Windows</a></li><li><a href='http://www.reaper-x.com/2007/03/06/downloading-and-configuring-windows-to-play-flash-video-flv-file-the-hard-way/' rel='bookmark' title='Permanent Link: Downloading and Configuring Windows to Play Flash Video (FLV) File &#8211; The Hard Way'>Downloading and Configuring Windows to Play Flash Video (FLV) File &#8211; The Hard Way</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>FeedDemon goes Free &#8230;</title>
		<link>http://www.reaper-x.com/2008/01/15/feeddemon-goes-free/</link>
		<comments>http://www.reaper-x.com/2008/01/15/feeddemon-goes-free/#comments</comments>
		<pubDate>Tue, 15 Jan 2008 11:40:39 +0000</pubDate>
		<dc:creator>Reaper-X</dc:creator>
				<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[feed reader]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[indonesia]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[rss reader]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://www.reaper-x.com/2008/01/15/feeddemon-goes-free/</guid>
		<description><![CDATA[Call me freebies or anything you like (in this case of course), but i just noticed today (finally i can use rss reader again) that one of the most popular rss feed reader for Windows based machine nam...


Related posts:<ul><li><a href='http://www.reaper-x.com/2006/11/03/installed-opera-mini-into-my-mobile-phone/' rel='bookmark' title='Permanent Link: Installed Opera Mini into my mobile phone'>Installed Opera Mini into my mobile phone</a></li><li><a href='http://www.reaper-x.com/2006/12/05/feedreader-an-opensource-feedreader/' rel='bookmark' title='Permanent Link: Feedreader an opensource Feedreader'>Feedreader an opensource Feedreader</a></li><li><a href='http://www.reaper-x.com/2007/09/18/google-adsense-for-mobile-now-available/' rel='bookmark' title='Permanent Link: Google Adsense for Mobile now available'>Google Adsense for Mobile now available</a></li><li><a href='http://www.reaper-x.com/2007/04/08/directx-redistributable-april-2007/' rel='bookmark' title='Permanent Link: DirectX Redistributable &#8211; April 2007'>DirectX Redistributable &#8211; April 2007</a></li><li><a href='http://www.reaper-x.com/2006/12/11/searching-for-a-good-rss-reader/' rel='bookmark' title='Permanent Link: Searching for a good rss reader ?'>Searching for a good rss reader ?</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p>Call me freebies&nbsp;or anything you like (in this case of course), but i just noticed today (finally i can use rss reader again) that one of the most popular rss feed reader for Windows based machine named <a href="http://www.newsgator.com/Individuals/FeedDemon/Default.aspx" >FeedDemon</a> now available for free of charge &hellip; as written on the <a href="http://www.newsgator.com/CompanyInfo/Press/Archive.aspx?post=144" >Newsgator website</a></p>
<blockquote>
<p>NewsGator also announced that all of its client RSS reader products are now available free of charge and include free synchronization along with other services. Users can now enjoy the great features and performance of all of NewsGator&rsquo;s Web, desktop and mobile readers for iPhone, Windows Mobile, and BlackBerry (powered by FreeRange), all synchronized to provide the same view of their RSS content no matter when or where they read it. Enterprise customers will continue to enjoy the extended value of having all these clients synchronize with NewsGator Enterprise Server (NGES). The combination of innovative client reader features and the ability to leverage core platform data and capabilities have made NewsGator products dominant in the enterprise.</p>
</blockquote>
<p><span id="more-713"></span></p>
<p>I&rsquo;ve to admit that unlike many other people that loves to use online web based apps to read their favorite feeds such as <a href="http://reader.google.com/" >Google Reader</a> or <a href="http://bloglines.com/" >Bloglines</a>, i prefer to use&nbsp;desktop based programs mainly because i&rsquo;m not using a reliable internet connection (although it&rsquo;s a dsl connection) that is practically unusable during the day &hellip; and so i can read it anytime i want <a href="http://www.google.com/help/reader/offline.html" >without too much hassle</a> (if you lived in Indonesia, i&rsquo;m sure you already know&nbsp;the name of the Internet Provider i&rsquo;m using now)&nbsp;:P</p>
<p>Anyway to those who are interested on seeing how FeedDemon look like, here&rsquo;s&nbsp;a screenshot</p>
<p><img alt="FeedDemon Main Window" src="http://images.reaper-x.com/blogs/feeddemonmainwindow.jpg" border="0"  /></p>
<p>Looks great isn&rsquo;t it ?</p>
	<p></p>
	<p><em>Copyright &copy; <a href="http://www.reaper-x.com"  title="Reaper-X Technology">Reaper-X Technology</a> &ndash; www.reaper-x.com | <a href="http://www.reaper-x.com/2008/01/15/feeddemon-goes-free/"  title="FeedDemon goes Free &#8230;">Permalink</a> | <a href="http://www.reaper-x.com/2008/01/15/feeddemon-goes-free/#comments"  title="3 comments">3 comments</a></em></p>
	<p><em><a href="http://www.reaper-x.com" >0x87485B96</a> | Tags : <a href="http://www.reaper-x.com/category/technology/computer/software/freeware/" rel="nofollow"  title="View all posts in Freeware" rel="category tag">Freeware</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/" rel="nofollow"  title="View all posts in Software" rel="category tag">Software</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/windows/" rel="nofollow"  title="View all posts in Windows" rel="category tag">Windows</a></em></p>

<p>Related posts:<ul><li><a href='http://www.reaper-x.com/2006/11/03/installed-opera-mini-into-my-mobile-phone/' rel='bookmark' title='Permanent Link: Installed Opera Mini into my mobile phone'>Installed Opera Mini into my mobile phone</a></li><li><a href='http://www.reaper-x.com/2006/12/05/feedreader-an-opensource-feedreader/' rel='bookmark' title='Permanent Link: Feedreader an opensource Feedreader'>Feedreader an opensource Feedreader</a></li><li><a href='http://www.reaper-x.com/2007/09/18/google-adsense-for-mobile-now-available/' rel='bookmark' title='Permanent Link: Google Adsense for Mobile now available'>Google Adsense for Mobile now available</a></li><li><a href='http://www.reaper-x.com/2007/04/08/directx-redistributable-april-2007/' rel='bookmark' title='Permanent Link: DirectX Redistributable &#8211; April 2007'>DirectX Redistributable &#8211; April 2007</a></li><li><a href='http://www.reaper-x.com/2006/12/11/searching-for-a-good-rss-reader/' rel='bookmark' title='Permanent Link: Searching for a good rss reader ?'>Searching for a good rss reader ?</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2008/01/15/feeddemon-goes-free/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Winamp 5.5 just got better</title>
		<link>http://www.reaper-x.com/2007/10/10/winamp-55-just-got-better/</link>
		<comments>http://www.reaper-x.com/2007/10/10/winamp-55-just-got-better/#comments</comments>
		<pubDate>Wed, 10 Oct 2007 11:51:51 +0000</pubDate>
		<dc:creator>Reaper-X</dc:creator>
				<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[ffdshow]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[winamp]]></category>

		<guid isPermaLink="false">http://www.reaper-x.com/2007/10/10/winamp-55-just-got-better/</guid>
		<description><![CDATA[So today i just upgrade my previously Winamp 5.35 into Winamp 5.5 and guess what ? i think the Winamp team has improved the Winamp skins considerably. Back then when Winamp 3 was launched it introduce...


Related posts:<ul><li><a href='http://www.reaper-x.com/2008/03/02/switching-to-winamp-asio-output-because-of-auto-tag/' rel='bookmark' title='Permanent Link: Switching to Winamp ASIO Output because of Auto-Tag'>Switching to Winamp ASIO Output because of Auto-Tag</a></li><li><a href='http://www.reaper-x.com/2007/05/16/movie-plays-upside-down-when-using-haali-video-renderer/' rel='bookmark' title='Permanent Link: Movie plays Upside Down when using Haali Video Renderer'>Movie plays Upside Down when using Haali Video Renderer</a></li><li><a href='http://www.reaper-x.com/2006/07/13/ffdshow-guide-to-improve-your-audio-files-quality/' rel='bookmark' title='Permanent Link: FFDshow guide to improve your audio files quality'>FFDshow guide to improve your audio files quality</a></li><li><a href='http://www.reaper-x.com/2007/08/02/football-manager-2008-is-coming/' rel='bookmark' title='Permanent Link: Football Manager 2008 is coming'>Football Manager 2008 is coming</a></li><li><a href='http://www.reaper-x.com/2006/11/17/important-tools-to-play-major-multimedia-files/' rel='bookmark' title='Permanent Link: Important Tools to Play Major Multimedia Files'>Important Tools to Play Major Multimedia Files</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" alt="Winamp" src="http://www.reaper-x.com/images/blogs/winamp.gif" border="0"  />So today i just upgrade my previously installed Winamp 5.35 into Winamp 5.5 and guess what ? i think the <a href="http://www.winamp.com" >Winamp team</a> has improved the Winamp skins considerably. Back then when Winamp 3 was launched it introduces us to their new skinning engine which was more powerful than the previous 2.x series,&nbsp;but the problem is &hellip; it take too many of your system resources which is not that great considering most people only use Winamp to listen to their favorite songs (even lots of my friends doesn&rsquo;t really use Winamp 3 skins&nbsp;type&nbsp;anyway)</p>
<p><span id="more-688"></span></p>
<p>And actually because of that reason, i choose to use the previous Winamp 2 skin until today (before upgraded into 5.5). To be honest i was quite suprised when installing this over the previous Winamp installation, because right after i installed the Winamp 5.5, instead of launching the winamp directly it&rsquo;ll ask you first whether you want to use the new skins or not &hellip; and since the new skin looks nice, i think i should give it a try then &hellip; and all i can say is &hellip;&nbsp;amazingly done, and here&rsquo;s a screenshot just in case&nbsp;you want to see the new Winamp 5.5 skin&nbsp;:</p>
<p><img alt="Winamp 5.5 Screenshot" src="http://www.reaper-x.com/images/blogs/winamp-205.5-20screenshot.jpg" border="0"  /></p>
<p>Dang &hellip; i just love their new layout, because their new skin layout match perfectly with my old winamp setup (I put the playlist on the right side of the main window, and put the media player directly below those two), other than that you can also see directly what decoder you&rsquo;re using on your currently played media file&nbsp;just to the left side of the Playlist window</p>
<p>But just in case you want to know why i choose Winamp as my music player (not media player simply because i use another player to play video / movie file), that&rsquo;s because i can use <a href="http://www.reaper-x.com/2006/07/13/ffdshow-guide-to-improve-your-audio-files-quality.htm" >FFDshow with Winamp</a>, in order to improve it&rsquo;s output quality (or you can also says a free DSP effect but in this case FFDshow&nbsp;offers&nbsp;more features) ;)</p>
	<p></p>
	<p><em>Copyright &copy; <a href="http://www.reaper-x.com"  title="Reaper-X Technology">Reaper-X Technology</a> &ndash; www.reaper-x.com | <a href="http://www.reaper-x.com/2007/10/10/winamp-55-just-got-better/"  title="Winamp 5.5 just got better">Permalink</a> | <a href="http://www.reaper-x.com/2007/10/10/winamp-55-just-got-better/#comments"  title="9 comments">9 comments</a></em></p>
	<p><em><a href="http://www.reaper-x.com" >0x87485B96</a> | Tags : <a href="http://www.reaper-x.com/category/technology/computer/software/freeware/" rel="nofollow"  title="View all posts in Freeware" rel="category tag">Freeware</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/" rel="nofollow"  title="View all posts in Software" rel="category tag">Software</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/windows/" rel="nofollow"  title="View all posts in Windows" rel="category tag">Windows</a></em></p>

<p>Related posts:<ul><li><a href='http://www.reaper-x.com/2008/03/02/switching-to-winamp-asio-output-because-of-auto-tag/' rel='bookmark' title='Permanent Link: Switching to Winamp ASIO Output because of Auto-Tag'>Switching to Winamp ASIO Output because of Auto-Tag</a></li><li><a href='http://www.reaper-x.com/2007/05/16/movie-plays-upside-down-when-using-haali-video-renderer/' rel='bookmark' title='Permanent Link: Movie plays Upside Down when using Haali Video Renderer'>Movie plays Upside Down when using Haali Video Renderer</a></li><li><a href='http://www.reaper-x.com/2006/07/13/ffdshow-guide-to-improve-your-audio-files-quality/' rel='bookmark' title='Permanent Link: FFDshow guide to improve your audio files quality'>FFDshow guide to improve your audio files quality</a></li><li><a href='http://www.reaper-x.com/2007/08/02/football-manager-2008-is-coming/' rel='bookmark' title='Permanent Link: Football Manager 2008 is coming'>Football Manager 2008 is coming</a></li><li><a href='http://www.reaper-x.com/2006/11/17/important-tools-to-play-major-multimedia-files/' rel='bookmark' title='Permanent Link: Important Tools to Play Major Multimedia Files'>Important Tools to Play Major Multimedia Files</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2007/10/10/winamp-55-just-got-better/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Internet Explorer 7 now comes without Windows Genuine Validation</title>
		<link>http://www.reaper-x.com/2007/10/05/internet-explorer-7-now-comes-without-windows-genuine-validation/</link>
		<comments>http://www.reaper-x.com/2007/10/05/internet-explorer-7-now-comes-without-windows-genuine-validation/#comments</comments>
		<pubDate>Fri, 05 Oct 2007 15:14:54 +0000</pubDate>
		<dc:creator>Reaper-X</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[windows genuine]]></category>

		<guid isPermaLink="false">http://www.reaper-x.com/2007/10/05/internet-explorer-7-now-comes-without-windows-genuine-validation/</guid>
		<description><![CDATA[Just in case you didn&#8217;t know and / or hasn&#8217;t updated your old Internet Explorer 6.0 into the latest Internet Explorer 7 because of various reasons like avoiding the Windows Genuine Advantage validatio...


Related posts:<ul><li><a href='http://www.reaper-x.com/2006/07/15/windows-genuine-activation-remover/' rel='bookmark' title='Permanent Link: Windows Genuine Activation Remover'>Windows Genuine Activation Remover</a></li><li><a href='http://www.reaper-x.com/2006/08/10/css-bugs-on-internet-explorer/' rel='bookmark' title='Permanent Link: CSS bugs on Internet Explorer'>CSS bugs on Internet Explorer</a></li><li><a href='http://www.reaper-x.com/2006/07/12/bypassing-windows-genuine-activation/' rel='bookmark' title='Permanent Link: Bypassing Windows Genuine Activation'>Bypassing Windows Genuine Activation</a></li><li><a href='http://www.reaper-x.com/2007/09/14/microsoft-silently-update-windows-without-notice/' rel='bookmark' title='Permanent Link: Microsoft silently update Windows without notice'>Microsoft silently update Windows without notice</a></li><li><a href='http://www.reaper-x.com/2006/09/15/opera-and-firefox-logo-added/' rel='bookmark' title='Permanent Link: Opera and Firefox Logo added'>Opera and Firefox Logo added</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" alt="IE7" src="http://www.reaper-x.com/images/blogs/icon-ie7.gif" border="0"  />Just in case you didn&rsquo;t know and / or&nbsp;hasn&rsquo;t updated your old Internet Explorer 6.0 into the latest Internet Explorer 7 because of various reasons like avoiding the Windows Genuine Advantage validation because you couldn&rsquo;t find any good WGA Remover from around the web or you&rsquo;re using a pirated copy of Windows XP. Because&nbsp;&hellip;</p>
<p><span id="more-661"></span></p>
<p>Just as the title says,&nbsp;recently Microsoft has announced that they&rsquo;ve removed&nbsp;the WGA Validation from their popular Internet Explorer browser &hellip; here&rsquo;s what <a href="http://blogs.msdn.com/ie/archive/2007/10/04/internet-explorer-7-update.aspx" >Steve Reynolds</a> said about this on <a href="http://blogs.msdn.com/ie/" >IEBlog</a></p>
<blockquote>
<p>Because Microsoft takes its commitment to help protect the entire Windows ecosystem seriously, we&rsquo;re updating the IE7 installation experience to make it available as broadly as possible to all Windows users. With today&rsquo;s &ldquo;Installation and Availability Update,&rdquo; <strong>Internet Explorer 7 installation will no longer require Windows Genuine Advantage validation</strong> and will be available to all Windows XP users. If you are not already running IE7, you can get it now from the Internet Explorer home page on Microsoft.com, get a customized version from a third-party site, or, if you haven&rsquo;t already received it via Automatic Updates, this version will be delivered to you as we described previously. If you are already running IE7, you will not be offered IE7 again by Automatic Updates.</p>
</blockquote>
<p>So what are you waiting for ? <a href="http://www.microsoft.com/windows/downloads/ie/getitnow.mspx" >grab it</a> before Microsoft change their mind :P &hellip; or at least to those who has moved into Firefox completely, i guess it&rsquo;s still better to grab the IE7 also &hellip; (nothing beats a combination of Firefox 2.x series with IE7 and Opera 9, instead of Firefox 2.x, Opera 9&nbsp;with IE6 combination only) :P</p>
	<p></p>
	<p><em>Copyright &copy; <a href="http://www.reaper-x.com"  title="Reaper-X Technology">Reaper-X Technology</a> &ndash; www.reaper-x.com | <a href="http://www.reaper-x.com/2007/10/05/internet-explorer-7-now-comes-without-windows-genuine-validation/"  title="Internet Explorer 7 now comes without Windows Genuine Validation">Permalink</a> | <a href="http://www.reaper-x.com/2007/10/05/internet-explorer-7-now-comes-without-windows-genuine-validation/#comments"  title="2 comments">2 comments</a></em></p>
	<p><em><a href="http://www.reaper-x.com" >0x87485B96</a> | Tags : <a href="http://www.reaper-x.com/category/technology/computer/software/browsers/" rel="nofollow"  title="View all posts in Browsers" rel="category tag">Browsers</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/freeware/" rel="nofollow"  title="View all posts in Freeware" rel="category tag">Freeware</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/" rel="nofollow"  title="View all posts in Software" rel="category tag">Software</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/windows/" rel="nofollow"  title="View all posts in Windows" rel="category tag">Windows</a></em></p>

<p>Related posts:<ul><li><a href='http://www.reaper-x.com/2006/07/15/windows-genuine-activation-remover/' rel='bookmark' title='Permanent Link: Windows Genuine Activation Remover'>Windows Genuine Activation Remover</a></li><li><a href='http://www.reaper-x.com/2006/08/10/css-bugs-on-internet-explorer/' rel='bookmark' title='Permanent Link: CSS bugs on Internet Explorer'>CSS bugs on Internet Explorer</a></li><li><a href='http://www.reaper-x.com/2006/07/12/bypassing-windows-genuine-activation/' rel='bookmark' title='Permanent Link: Bypassing Windows Genuine Activation'>Bypassing Windows Genuine Activation</a></li><li><a href='http://www.reaper-x.com/2007/09/14/microsoft-silently-update-windows-without-notice/' rel='bookmark' title='Permanent Link: Microsoft silently update Windows without notice'>Microsoft silently update Windows without notice</a></li><li><a href='http://www.reaper-x.com/2006/09/15/opera-and-firefox-logo-added/' rel='bookmark' title='Permanent Link: Opera and Firefox Logo added'>Opera and Firefox Logo added</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2007/10/05/internet-explorer-7-now-comes-without-windows-genuine-validation/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WoW Mangos 4505, ScriptDev2 136 with Project Silvermoon Rev18</title>
		<link>http://www.reaper-x.com/2007/09/25/wow-mangos-4505-scriptdev2-136-with-project-silvermoon-rev18/</link>
		<comments>http://www.reaper-x.com/2007/09/25/wow-mangos-4505-scriptdev2-136-with-project-silvermoon-rev18/#comments</comments>
		<pubDate>Mon, 24 Sep 2007 23:13:12 +0000</pubDate>
		<dc:creator>Reaper-X</dc:creator>
				<category><![CDATA[Emulators]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[MMORPG]]></category>
		<category><![CDATA[Quick Fix]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[emulator]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[mangos]]></category>
		<category><![CDATA[mediafire]]></category>
		<category><![CDATA[megaupload]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[project silvermoon]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[silvermoon]]></category>
		<category><![CDATA[warcraft]]></category>
		<category><![CDATA[world of warcraft]]></category>
		<category><![CDATA[wow]]></category>

		<guid isPermaLink="false">http://www.reaper-x.com/2007/09/25/wow-mangos-4505-scriptdev2-136-with-project-silvermoon-rev18/</guid>
		<description><![CDATA[I just uploaded another update to WoW Mangos Emulator, this time i m using Mangos Revision 4505 plus ScriptDev2 Rev136 and with Project Silvermoon Mangos Database Revision 18. Other than that i also c...


Related posts:<ul><li><a href='http://www.reaper-x.com/2007/09/21/wow-mangos-4488-scriptdev2-134-with-project-silvermoon-db-rev17/' rel='bookmark' title='Permanent Link: WoW Mangos 4488, ScriptDev2 134 with Project Silvermoon DB Rev17'>WoW Mangos 4488, ScriptDev2 134 with Project Silvermoon DB Rev17</a></li><li><a href='http://www.reaper-x.com/2007/10/29/reaper-mangos-4651-scriptdev2-151-with-project-silvermoon-and-unified-database/' rel='bookmark' title='Permanent Link: Reaper Mangos 4651, ScriptDev2 151 with Project Silvermoon and Unified Database'>Reaper Mangos 4651, ScriptDev2 151 with Project Silvermoon and Unified Database</a></li><li><a href='http://www.reaper-x.com/2007/10/23/mangos-4629-scriptdev2-150-with-silvermoon-185-and-udb-08-323-support-223/' rel='bookmark' title='Permanent Link: Mangos 4629, ScriptDev2 150 with Silvermoon 18.5 and UDB 0.8 323 support 2.2.3'>Mangos 4629, ScriptDev2 150 with Silvermoon 18.5 and UDB 0.8 323 support 2.2.3</a></li><li><a href='http://www.reaper-x.com/2007/10/03/mangos-4535-scriptdev2-137-work-with-wow-213-22-and-222/' rel='bookmark' title='Permanent Link: Mangos 4535 ScriptDev2 137 work with WoW 2.1.3, 2.2, and 2.2.2'>Mangos 4535 ScriptDev2 137 work with WoW 2.1.3, 2.2, and 2.2.2</a></li><li><a href='http://www.reaper-x.com/2007/10/15/mangos-4602-scriptdev2-145-with-unified-database-075-cs319-work-with-wow-213-to-223/' rel='bookmark' title='Permanent Link: Mangos 4602, ScriptDev2 145 with Unified Database 0.7.5 CS319 work with WoW 2.1.3 to 2.2.3'>Mangos 4602, ScriptDev2 145 with Unified Database 0.7.5 CS319 work with WoW 2.1.3 to 2.2.3</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p>I just uploaded another update to WoW Mangos Emulator, this time i&rsquo;m using Mangos Revision 4505 plus ScriptDev2 Rev136 and with Project Silvermoon Mangos Database Revision 18. Other than that i also create a small batch script to help you simplify the upgrade process if you&rsquo;re using <a href="http://www.reaper-x.com/2007/09/21/wow-mangos-4488-scriptdev2-134-with-project-silvermoon-db-rev17/" >my previous Mangos 4488 files</a>, thought i&rsquo;m quite sure that you can also use it even if you are not using my Mangos 4488 :)</p>
<p><span id="more-636"></span></p>
<p><strong>UPDATE :</strong>&nbsp;I just uploaded a new&nbsp;<strong><a href="http://www.reaper-x.com/2007/09/30/wow-mangos-4524-modified-to-work-with-wow-213-and-22/" >Modified version of WoW Mangos 4524 for WoW 2.2 client and WoW 2.1.3 Client</a></strong> &hellip; and also i&rsquo;ve changed the batch script to make things even easier especially to those who&rsquo;s still having problem with Mangos 4505 and 4488 ;)</p>
<p><strike><strong>UPDATE :</strong> <em>Many thanks to </em><a href="http://www.reaper-x.com/2007/09/25/wow-mangos-4505-scriptdev2-136-with-project-silvermoon-rev18/#comment-23221" ><em>Caldaga</em></a><em>&nbsp;for telling me that i forgot to include the VMaps Extractor and Assembler into this 4505 Release (although it&rsquo;s included in my previous 4488 release). So if you&rsquo;re using this 4505 release (small version or full version) &hellip; make sure to download the VMaps Extractor and Assembler too (no wonder there&rsquo;re some people who&rsquo;s experiencing VMaps related error message)</em></strike></p>
<p><strike><a href="http://www.megaupload.com/?d=O8N8G31O"  rel="nofollow"># VMaps Extractor and Assembler (143 KB)</a></strike></p>
<p><em>As a side note, VMaps is different than Maps. Maps are required for WoW Mangos to work, while VMaps not required except that you want support for line of sight and height calculation (but i&rsquo;d suggest you to use it too)</em></p>
<p>And just like before, i uploaded two version of my mangos release. The first version is to those who&rsquo;s already have Mangos installed and configured, and / or already using another database (SDB for an example).&nbsp;Already familiar with importing&nbsp;each mangos core update manually, and so on &hellip;&nbsp;Or&nbsp;it might&nbsp;also be useful to those who&rsquo;s using slow connection like me and prefer a smaller file size to download</p>
<p>Mirror:</p>
<p><strike><a href="http://www.mediafire.com/download.php?emzccumlmtc"  rel="nofollow">#1. Mangos Revision 4505 with ScriptDev2 Revision 136 | Mediafire</a></strike></p>
<p><strike><a href="http://www.megaupload.com/?d=MPYNDKH8"  rel="nofollow">#1. Mangos Revision 4505 with ScriptDev2 Revision 136 | Megaupload</a></strike></p>
<p>Inside the small version you can find DBC, Maps and VMaps extractor, and also a batch file inside the Backup Directory just in case you want to Backup your important Mangos Character Data or the Realmd table and data</p>
<p>As for the second version, basically is just the same like the above version with the exception this one also included the Project Silvermoon Rev18 database, and also contain a batch script to import the database</p>
<p>Mirror:</p>
<p><strike><a href="http://www.mediafire.com/download.php?9ynbxmz0ed3"  rel="nofollow">#2. Mangos Revision 4505 with ScriptDev2 Revision 136 plus Project Silvermoon DB Rev18 | MediaFire</a></strike></p>
<p><strike><a href="http://www.megaupload.com/?d=MWH5AENJ"  rel="nofollow">#2. Mangos Revision 4505 with ScriptDev2 Revision 136 plus Project Silvermoon DB Rev18 | Megaupload</a></strike></p>
<p>If you&rsquo;re using my previous Mangos 4488 release, and are not familiar with importing the core update manually, i&rsquo;d suggest you to get the second version instead :)</p>
<p>As a note,&nbsp;i created the batch script inside to help simplify the upgrade process from Mangos 4488 to Mangos 4505 to those who download my previous&nbsp;full database / without db which mean that it has been tested only with Mangos 4488 only (if you&rsquo;re using lower version it might or might not work for you) &hellip; and i only tested it on Windows XP SP2</p>
<p>And here are the instruction to those who&rsquo;s going to use the Full Database version :</p>
<p><strong>If you&rsquo;re upgrading from my previous Mangos 4488 :</strong></p>
<p><strong>1.</strong> Extract the archive somewhere in your harddisk, for example <em>C:\reaper-mangos-R4505-full</em></p>
<p><strong>2.</strong> Go&nbsp;to <em>C:\reaper-mangos-R4505-full\Backup</em> and then execute / run <strong>backup.bat</strong></p>
<p><strong>3.</strong> When prompted if you&rsquo;re using my previous Mangos release, answer <strong>yes</strong> .. and then when asked for your mysql bin path, write your Mysql bin path there for example <strong>C:\Program Files\MySQL\MySQL Server 5.0\bin</strong> if you follow my previous <em><a href="http://www.reaper-x.com/2007/06/27/mysql-installation-and-configuration-setting-up-private-wow-server/" >mysql guide</a></em> and is using the default path</p>
<p><strong>4.</strong> Go to <em>C:\reaper-mangos-R4505-full\reaper-eazy-mangos</em> and then run <strong>import.bat</strong>. When prompted for your MySQL root password, just write your mysql root password there and then continue the rest and wait until it finished</p>
<p><strong>5.</strong> Now go back <em>C:\reaper-mangos-R4505-full\Backup</em> and this time you need to run the <strong>backup-importer.bat</strong> file, and continue the process like before until it finished</p>
<p><strong>6.</strong> Now for the last step, you just need to open mangosd.conf and edit the datadir path into the correct datadir path &hellip; that&rsquo;s it &hellip; you&rsquo;re done :)</p>
<p><img alt="Guess who is she ?" src="http://www.reaper-x.com/images/blogs/ilyasviel.jpg" border="0"  /></p>
<p><strong>If you&rsquo;re installing for the first time</strong> (some part copied from my previous <a href="http://www.reaper-x.com/2007/09/21/wow-mangos-4488-scriptdev2-134-with-project-silvermoon-db-rev17/" >wow mangos 4488 guide</a>) :P</p>
<p><strong>1.</strong> Copy the ad.exe from MapExtractor Directory into <em>C:\Program Files\World of Warcraft</em></p>
<p><strong>2.</strong> Create new folder called <strong>maps</strong>, and then run the <strong>ad.exe</strong> &hellip; and wait until this process finished (don&rsquo;t interrupt it)</p>
<p><strong>3.</strong> Copy all files inside VmapExtractAssembler into <em>C:\Program Files\World of Warcraft</em> and run the <strong>makevmaps_SIMPLE.bat</strong> &hellip; and wait again until it finished</p>
<p><strong>4.</strong> Copy all files inside DBC Extractor into <em>C:\Program Files\World of Warcraft\Data\enUS</em> &hellip; and run the <strong>extract.bat</strong> &hellip; and wait until it finished</p>
<p><strong>5.</strong> Move vmaps, maps, and dbc folder from your World of Warcraft installation path into <em>C:\reaper-mangos-R4505-full\data</em> (create folder named data first)</p>
<p><strong>6.</strong> Open Mangosd.conf using Wordpad &hellip; and then find this line :</p>
<p><strong>DataDir = &#8220;I:/WoW/Data&#8221;</strong></p>
<p>Change it to :</p>
<p><strong>&#8220;C:/reaper-mangos-R4505-full/data&#8221;</strong> (include the quotes)</p>
<p><strong>7.</strong> Go to <em>C:\reaper-mangos-R4505-full\reaper-eazy-mangos</em> and then run the <strong>import.bat</strong></p>
<p><strong>8.</strong> Open <strong>realmlist.wtf</strong> file from <em>C:\Program Files\World of Warcraft</em> using Notepad and change the :</p>
<p><em>set realmlist us.logon.worldofwarcraft.com</em></p>
<p>into</p>
<p><em>set realmlist 127.0.0.1</em></p>
<p><strong>11.</strong> Run <em>Mangosd.exe and Realmd.exe</em> (and keep it running)</p>
<p><strong>12.</strong> At the Mangosd window type these :</p>
<p><em>create MyUsername MyPassword</em></p>
<p><em>setgm MyUsername 3</em></p>
<p>to create a test user with MyUsername as username and MyPassword as password, see below image for an example :</p>
<p><img alt="Mangos create account" src="http://www.reaper-x.com/images/blogs/mangos-20create-20account.jpg" border="0"  /></p>
<p><strong>13.</strong> Now run the WoW.exe from your World of Warcraft Game Directory, for example <strong>C:\Program Files\World of Warcraft\WoW.exe</strong> (not the launcher)</p>
<p>and you&rsquo;re done :)</p>
<p><img alt="Fighting against dragon" src="http://www.reaper-x.com/images/blogs/wow-2dtbc-2dscrboss.jpg" border="0"  /></p>
<p>And now here&rsquo;s the link for&nbsp;the <a href="http://www.reaper-x.com/2007/09/21/wow-mangos-gm-game-master-commands/" >Mangos Commands</a></p>
<p>Okay that&rsquo;s it &hellip; if i&rsquo;m missing something just let me know :)</p>
<p><strong>Note to those who&rsquo;s changing the database name :</strong> If you changed the database name from the default name, you&rsquo;ll also need to change the db name manually in the <em>backup-importer.bat</em>, and <em>import.bat</em> &hellip; i&rsquo;ll add it for the next release as for now&nbsp;&hellip; you need to do it manually (i&rsquo;m sorry, i&nbsp;completely forgot about it &hellip; perhaps that&rsquo;s because i haven&rsquo;t sleep since yesterday and too tired to think &hellip;&nbsp;beside it&rsquo;s already morning here lol)</p>
	<p></p>
	<p><em>Copyright &copy; <a href="http://www.reaper-x.com"  title="Reaper-X Technology">Reaper-X Technology</a> &ndash; www.reaper-x.com | <a href="http://www.reaper-x.com/2007/09/25/wow-mangos-4505-scriptdev2-136-with-project-silvermoon-rev18/"  title="WoW Mangos 4505, ScriptDev2 136 with Project Silvermoon Rev18">Permalink</a> | <a href="http://www.reaper-x.com/2007/09/25/wow-mangos-4505-scriptdev2-136-with-project-silvermoon-rev18/#comments"  title="263 comments">263 comments</a></em></p>
	<p><em><a href="http://www.reaper-x.com" >0x87485B96</a> | Tags : <a href="http://www.reaper-x.com/category/technology/computer/software/emulators/" rel="nofollow"  title="View all posts in Emulators" rel="category tag">Emulators</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/freeware/" rel="nofollow"  title="View all posts in Freeware" rel="category tag">Freeware</a>,  <a href="http://www.reaper-x.com/category/video-games/mmorpg/" rel="nofollow"  title="View all posts in MMORPG" rel="category tag">MMORPG</a>,  <a href="http://www.reaper-x.com/category/how-to/quick-fix/" rel="nofollow"  title="View all posts in Quick Fix" rel="category tag">Quick Fix</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/" rel="nofollow"  title="View all posts in Software" rel="category tag">Software</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/windows/" rel="nofollow"  title="View all posts in Windows" rel="category tag">Windows</a></em></p>

<p>Related posts:<ul><li><a href='http://www.reaper-x.com/2007/09/21/wow-mangos-4488-scriptdev2-134-with-project-silvermoon-db-rev17/' rel='bookmark' title='Permanent Link: WoW Mangos 4488, ScriptDev2 134 with Project Silvermoon DB Rev17'>WoW Mangos 4488, ScriptDev2 134 with Project Silvermoon DB Rev17</a></li><li><a href='http://www.reaper-x.com/2007/10/29/reaper-mangos-4651-scriptdev2-151-with-project-silvermoon-and-unified-database/' rel='bookmark' title='Permanent Link: Reaper Mangos 4651, ScriptDev2 151 with Project Silvermoon and Unified Database'>Reaper Mangos 4651, ScriptDev2 151 with Project Silvermoon and Unified Database</a></li><li><a href='http://www.reaper-x.com/2007/10/23/mangos-4629-scriptdev2-150-with-silvermoon-185-and-udb-08-323-support-223/' rel='bookmark' title='Permanent Link: Mangos 4629, ScriptDev2 150 with Silvermoon 18.5 and UDB 0.8 323 support 2.2.3'>Mangos 4629, ScriptDev2 150 with Silvermoon 18.5 and UDB 0.8 323 support 2.2.3</a></li><li><a href='http://www.reaper-x.com/2007/10/03/mangos-4535-scriptdev2-137-work-with-wow-213-22-and-222/' rel='bookmark' title='Permanent Link: Mangos 4535 ScriptDev2 137 work with WoW 2.1.3, 2.2, and 2.2.2'>Mangos 4535 ScriptDev2 137 work with WoW 2.1.3, 2.2, and 2.2.2</a></li><li><a href='http://www.reaper-x.com/2007/10/15/mangos-4602-scriptdev2-145-with-unified-database-075-cs319-work-with-wow-213-to-223/' rel='bookmark' title='Permanent Link: Mangos 4602, ScriptDev2 145 with Unified Database 0.7.5 CS319 work with WoW 2.1.3 to 2.2.3'>Mangos 4602, ScriptDev2 145 with Unified Database 0.7.5 CS319 work with WoW 2.1.3 to 2.2.3</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2007/09/25/wow-mangos-4505-scriptdev2-136-with-project-silvermoon-rev18/feed/</wfw:commentRss>
		<slash:comments>263</slash:comments>
		</item>
		<item>
		<title>Installing and Setting up Apache 2.2 series with PHP 5 on Windows</title>
		<link>http://www.reaper-x.com/2007/09/24/installing-and-setting-up-apache-22-series-with-php-5-on-windows/</link>
		<comments>http://www.reaper-x.com/2007/09/24/installing-and-setting-up-apache-22-series-with-php-5-on-windows/#comments</comments>
		<pubDate>Mon, 24 Sep 2007 15:57:07 +0000</pubDate>
		<dc:creator>Reaper-X</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[apache 2.2]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[mangos]]></category>
		<category><![CDATA[mediafire]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php 5]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[private server]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[webserver]]></category>
		<category><![CDATA[wow]]></category>

		<guid isPermaLink="false">http://www.reaper-x.com/2007/09/24/installing-and-setting-up-apache-22-series-with-php-5-on-windows/</guid>
		<description><![CDATA[Previously i wrote a how to guide on installing Apache HTTPD 1.3 on Windows machine. But it seems that some people prefer to use the new Apache 2.2 series instead of the old httpd 1.3 series which is...


Related posts:<ul><li><a href='http://www.reaper-x.com/2007/07/09/installing-and-setting-up-apache-webserver-with-php-setting-up-private-wow-server/' rel='bookmark' title='Permanent Link: Installing and setting up Apache Webserver with PHP &#8211; Setting up Private WoW Server'>Installing and setting up Apache Webserver with PHP &#8211; Setting up Private WoW Server</a></li><li><a href='http://www.reaper-x.com/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/' rel='bookmark' title='Permanent Link: Complete Guide on Installing and Configuring Squid Proxy Server for Windows'>Complete Guide on Installing and Configuring Squid Proxy Server for Windows</a></li><li><a href='http://www.reaper-x.com/2006/08/23/apache-mod_rewrite-security-flaw/' rel='bookmark' title='Permanent Link: Apache mod_rewrite Security Flaw'>Apache mod_rewrite Security Flaw</a></li><li><a href='http://www.reaper-x.com/2007/06/27/mysql-installation-and-configuration-setting-up-private-wow-server/' rel='bookmark' title='Permanent Link: MySQL Installation and Configuration &#8211; Setting up Private WoW Server'>MySQL Installation and Configuration &#8211; Setting up Private WoW Server</a></li><li><a href='http://www.reaper-x.com/2007/09/15/using-wget-on-windows/' rel='bookmark' title='Permanent Link: Using WGet on Windows'>Using WGet on Windows</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p>Previously i wrote a how to guide on installing <a href="http://www.reaper-x.com/2007/07/09/installing-and-setting-up-apache-webserver-with-php-setting-up-private-wow-server/" >Apache HTTPD 1.3 on Windows</a> machine. But it seems that some people prefer to use the new Apache 2.2 series instead of the old httpd 1.3 series which is not good when used&nbsp;on production system (read: if you allow anyone to access your webserver), beside the apache website itself tell you this :</p>
<p><em>the older 1.3 series was never designed to run on Windows, but that support was &lsquo;hacked in&rsquo;, introducing a large number of potential thread saftey issues and other confirmed problems.</em></p>
<p>And that&rsquo;s why i choose to create the apache guide again but this time it is using the 2.2 series, and of course this guide tell you on how to setup your apache server with php 5 manually not using an all in one package. And here&rsquo;s the guide :</p>
<p><span id="more-632"></span></p>
<p><strong>Requirements :</strong></p>
<p>1. <a href="http://archive.apache.org/dist/httpd/binaries/win32/" >Apache 2.2.x</a> : At the time i wrote this guide, the latest stable version is 2.2.26 (btw get the non-ssl version unless you plan on using ssl)</p>
<p>2. <a href="http://www.php.net/" >PHP 5.2.x</a> : 5.2.4 is the latest stable version when i wrote this (get the zip version, not the installer)</p>
<p><strong>And here are the steps :</strong></p>
<p><em>Note : in this example i&rsquo;m using the default installation path for Apache 2.2</em></p>
<p><strong>1.</strong> Install Apache 2.2 until below screen appears and use this information (or adjust it to your liking) and then continue the process until finished :)</p>
<p><img alt="Apache Installation Process" src="http://www.reaper-x.com/images/blogs/installation.jpg" border="0"  /></p>
<p><strong>2.</strong> To make sure Apache is working now you need to open your browser window and type <strong>http://localhost</strong> as the address, and if you get the same message like below image that mean apache is working</p>
<p><img alt="Apache Default Page" src="http://www.reaper-x.com/images/blogs/apache-20default-20page.jpg" border="0"  /></p>
<p><strong>3.</strong> Thanks God the Apache seems to work &hellip; but now you&rsquo;ll need to configure apache so it&rsquo;ll recognize the php files and can parse the php files correctly. And the first thing you should do is extracting the PHP zip archive somewhere, and in this example i extracted the php 5.2.4 files into <strong>C:\PHP-5</strong></p>
<p><strong>4.</strong> After finished with the extraction process, now you just need to go to your Apache installation path, and then <strong>open httpd.conf</strong> which is located under the <strong>conf directory</strong> using your favorite text editor. Btw if you installed apache using the default path, here&rsquo;s what the apache directory structure looks like</p>
<p><img alt="Apache 2.2 Path" src="http://www.reaper-x.com/images/blogs/apache-202.2-20path.jpg" border="0"  /></p>
<p><strong>5.</strong> In order for apache to parse the php files correctly, first you need to Load the PHP5 module into the Apache, and to do this you just need to add below line to your <strong>Apache httpd.conf</strong> (after the last line of the loadmodule section) :</p>
<p><strong>LoadModule php5_module &#8220;c:/php-5/php5apache2_2.dll&#8221;</strong></p>
<p><em>Note : Adjust the php path accordingly if you extracted it into other directory</em></p>
<p>And here&rsquo;s the image :</p>
<p><img alt="Php loadmodule apache 2.2" src="http://www.reaper-x.com/images/blogs/php-20loadmodule-20apache-202.2.jpg" border="0"  /></p>
<p><strong>5.1</strong> Now you need to search for (use&nbsp;your text editor built-in search function)&nbsp;:</p>
<p><strong>&lt;IfModule mime_module&gt;</strong></p>
<p>and then add these lines inside that directive (before the closing <strong>&lt;/IfModule&gt; for mime_module</strong> )</p>
<p><strong>AddType application/x-httpd-php .php<br />AddType application/x-httpd-php-source .phps</strong></p>
<p><strong>6.</strong> After finished with the above process, now you&rsquo;ll need to configure apache so it&rsquo;ll check the existence of index.php by default too instead of just checking the index.html only for the default index filename, and here&rsquo;s how to do it</p>
<p><em>The default configuration from Apache 2.2 :</em></p>
<p><strong>&lt;IfModule dir_module&gt;<br />DirectoryIndex index.html<br />&lt;/IfModule&gt;</strong></p>
<p><em>The modified version :</em></p>
<p><strong>&lt;IfModule dir_module&gt;<br />DirectoryIndex index.html index.php<br />&lt;/IfModule&gt;</strong></p>
<p>Notice the difference ? i&rsquo;m pretty sure you&rsquo;ll notice it right away &hellip; but like everyone knew that a&nbsp;picture worth a thousand words (read: because&nbsp;my English language is bad), so here goes the picture</p>
<p><img alt="Apache directory index" src="http://www.reaper-x.com/images/blogs/apache-20directory-20index1.jpg" border="0"  /></p>
<p><strong>7.</strong> Now we are done with the httpd section, now we need to configure php. Here are how to do that :</p>
<p><strong>7.1 Copy php.ini-recommended</strong> from your php5 directory into <strong>C:\Windows (or your windows path)</strong>&nbsp;and then rename it into <strong>php.ini</strong></p>
<p><strong>7.2</strong> Open the php.ini file using notepad and change the extension_dir&nbsp;as shown on below image :</p>
<p><img alt="Php extension dir" src="http://www.reaper-x.com/images/blogs/php-20extension-20dir.jpg" border="0"  /></p>
<p><strong>7.3</strong> Now you need to copy some dlls from your php 5 directory into <strong>C:\Windows\System32</strong> :</p>
<p><img alt="Php dlls" src="http://www.reaper-x.com/images/blogs/php-20dlls.jpg" border="0"  /></p>
<p>Im pretty sure that you can&rsquo;t read the filename from the above image,&nbsp;but&nbsp;don&rsquo;t worry because all you have to do is just&nbsp;:</p>
<p><em>Right click&nbsp;and choose <strong>Arrange Icons by&nbsp;name</strong>, and then copy each file shown on the above image into your windows system32 directory, and you&rsquo;re done (hint: hold CTRL key to select multiple files)</em></p>
<p><em>Or &hellip; copy all dll files at the root of your php directory into your system32 directory except&nbsp;those that is using php5*.dll</em></p>
<p><strong>8.</strong> Now we&rsquo;ve configured php, apache &hellip; but what else do we need ? of course we need to make sure that php really working and apache can parse it without problem, so we need to create a php test page first, here&rsquo;s how to do it :</p>
<p><strong>8.1</strong> Create a file named <strong>test.php</strong> inside <strong>C:\Program Files\Apache Software Foundation\Apache2.2\htdocs</strong> (because that&rsquo;s where the default document root path of your apache)</p>
<p><strong>8.2</strong> Add below line to the <strong>test.php</strong> file like shown on below image, then save and close the notepad</p>
<p><img alt="Create php test file" src="http://www.reaper-x.com/images/blogs/create-20php-20test-20file.jpg" border="0"  /></p>
<p><strong>9.</strong> Okay &hellip; finally we&rsquo;ve reached the final stage !!! now you just need to open command prompt and type like below image :</p>
<p><img alt="Apache 2.2 restart" src="http://www.reaper-x.com/images/blogs/apache-202.2-20restart.jpg" border="0"  /></p>
<p>If you can&rsquo;t read what you should type from the above image, actually you just need to type :</p>
<p><strong>net stop apache2.2 &amp;&amp; net start apache2.2</strong></p>
<p>to restart your apache 2.2 process</p>
<p><strong>10.</strong> Now after finished restarting the apache process, we need to open the browser window and point to <strong>http://localhost/test.php</strong></p>
<p><img alt="Php test page" src="http://www.reaper-x.com/images/blogs/php-20test-20page.jpg" border="0"  /></p>
<p>If you see something shown&nbsp;like on the above image, that means Apache and PHP is working on your system</p>
<p>Congrats &hellip; now you&rsquo;ve got apache and php 5 working on your system the only thing left is &hellip; adding mysql support (if you plan on using a registration page for your Mangos Server or other private server), and to do this you just need to remove the <strong>;</strong> from the extensions, for more information, you can download the <a href="http://www.mediafire.com/?a5y2xm4g9xo"  rel="nofollow">sample php.ini and httpd.conf as a supplement for this short how to guide</a></p>
<p><em>Hint : Compare the sample php.ini file you&rsquo;ve downloaded&nbsp;with the default php.ini file from the php.ini files included in PHP archive (in this case you can find it on your windows directory)</em></p>
<p>Hopefully i didn&rsquo;t miss anything, but if you do notice that i miss something, please let me know so i can fix it or add it&nbsp;:)</p>
<p><em>Thanks to&nbsp;</em><a href="http://www.reaper-x.com/2007/07/09/installing-and-setting-up-apache-webserver-with-php-setting-up-private-wow-server/#comment-22219" ><em>Al</em></a><em> for the suggestion :)</em></p>
	<p></p>
	<p><em>Copyright &copy; <a href="http://www.reaper-x.com"  title="Reaper-X Technology">Reaper-X Technology</a> &ndash; www.reaper-x.com | <a href="http://www.reaper-x.com/2007/09/24/installing-and-setting-up-apache-22-series-with-php-5-on-windows/"  title="Installing and Setting up Apache 2.2 series with PHP 5 on Windows">Permalink</a> | <a href="http://www.reaper-x.com/2007/09/24/installing-and-setting-up-apache-22-series-with-php-5-on-windows/#comments"  title="246 comments">246 comments</a></em></p>
	<p><em><a href="http://www.reaper-x.com" >0x87485B96</a> | Tags : <a href="http://www.reaper-x.com/category/how-to/" rel="nofollow"  title="View all posts in How To" rel="category tag">How To</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/php/" rel="nofollow"  title="View all posts in PHP" rel="category tag">PHP</a>,  <a href="http://www.reaper-x.com/category/how-to/tutorials/" rel="nofollow"  title="View all posts in Tutorials" rel="category tag">Tutorials</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/windows/" rel="nofollow"  title="View all posts in Windows" rel="category tag">Windows</a></em></p>

<p>Related posts:<ul><li><a href='http://www.reaper-x.com/2007/07/09/installing-and-setting-up-apache-webserver-with-php-setting-up-private-wow-server/' rel='bookmark' title='Permanent Link: Installing and setting up Apache Webserver with PHP &#8211; Setting up Private WoW Server'>Installing and setting up Apache Webserver with PHP &#8211; Setting up Private WoW Server</a></li><li><a href='http://www.reaper-x.com/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/' rel='bookmark' title='Permanent Link: Complete Guide on Installing and Configuring Squid Proxy Server for Windows'>Complete Guide on Installing and Configuring Squid Proxy Server for Windows</a></li><li><a href='http://www.reaper-x.com/2006/08/23/apache-mod_rewrite-security-flaw/' rel='bookmark' title='Permanent Link: Apache mod_rewrite Security Flaw'>Apache mod_rewrite Security Flaw</a></li><li><a href='http://www.reaper-x.com/2007/06/27/mysql-installation-and-configuration-setting-up-private-wow-server/' rel='bookmark' title='Permanent Link: MySQL Installation and Configuration &#8211; Setting up Private WoW Server'>MySQL Installation and Configuration &#8211; Setting up Private WoW Server</a></li><li><a href='http://www.reaper-x.com/2007/09/15/using-wget-on-windows/' rel='bookmark' title='Permanent Link: Using WGet on Windows'>Using WGet on Windows</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2007/09/24/installing-and-setting-up-apache-22-series-with-php-5-on-windows/feed/</wfw:commentRss>
		<slash:comments>246</slash:comments>
		</item>
		<item>
		<title>Pidgin 2.2 has been released</title>
		<link>http://www.reaper-x.com/2007/09/17/pidgin-22-has-been-released/</link>
		<comments>http://www.reaper-x.com/2007/09/17/pidgin-22-has-been-released/#comments</comments>
		<pubDate>Sun, 16 Sep 2007 17:41:36 +0000</pubDate>
		<dc:creator>Reaper-X</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[msn]]></category>
		<category><![CDATA[pidgin]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://www.reaper-x.com/2007/09/17/pidgin-22-is-has-been-released/</guid>
		<description><![CDATA[Pidgin , one of the most popular multi-protocol instant messaging client for Windows and Linux (and my favorite instant messaging client) that has built-in support for 16 instant messaging protocols s...


Related posts:<ul><li><a href='http://www.reaper-x.com/2006/11/04/do-you-meebo/' rel='bookmark' title='Permanent Link: Do you Meebo ?'>Do you Meebo ?</a></li><li><a href='http://www.reaper-x.com/2006/11/20/webcleaner-24-released/' rel='bookmark' title='Permanent Link: Webcleaner 2.4 Released'>Webcleaner 2.4 Released</a></li><li><a href='http://www.reaper-x.com/2006/12/11/vlc-media-player-086-released/' rel='bookmark' title='Permanent Link: VLC Media Player 0.8.6 Released'>VLC Media Player 0.8.6 Released</a></li><li><a href='http://www.reaper-x.com/2006/07/16/ypops-free-pop3smtp-access-to-yahoo-mail/' rel='bookmark' title='Permanent Link: YPOPs! :: Free POP3/SMTP access to Yahoo Mail!'>YPOPs! :: Free POP3/SMTP access to Yahoo Mail!</a></li><li><a href='http://www.reaper-x.com/2007/08/06/wordpress-222-and-2011-released/' rel='bookmark' title='Permanent Link: Wordpress 2.2.2 and 2.0.11 Released'>Wordpress 2.2.2 and 2.0.11 Released</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" alt="Pidgin" src="http://www.reaper-x.com/images/blogs/pidgin.gif" border="0" /><a href="http://www.pidgin.im/" >Pidgin</a>, one of the most popular multi-protocol instant messaging client for Windows and Linux (and my favorite instant messaging client) that has built-in support for 16 instant messaging protocols so far (AIM, Bonjour, Gadu-Gadu, Google Talk, Groupwise, ICQ, IRC, MSN, MySpaceIM, QQ, SILC, SIMPLE, Sametime, XMPP, Yahoo!, Zephyr) now has reached version 2.2</p>
<p>And just like it&rsquo;s previous release, this new version fixed several issue to some of the supported protocols in pidgin, while also adding a new&nbsp;protocol plugin&nbsp;for MySpaceIM (which is still unknown to me, simply because i don&rsquo;t use MySpace)</p>
<p><span id="more-611"></span></p>
<p>Some changelogs from this version are :</p>
<ul>
<li><strong>New protocol plugin:</strong> MySpaceIM</li>
<li>Some adjustments to fix sending messages when using the MSN HTTP method</li>
<li>Yahoo! Chat is fixed</li>
<li>AIM file transfer issues between Pidgin and other clients have been fixed</li>
<li>Properly restore idle status and time for AIM and ICQ accounts when they reconnect after being disconnected</li>
<li>Remember the &#8216;Enable Sounds&#8217; setting for a conversation</li>
</ul>
<p>To be honest, actually i&#8217;m only using the MSN and YM protocol simply because most of my friends here use YM as their IM client while the MSN account is mostly used&nbsp;to chat with other people from outside of my country</p>
<p>But, just in case you&rsquo;re looking for a replacement for your YM or MSN program, i&rsquo;d definitely recommend this program especially to those who&rsquo;s running more than 2 IM program at the same time</p>
	<p></p>
	<p><em>Copyright &copy; <a href="http://www.reaper-x.com"  title="Reaper-X Technology">Reaper-X Technology</a> &ndash; www.reaper-x.com | <a href="http://www.reaper-x.com/2007/09/17/pidgin-22-has-been-released/"  title="Pidgin 2.2 has been released">Permalink</a> | <a href="http://www.reaper-x.com/2007/09/17/pidgin-22-has-been-released/#comments"  title="Add a comment">Add a comment</a></em></p>
	<p><em><a href="http://www.reaper-x.com" >0x87485B96</a> | Tags : <a href="http://www.reaper-x.com/category/technology/computer/software/open-source/" rel="nofollow"  title="View all posts in Open Source" rel="category tag">Open Source</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/" rel="nofollow"  title="View all posts in Software" rel="category tag">Software</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/windows/" rel="nofollow"  title="View all posts in Windows" rel="category tag">Windows</a></em></p>

<p>Related posts:<ul><li><a href='http://www.reaper-x.com/2006/11/04/do-you-meebo/' rel='bookmark' title='Permanent Link: Do you Meebo ?'>Do you Meebo ?</a></li><li><a href='http://www.reaper-x.com/2006/11/20/webcleaner-24-released/' rel='bookmark' title='Permanent Link: Webcleaner 2.4 Released'>Webcleaner 2.4 Released</a></li><li><a href='http://www.reaper-x.com/2006/12/11/vlc-media-player-086-released/' rel='bookmark' title='Permanent Link: VLC Media Player 0.8.6 Released'>VLC Media Player 0.8.6 Released</a></li><li><a href='http://www.reaper-x.com/2006/07/16/ypops-free-pop3smtp-access-to-yahoo-mail/' rel='bookmark' title='Permanent Link: YPOPs! :: Free POP3/SMTP access to Yahoo Mail!'>YPOPs! :: Free POP3/SMTP access to Yahoo Mail!</a></li><li><a href='http://www.reaper-x.com/2007/08/06/wordpress-222-and-2011-released/' rel='bookmark' title='Permanent Link: Wordpress 2.2.2 and 2.0.11 Released'>Wordpress 2.2.2 and 2.0.11 Released</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2007/09/17/pidgin-22-has-been-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using WGet on Windows</title>
		<link>http://www.reaper-x.com/2007/09/15/using-wget-on-windows/</link>
		<comments>http://www.reaper-x.com/2007/09/15/using-wget-on-windows/#comments</comments>
		<pubDate>Sat, 15 Sep 2007 13:19:56 +0000</pubDate>
		<dc:creator>Reaper-X</dc:creator>
				<category><![CDATA[Guide]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Internet Tools]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[download manager]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Flashgot]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[wget]]></category>
		<category><![CDATA[wget windows]]></category>

		<guid isPermaLink="false">http://www.reaper-x.com/2007/09/15/using-wget-on-windows/</guid>
		<description><![CDATA[How to use Wget on Windows with Flashgot extension for Firefox to make it as your Download Manager


Related posts:<ul><li><a href='http://www.reaper-x.com/2007/03/22/ssh-access-and-wget-on-hostgator/' rel='bookmark' title='Permanent Link: SSH Access and WGET on Hostgator'>SSH Access and WGET on Hostgator</a></li><li><a href='http://www.reaper-x.com/2007/03/06/downloading-and-configuring-windows-to-play-flash-video-flv-file-the-hard-way/' rel='bookmark' title='Permanent Link: Downloading and Configuring Windows to Play Flash Video (FLV) File &#8211; The Hard Way'>Downloading and Configuring Windows to Play Flash Video (FLV) File &#8211; The Hard Way</a></li><li><a href='http://www.reaper-x.com/2008/07/02/how-to-compile-mangos-and-scriptdev2-for-windows/' rel='bookmark' title='Permanent Link: How to Compile Mangos and Scriptdev2 for Windows'>How to Compile Mangos and Scriptdev2 for Windows</a></li><li><a href='http://www.reaper-x.com/2006/07/17/mozilla-firefox-bon-echo/' rel='bookmark' title='Permanent Link: Mozilla Firefox Bon Echo'>Mozilla Firefox Bon Echo</a></li><li><a href='http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/' rel='bookmark' title='Permanent Link: Set up Caching Nameserver on Windows using BIND'>Set up Caching Nameserver on Windows using BIND</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p>Just in case you&rsquo;re like me that can&#8217;t trust free download manager anymore or just want a little program that can resume your download at later time and doesn&rsquo;t use many resources .. i&rsquo;d suggest you to use WGet for Windows (if you&rsquo;re a Linux user i believe WGet already installed on your machine)</p>
<p>To start off there are few links to where you can grab WGet for Windows (feel free to choose)</p>
<p><span id="more-607"></span></p>
<ol>
<li><a href="http://www.christopherlewis.com/WGet/WGetFiles.htm" >Christopher Lewis Wget Page</a><a href="http://www.christopherlewis.com/WGet/WGetFiles.htm" ></a></li>
<li><a href="http://gnuwin32.sourceforge.net/packages/wget.htm" >GNUWin32 Wget Package</a><a href="http://gnuwin32.sourceforge.net/packages/wget.htm" ></a></li>
<li><a href="http://users.ugent.be/~bpuype/wget/" >Bpuype Wget File</a><a href="http://users.ugent.be/~bpuype/wget/" ></a></li>
</ol>
<p>Although if it&rsquo;s for me,&nbsp;i just grab the Christopher&rsquo;s Visual Studio Project file combined with <a href="svn://addictivecode.org/wget/trunk" >Wget from it&rsquo;s SVN repository</a> because&nbsp;i prefer to compile it by myself (to make few adjustment to the user agent so it&rsquo;ll use Mozilla Firefox User agent by default and also other Mozilla Firefox Header), but let&rsquo;s keep this aside shall we ? :P</p>
<p>Okay now, i assume you&rsquo;ve downloaded your WGet files, and already extracted it somewhere in your harddrive. The next step would be, adding your WGet path into Windows Environment Variables Path, so you can access it easily from anywhere</p>
<p>Step to do it :</p>
<ol>
<li>Open <strong>Windows System Properties</strong> page (Press Windows Key + Pause / Break) or Right click on my computer and choose properties</li>
<li>Choose the <strong>Advanced Tab</strong> and then click on <strong>Environment Variables</strong></li>
<li>Add new <strong>Path Variable</strong> to your username or edit the Path variable for your system</li>
<li>Add this line like below image (adjust your wget path accordingly)</li>
</ol>
<p><img alt="Wget Environment Variables" src="http://www.reaper-x.com/images/blogs/wget-2dwindows.jpg" border="0" / /></p>
<p>And you&rsquo;re done &hellip; now you can type <strong>Wget</strong> anywhere from the command prompt :)</p>
<p>But wait &hellip; if you&rsquo;re using Mozilla Firefox, you can also use Wget to download something from the web, and in order to do this you just need to install <a href="http://flashgot.net/" >FlashGot Extension for Firefox</a>, and then add this line to the Flashgot&nbsp;command line arguments&nbsp;:</p>
<p>Quoted from Flashgot page :</p>
<blockquote>
<p>-c [--directory-prefix=FOLDER] [--referer=REFERER] [--post-data=POST] [--load-cookies=CFILE] [--header=Cookie:COOKIE] [--input-file=UFILE]</p>
</blockquote>
<p>And you&rsquo;re finished :)</p>
<p>Well basically the above should be working fine with Firefox 2, but because Firefox 3 recently released to the public, i&#8217;m having problem with the Command Prompt window not showing although the wget process is running in the background (it&rsquo;s listed on the task manager but the window can&rsquo;t be seen)</p>
<p>And so if you&rsquo;re running Firefox 3, you can try using these configurations instead of the above:</p>
<p><code>Executable Path:<br />C:\Windows\System32\cmd.exe</code></p>
<p><code>Command Line arguments template:<br />/C start wget -c [--directory-prefix=FOLDER] [--referer=REFERER] [--post-data=POST] [--load-cookies=CFILE] [--header=Cookie:COOKIE] [--input-file=UFILE]</code></p>
<p>And voila &hellip; you can see the downloading process again just like on Firefox 2 ;)</p>
	<p></p>
	<p><em>Copyright &copy; <a href="http://www.reaper-x.com"  title="Reaper-X Technology">Reaper-X Technology</a> &ndash; www.reaper-x.com | <a href="http://www.reaper-x.com/2007/09/15/using-wget-on-windows/"  title="Using WGet on Windows">Permalink</a> | <a href="http://www.reaper-x.com/2007/09/15/using-wget-on-windows/#comments"  title="One comment">One comment</a></em></p>
	<p><em><a href="http://www.reaper-x.com" >0x87485B96</a> | Tags : <a href="http://www.reaper-x.com/category/how-to/guide/" rel="nofollow"  title="View all posts in Guide" rel="category tag">Guide</a>,  <a href="http://www.reaper-x.com/category/how-to/" rel="nofollow"  title="View all posts in How To" rel="category tag">How To</a>,  <a href="http://www.reaper-x.com/category/internet/internet-tools/" rel="nofollow"  title="View all posts in Internet Tools" rel="category tag">Internet Tools</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/open-source/" rel="nofollow"  title="View all posts in Open Source" rel="category tag">Open Source</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/" rel="nofollow"  title="View all posts in Software" rel="category tag">Software</a>,  <a href="http://www.reaper-x.com/category/how-to/tutorials/" rel="nofollow"  title="View all posts in Tutorials" rel="category tag">Tutorials</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/windows/" rel="nofollow"  title="View all posts in Windows" rel="category tag">Windows</a></em></p>

<p>Related posts:<ul><li><a href='http://www.reaper-x.com/2007/03/22/ssh-access-and-wget-on-hostgator/' rel='bookmark' title='Permanent Link: SSH Access and WGET on Hostgator'>SSH Access and WGET on Hostgator</a></li><li><a href='http://www.reaper-x.com/2007/03/06/downloading-and-configuring-windows-to-play-flash-video-flv-file-the-hard-way/' rel='bookmark' title='Permanent Link: Downloading and Configuring Windows to Play Flash Video (FLV) File &#8211; The Hard Way'>Downloading and Configuring Windows to Play Flash Video (FLV) File &#8211; The Hard Way</a></li><li><a href='http://www.reaper-x.com/2008/07/02/how-to-compile-mangos-and-scriptdev2-for-windows/' rel='bookmark' title='Permanent Link: How to Compile Mangos and Scriptdev2 for Windows'>How to Compile Mangos and Scriptdev2 for Windows</a></li><li><a href='http://www.reaper-x.com/2006/07/17/mozilla-firefox-bon-echo/' rel='bookmark' title='Permanent Link: Mozilla Firefox Bon Echo'>Mozilla Firefox Bon Echo</a></li><li><a href='http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/' rel='bookmark' title='Permanent Link: Set up Caching Nameserver on Windows using BIND'>Set up Caching Nameserver on Windows using BIND</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2007/09/15/using-wget-on-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft silently update Windows without notice</title>
		<link>http://www.reaper-x.com/2007/09/14/microsoft-silently-update-windows-without-notice/</link>
		<comments>http://www.reaper-x.com/2007/09/14/microsoft-silently-update-windows-without-notice/#comments</comments>
		<pubDate>Thu, 13 Sep 2007 17:55:53 +0000</pubDate>
		<dc:creator>Reaper-X</dc:creator>
				<category><![CDATA[Tech News]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.reaper-x.com/2007/09/14/microsoft-silently-update-windows-without-notice/</guid>
		<description><![CDATA[According to this article by Windowssecrets.com , it seems that Microsoft updating several files inside the System32 directory without notice, even if the auto updates itself have been disabled on the...


Related posts:<ul><li><a href='http://www.reaper-x.com/2006/07/15/microsoft-windows-july-2006-security-update-iso/' rel='bookmark' title='Permanent Link: Microsoft Windows July 2006 Security Update ISO'>Microsoft Windows July 2006 Security Update ISO</a></li><li><a href='http://www.reaper-x.com/2007/02/21/windows-update-downloader/' rel='bookmark' title='Permanent Link: Windows Update Downloader'>Windows Update Downloader</a></li><li><a href='http://www.reaper-x.com/2007/10/05/internet-explorer-7-now-comes-without-windows-genuine-validation/' rel='bookmark' title='Permanent Link: Internet Explorer 7 now comes without Windows Genuine Validation'>Internet Explorer 7 now comes without Windows Genuine Validation</a></li><li><a href='http://www.reaper-x.com/2006/07/12/bypassing-windows-genuine-activation/' rel='bookmark' title='Permanent Link: Bypassing Windows Genuine Activation'>Bypassing Windows Genuine Activation</a></li><li><a href='http://www.reaper-x.com/2007/09/24/installing-and-setting-up-apache-22-series-with-php-5-on-windows/' rel='bookmark' title='Permanent Link: Installing and Setting up Apache 2.2 series with PHP 5 on Windows'>Installing and Setting up Apache 2.2 series with PHP 5 on Windows</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p>According to <a href="http://windowssecrets.com/2007/09/13/01-Microsoft-updates-Windows-without-users-consent" >this article by Windowssecrets.com</a>,&nbsp;it seems that Microsoft updating several files&nbsp;inside the System32 directory&nbsp;without notice, even if the auto updates itself have been disabled on the user machine</p>
<blockquote>
<p>The Automatic Updates dialog box in the Control Panel can be set to prevent updates from being installed automatically. However, with Microsoft&#8217;s latest stealth move, updates to the WU executables seem to be installed regardless of the settings&nbsp;without notifying users.</p>
</blockquote>
<p>I&rsquo;ve tried&nbsp;checking&nbsp;several files listed from their website&nbsp;(wuauclt.exe, wuapi.dll, etc)&nbsp;and&nbsp;i didn&rsquo;t see anything changed&nbsp;on my Windows XP box, but i&rsquo;m pretty sure that&rsquo;s because i haven&rsquo;t updated my Windows XP SP2 Machine in the last few months</p>
<blockquote>
<p>If a system has been patched in the past few months, the nine executables in Windows\System32 will either show an earlier version number, 7.0.6000.374, or the stealth patch: 7.0.6000.381</p>
</blockquote>
<p>I guess it&rsquo;s better for me to stick with Slipstreamed XP CD after all even though my slipstreamed xp cd is still using the old version of RyanVM XP-SP2 Update Pack</p>
	<p></p>
	<p><em>Copyright &copy; <a href="http://www.reaper-x.com"  title="Reaper-X Technology">Reaper-X Technology</a> &ndash; www.reaper-x.com | <a href="http://www.reaper-x.com/2007/09/14/microsoft-silently-update-windows-without-notice/"  title="Microsoft silently update Windows without notice">Permalink</a> | <a href="http://www.reaper-x.com/2007/09/14/microsoft-silently-update-windows-without-notice/#comments"  title="2 comments">2 comments</a></em></p>
	<p><em><a href="http://www.reaper-x.com" >0x87485B96</a> | Tags : <a href="http://www.reaper-x.com/category/technology/tech-news/" rel="nofollow"  title="View all posts in Tech News" rel="category tag">Tech News</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/windows/" rel="nofollow"  title="View all posts in Windows" rel="category tag">Windows</a></em></p>

<p>Related posts:<ul><li><a href='http://www.reaper-x.com/2006/07/15/microsoft-windows-july-2006-security-update-iso/' rel='bookmark' title='Permanent Link: Microsoft Windows July 2006 Security Update ISO'>Microsoft Windows July 2006 Security Update ISO</a></li><li><a href='http://www.reaper-x.com/2007/02/21/windows-update-downloader/' rel='bookmark' title='Permanent Link: Windows Update Downloader'>Windows Update Downloader</a></li><li><a href='http://www.reaper-x.com/2007/10/05/internet-explorer-7-now-comes-without-windows-genuine-validation/' rel='bookmark' title='Permanent Link: Internet Explorer 7 now comes without Windows Genuine Validation'>Internet Explorer 7 now comes without Windows Genuine Validation</a></li><li><a href='http://www.reaper-x.com/2006/07/12/bypassing-windows-genuine-activation/' rel='bookmark' title='Permanent Link: Bypassing Windows Genuine Activation'>Bypassing Windows Genuine Activation</a></li><li><a href='http://www.reaper-x.com/2007/09/24/installing-and-setting-up-apache-22-series-with-php-5-on-windows/' rel='bookmark' title='Permanent Link: Installing and Setting up Apache 2.2 series with PHP 5 on Windows'>Installing and Setting up Apache 2.2 series with PHP 5 on Windows</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2007/09/14/microsoft-silently-update-windows-without-notice/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Flashget 1.92 constantly sending unknown packet to various servers</title>
		<link>http://www.reaper-x.com/2007/08/29/flashget-192-constantly-sending-unknown-packet-to-various-servers/</link>
		<comments>http://www.reaper-x.com/2007/08/29/flashget-192-constantly-sending-unknown-packet-to-various-servers/#comments</comments>
		<pubDate>Wed, 29 Aug 2007 09:26:48 +0000</pubDate>
		<dc:creator>Reaper-X</dc:creator>
				<category><![CDATA[Journal]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[wget]]></category>

		<guid isPermaLink="false">http://www.reaper-x.com/2007/08/29/flashget-192-constantly-sending-unknown-packet-to-various-servers/</guid>
		<description><![CDATA[So recently i just upgraded the old Flashget 1.80 which is installed on my computer since few months ago (if i remembered it correctly) to the new Flashget 1.92. While i must agree the new Flashget 1....


Related posts:<ul><li><a href='http://www.reaper-x.com/2007/02/17/alexa-traffic-details-now-showing-a-detailed-information/' rel='bookmark' title='Permanent Link: Alexa Traffic details now showing a detailed information'>Alexa Traffic details now showing a detailed information</a></li><li><a href='http://www.reaper-x.com/2006/08/04/the-best-hackers-on-earth/' rel='bookmark' title='Permanent Link: The best hackers on earth ?'>The best hackers on earth ?</a></li><li><a href='http://www.reaper-x.com/2006/10/13/why-adsl-in-indonesia-is-not-that-good/' rel='bookmark' title='Permanent Link: Why ADSL in Indonesia is not that good'>Why ADSL in Indonesia is not that good</a></li><li><a href='http://www.reaper-x.com/2006/11/10/telkom-speedy-adsl-access-at-dial-up-speed/' rel='bookmark' title='Permanent Link: Telkom Speedy, ADSL Access at Dial Up speed'>Telkom Speedy, ADSL Access at Dial Up speed</a></li><li><a href='http://www.reaper-x.com/2007/10/19/baidu-hijacking-traffic-from-major-search-engine/' rel='bookmark' title='Permanent Link: Baidu hijacking traffic from Major Search Engine ?'>Baidu hijacking traffic from Major Search Engine ?</a></li></ul>]]></description>
			<content:encoded><![CDATA[<p>So recently i just upgraded the old Flashget 1.80 which is&nbsp;installed on my computer since few months ago (if i remembered it correctly) to the new Flashget 1.92. While i must agree the new Flashget 1.92 is giving a cleaner user interface compared to it&rsquo;s previous version. But yesterday when i just finished downloading several files from various website using&nbsp;Flashget, i found out that the PPP Led Indicator on my adsl router keep blinking (which indicates there&rsquo;s&nbsp;internet activity done from my computer) even though i&rsquo;m not using my internet connection</p>
<p><span id="more-599"></span></p>
<p>Because i find it&rsquo;s strange for me to see the PPP Indicator on the adsl router keep blinking, i tried to lookup by running <strong>netstat</strong> from the command prompt and&nbsp;found these&nbsp;<em>address:port</em> which is obviously not there previously &hellip;</p>
<p>59.151.31.139:53 (China)<br />219.239.90.172:28221 (China)<br />72.51.37.237:8899 (United States)<br />66.199.250.170:8911 (United States)</p>
<p><em>Note : I&rsquo;ve disabled automatic update, Emule, and shareurl service, and also not downloading / seeding torrent</em></p>
<p>So &hellip; i tried searching around the web for more information to the above address and found&nbsp;some useful information&nbsp;from <a href="http://www.softpedia.com/get/Internet/Download-Managers/FlashGet.shtml" >Softpedia</a> and <a rel="nofollow" href="http://en.wikipedia.org/wiki/FlashGet" >Wikipedia</a></p>
<p>Quoted from Wikipedia :</p>
<blockquote>
<p>Although Softpedia had marked Flashget as having a &#8220;5-star Editor Review&#8221; award (for version 1.8), since 1.9 Softpedia has revoked their &#8220;100% Clean Award&#8221;, because as soon as it is started, the program tries to call various servers around the world every 3 seconds. This is also why they no longer host the latest version.</p>
</blockquote>
<p>Quoted from Softpedia :</p>
<blockquote>
<p>Softpedia no longer hosts the latest version of Flashget, because FlashGet 1.9.0, as soon as it is started, tries to call various servers around the world every 3 seconds. This is also the reason why FlashGet no longer has the Softpedia &#8220;100% Clean&#8221; award.</p>
</blockquote>
<p>in the end &hellip; because i no longer trust Flashget (and not planning on reverting to the old flashget version), i&rsquo;ve decided to&nbsp;go back to&nbsp;<a href="http://www.gnu.org/software/wget/" >one of my favorite downloader</a>&nbsp;(W32 Built)</p>
	<p></p>
	<p><em>Copyright &copy; <a href="http://www.reaper-x.com"  title="Reaper-X Technology">Reaper-X Technology</a> &ndash; www.reaper-x.com | <a href="http://www.reaper-x.com/2007/08/29/flashget-192-constantly-sending-unknown-packet-to-various-servers/"  title="Flashget 1.92 constantly sending unknown packet to various servers">Permalink</a> | <a href="http://www.reaper-x.com/2007/08/29/flashget-192-constantly-sending-unknown-packet-to-various-servers/#comments"  title="2 comments">2 comments</a></em></p>
	<p><em><a href="http://www.reaper-x.com" >0x87485B96</a> | Tags : <a href="http://www.reaper-x.com/category/miscellaneous/journal/" rel="nofollow"  title="View all posts in Journal" rel="category tag">Journal</a>,  <a href="http://www.reaper-x.com/category/technology/computer/privacy/" rel="nofollow"  title="View all posts in Privacy" rel="category tag">Privacy</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/" rel="nofollow"  title="View all posts in Software" rel="category tag">Software</a>,  <a href="http://www.reaper-x.com/category/technology/computer/software/windows/" rel="nofollow"  title="View all posts in Windows" rel="category tag">Windows</a></em></p>

<p>Related posts:<ul><li><a href='http://www.reaper-x.com/2007/02/17/alexa-traffic-details-now-showing-a-detailed-information/' rel='bookmark' title='Permanent Link: Alexa Traffic details now showing a detailed information'>Alexa Traffic details now showing a detailed information</a></li><li><a href='http://www.reaper-x.com/2006/08/04/the-best-hackers-on-earth/' rel='bookmark' title='Permanent Link: The best hackers on earth ?'>The best hackers on earth ?</a></li><li><a href='http://www.reaper-x.com/2006/10/13/why-adsl-in-indonesia-is-not-that-good/' rel='bookmark' title='Permanent Link: Why ADSL in Indonesia is not that good'>Why ADSL in Indonesia is not that good</a></li><li><a href='http://www.reaper-x.com/2006/11/10/telkom-speedy-adsl-access-at-dial-up-speed/' rel='bookmark' title='Permanent Link: Telkom Speedy, ADSL Access at Dial Up speed'>Telkom Speedy, ADSL Access at Dial Up speed</a></li><li><a href='http://www.reaper-x.com/2007/10/19/baidu-hijacking-traffic-from-major-search-engine/' rel='bookmark' title='Permanent Link: Baidu hijacking traffic from Major Search Engine ?'>Baidu hijacking traffic from Major Search Engine ?</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2007/08/29/flashget-192-constantly-sending-unknown-packet-to-various-servers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
