<?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"
	>

<channel>
	<title>Reaper-X .:[ ID ]:. &#187; Windows</title>
	<atom:link href="http://www.reaper-x.com/category/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.reaper-x.com</link>
	<description>Computers, Games, Technology ... Whatever</description>
	<pubDate>Tue, 21 Oct 2008 09:37:37 +0000</pubDate>
	
	<language>en</language>
			<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[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[<p>Copyright 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"><strong>Set up Caching Nameserver on Windows using BIND</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p>How to set up a local caching nameserver on windows using BIND to cache dns request for faster dns queries]]></description>
			<content:encoded><![CDATA[<p>Copyright 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"><strong>Set up Caching Nameserver on Windows using BIND</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p><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'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="7 comments">7 comments</a></em></p>
	<p><em><a href="http://www.reaper-x.com">0x87485B96</a> | Tags : <a href="http://www.reaper-x.com/category/dns-server/" title="View all posts in DNS Server" rel="category tag">DNS Server</a>,  <a href="http://www.reaper-x.com/category/how-to/tutorials/" title="View all posts in Tutorials" rel="category tag">Tutorials</a>,  <a href="http://www.reaper-x.com/category/windows/" title="View all posts in Windows" rel="category tag">Windows</a></em></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2008/07/10/set-up-caching-nameserver-on-windows-using-bind/feed/</wfw:commentRss>
		</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[<p>Copyright www.reaper-x.com | <a href="http://www.reaper-x.com/2008/01/15/feeddemon-goes-free/" title="FeedDemon goes Free &#8230;"><strong>FeedDemon goes Free &#8230;</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p>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...]]></description>
			<content:encoded><![CDATA[<p>Copyright www.reaper-x.com | <a href="http://www.reaper-x.com/2008/01/15/feeddemon-goes-free/" title="FeedDemon goes Free &#8230;"><strong>FeedDemon goes Free &#8230;</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p><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/freeware/" title="View all posts in Freeware" rel="category tag">Freeware</a>,  <a href="http://www.reaper-x.com/category/computer/software/" title="View all posts in Software" rel="category tag">Software</a>,  <a href="http://www.reaper-x.com/category/windows/" title="View all posts in Windows" rel="category tag">Windows</a></em></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2008/01/15/feeddemon-goes-free/feed/</wfw:commentRss>
		</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[<p>Copyright 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"><strong>Winamp 5.5 just got better</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p>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...]]></description>
			<content:encoded><![CDATA[<p>Copyright 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"><strong>Winamp 5.5 just got better</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p><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/freeware/" title="View all posts in Freeware" rel="category tag">Freeware</a>,  <a href="http://www.reaper-x.com/category/computer/software/" title="View all posts in Software" rel="category tag">Software</a>,  <a href="http://www.reaper-x.com/category/windows/" title="View all posts in Windows" rel="category tag">Windows</a></em></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2007/10/10/winamp-55-just-got-better/feed/</wfw:commentRss>
		</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[<p>Copyright 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"><strong>Internet Explorer 7 now comes without Windows Genuine Validation</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p>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...]]></description>
			<content:encoded><![CDATA[<p>Copyright 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"><strong>Internet Explorer 7 now comes without Windows Genuine Validation</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p><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/computer/software/browsers/" title="View all posts in Browsers" rel="category tag">Browsers</a>,  <a href="http://www.reaper-x.com/category/freeware/" title="View all posts in Freeware" rel="category tag">Freeware</a>,  <a href="http://www.reaper-x.com/category/computer/software/" title="View all posts in Software" rel="category tag">Software</a>,  <a href="http://www.reaper-x.com/category/windows/" title="View all posts in Windows" rel="category tag">Windows</a></em></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>
		</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[<p>Copyright 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"><strong>WoW Mangos 4505, ScriptDev2 136 with Project Silvermoon Rev18</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p>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...]]></description>
			<content:encoded><![CDATA[<p>Copyright 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"><strong>WoW Mangos 4505, ScriptDev2 136 with Project Silvermoon Rev18</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p><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 = "I:/WoW/Data"</strong></p>
<p>Change it to :</p>
<p><strong>"C:/reaper-mangos-R4505-full/data"</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="262 comments">262 comments</a></em></p>
	<p><em><a href="http://www.reaper-x.com">0x87485B96</a> | Tags : <a href="http://www.reaper-x.com/category/emulators/" title="View all posts in Emulators" rel="category tag">Emulators</a>,  <a href="http://www.reaper-x.com/category/freeware/" title="View all posts in Freeware" rel="category tag">Freeware</a>,  <a href="http://www.reaper-x.com/category/video-games/mmorpg/" title="View all posts in MMORPG" rel="category tag">MMORPG</a>,  <a href="http://www.reaper-x.com/category/how-to/quick-fix/" title="View all posts in Quick Fix" rel="category tag">Quick Fix</a>,  <a href="http://www.reaper-x.com/category/computer/software/" title="View all posts in Software" rel="category tag">Software</a>,  <a href="http://www.reaper-x.com/category/windows/" title="View all posts in Windows" rel="category tag">Windows</a></em></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>
		</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[Apache]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Windows]]></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[<p>Copyright 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"><strong>Installing and Setting up Apache 2.2 series with PHP 5 on Windows</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p>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...]]></description>
			<content:encoded><![CDATA[<p>Copyright 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"><strong>Installing and Setting up Apache 2.2 series with PHP 5 on Windows</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p><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 "c:/php-5/php5apache2_2.dll"</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="229 comments">229 comments</a></em></p>
	<p><em><a href="http://www.reaper-x.com">0x87485B96</a> | Tags : <a href="http://www.reaper-x.com/category/apache/" title="View all posts in Apache" rel="category tag">Apache</a>,  <a href="http://www.reaper-x.com/category/php/" title="View all posts in PHP" rel="category tag">PHP</a>,  <a href="http://www.reaper-x.com/category/how-to/tutorials/" title="View all posts in Tutorials" rel="category tag">Tutorials</a>,  <a href="http://www.reaper-x.com/category/windows/" title="View all posts in Windows" rel="category tag">Windows</a></em></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>
		</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[<p>Copyright 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"><strong>Pidgin 2.2 has been released</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p>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...]]></description>
			<content:encoded><![CDATA[<p>Copyright 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"><strong>Pidgin 2.2 has been released</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p><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 'Enable Sounds' setting for a conversation</li>
</ul>
<p>To be honest, actually i'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/open-source/" title="View all posts in Open Source" rel="category tag">Open Source</a>,  <a href="http://www.reaper-x.com/category/computer/software/" title="View all posts in Software" rel="category tag">Software</a>,  <a href="http://www.reaper-x.com/category/windows/" title="View all posts in Windows" rel="category tag">Windows</a></em></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2007/09/17/pidgin-22-has-been-released/feed/</wfw:commentRss>
		</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[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[<p>Copyright www.reaper-x.com | <a href="http://www.reaper-x.com/2007/09/15/using-wget-on-windows/" title="Using WGet on Windows"><strong>Using WGet on Windows</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p>How to use Wget on Windows with Flashgot extension for Firefox to make it as your Download Manager]]></description>
			<content:encoded><![CDATA[<p>Copyright www.reaper-x.com | <a href="http://www.reaper-x.com/2007/09/15/using-wget-on-windows/" title="Using WGet on Windows"><strong>Using WGet on Windows</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p><p>Just in case you&rsquo;re like me that can'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'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="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/how-to/guide/" title="View all posts in Guide" rel="category tag">Guide</a>,  <a href="http://www.reaper-x.com/category/internet-tools/" title="View all posts in Internet Tools" rel="category tag">Internet Tools</a>,  <a href="http://www.reaper-x.com/category/open-source/" title="View all posts in Open Source" rel="category tag">Open Source</a>,  <a href="http://www.reaper-x.com/category/computer/software/" title="View all posts in Software" rel="category tag">Software</a>,  <a href="http://www.reaper-x.com/category/how-to/tutorials/" title="View all posts in Tutorials" rel="category tag">Tutorials</a>,  <a href="http://www.reaper-x.com/category/windows/" title="View all posts in Windows" rel="category tag">Windows</a></em></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2007/09/15/using-wget-on-windows/feed/</wfw:commentRss>
		</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[<p>Copyright 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"><strong>Microsoft silently update Windows without notice</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p>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...]]></description>
			<content:encoded><![CDATA[<p>Copyright 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"><strong>Microsoft silently update Windows without notice</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p><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'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/" title="View all posts in Tech News" rel="category tag">Tech News</a>,  <a href="http://www.reaper-x.com/category/windows/" title="View all posts in Windows" rel="category tag">Windows</a></em></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2007/09/14/microsoft-silently-update-windows-without-notice/feed/</wfw:commentRss>
		</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[<p>Copyright 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"><strong>Flashget 1.92 constantly sending unknown packet to various servers</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p>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....]]></description>
			<content:encoded><![CDATA[<p>Copyright 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"><strong>Flashget 1.92 constantly sending unknown packet to various servers</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p><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 "5-star Editor Review" award (for version 1.8), since 1.9 Softpedia has revoked their "100% Clean Award", 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 "100% Clean" 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/journal/" title="View all posts in Journal" rel="category tag">Journal</a>,  <a href="http://www.reaper-x.com/category/privacy/" title="View all posts in Privacy" rel="category tag">Privacy</a>,  <a href="http://www.reaper-x.com/category/computer/software/" title="View all posts in Software" rel="category tag">Software</a>,  <a href="http://www.reaper-x.com/category/windows/" title="View all posts in Windows" rel="category tag">Windows</a></em></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>
		</item>
		<item>
		<title>Football Manager 2008 is coming</title>
		<link>http://www.reaper-x.com/2007/08/02/football-manager-2008-is-coming/</link>
		<comments>http://www.reaper-x.com/2007/08/02/football-manager-2008-is-coming/#comments</comments>
		<pubDate>Thu, 02 Aug 2007 08:45:34 +0000</pubDate>
		<dc:creator>Reaper-X</dc:creator>
		
		<category><![CDATA[Misc. Games]]></category>

		<category><![CDATA[Video Games]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[feed]]></category>

		<category><![CDATA[football manager]]></category>

		<category><![CDATA[game]]></category>

		<category><![CDATA[iso]]></category>

		<guid isPermaLink="false">http://www.reaper-x.com/2007/08/02/football-manager-2008-is-coming/</guid>
		<description><![CDATA[<p>Copyright www.reaper-x.com | <a href="http://www.reaper-x.com/2007/08/02/football-manager-2008-is-coming/" title="Football Manager 2008 is coming"><strong>Football Manager 2008 is coming</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p>Sports Interactive recently announced that Football Manager 2008 will be available in stores before Christmas 2007 (for PC and Mac). And like it&#8217;s previous series, in FM 2008 you&#8217;ll get a bunch of...]]></description>
			<content:encoded><![CDATA[<p>Copyright www.reaper-x.com | <a href="http://www.reaper-x.com/2007/08/02/football-manager-2008-is-coming/" title="Football Manager 2008 is coming"><strong>Football Manager 2008 is coming</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p><p><img alt="Fm2008 screenshot" src="http://www.reaper-x.com/images/blogs/fm2008-2d1.jpg" border="0" /></p>
<p>Sports Interactive recently announced that Football Manager 2008 will be available in stores before Christmas 2007 (for PC and Mac). And like&nbsp;it&rsquo;s previous&nbsp;series, in FM 2008 you&rsquo;ll get a bunch of new and improved gameplay / features&nbsp;:</p>
<ul>
<li>Over 5.000 playable teams from over 50 countries</li>
<li>Improved Match Flow &ndash; More atmosphere to match-days with match previews, various team talks, instructions, etc. But the most important thing is there&rsquo;ll be no more pausing when you&rsquo;re trying to tweak your tactics</li>
<li>Easier to use &ndash; Much cleaner skin, a brand new advisor system, better button positioning, improved coach reports to help managing club much more easier, also the new calendar system that list all important dates throughout the season</li>
<li>New Confidence section &ndash; Now you can easily tell what the board and supporters think on how you handle the team</li>
<li>Improved Transfer Center &ndash; Easier to manage your transfers</li>
<li>Fan Days &ndash; Now you can arrange fan days to boost ailing attendances, or for matches that are likely to attract a low crowd</li>
<li>Expanded Media &ndash; More media and feedback than ever before, and a new competition news section to find out what major things are going on in all league competitions</li>
<li>Faster &ndash; Faster loading, faster network gaming and of course smoother to play</li>
</ul>
<p>And many other enhancement such as Regenerated player photo's, Finances Revamp, Improved Match Engine, Awards Re-write, and new International Management gameplay that has been improved from the previous FM Series</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/02/football-manager-2008-is-coming/" title="Football Manager 2008 is coming">Permalink</a> | <a href="http://www.reaper-x.com/2007/08/02/football-manager-2008-is-coming/#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/video-games/games/" title="View all posts in Misc. Games" rel="category tag">Misc. Games</a>,  <a href="http://www.reaper-x.com/category/video-games/" title="View all posts in Video Games" rel="category tag">Video Games</a>,  <a href="http://www.reaper-x.com/category/windows/" title="View all posts in Windows" rel="category tag">Windows</a></em></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2007/08/02/football-manager-2008-is-coming/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Trickster Online, another Free to play MMORPG</title>
		<link>http://www.reaper-x.com/2007/08/01/trickster-online-another-free-to-play-mmorpg/</link>
		<comments>http://www.reaper-x.com/2007/08/01/trickster-online-another-free-to-play-mmorpg/#comments</comments>
		<pubDate>Wed, 01 Aug 2007 05:22:51 +0000</pubDate>
		<dc:creator>Reaper-X</dc:creator>
		
		<category><![CDATA[MMORPG]]></category>

		<category><![CDATA[Misc. Games]]></category>

		<category><![CDATA[Video Games]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[game]]></category>

		<category><![CDATA[private server]]></category>

		<category><![CDATA[ripping]]></category>

		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://www.reaper-x.com/2007/08/01/trickster-online-another-free-to-play-mmorpg/</guid>
		<description><![CDATA[<p>Copyright www.reaper-x.com | <a href="http://www.reaper-x.com/2007/08/01/trickster-online-another-free-to-play-mmorpg/" title="Trickster Online, another Free to play MMORPG"><strong>Trickster Online, another Free to play MMORPG</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p>Looking for another free MMORPG that has good community (this is the most important thing for me, and i usually quit playing MMO because of this reason especially if the community isn&#8217;t friendly), not...]]></description>
			<content:encoded><![CDATA[<p>Copyright www.reaper-x.com | <a href="http://www.reaper-x.com/2007/08/01/trickster-online-another-free-to-play-mmorpg/" title="Trickster Online, another Free to play MMORPG"><strong>Trickster Online, another Free to play MMORPG</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p><p><img class="alignright" alt="Trickster Online Logo" src="http://www.reaper-x.com/images/blogs/tricksteronlinelogo.gif" border="0" / />Looking for another free MMORPG that has good community (this is the most important thing for me, and i usually quit playing MMO because of this reason especially if the community isn&rsquo;t friendly), not to expensive ingame prices (although this has changed now), easy to level, easy to make money, etc and it&rsquo;s in Official Server not Private Server ? Then you should try playing <a href="http://www.tricksteronline.com/">Trickster Online</a> because so far this is my favorite MMORPG &hellip;</p>
<p><span id="more-584"></span></p>
<p>But what about it&rsquo;s features ? here&rsquo;s some of the trickster features taken from the Official Trickster Website :</p>
<ul>
<li>Real time 3D special effects complete with 2D graphics displaying detailed animation colors.</li>
<li>A massive variety of unique skills and jobs that can be advanced and mastered.</li>
<li>Variety of fun quests and stories for single and party play.</li>
<li>Don&rsquo;t want to fight? That's not a problem with the exclusive Drilling System! You can find hidden and special, rare items anywhere on Caballa Island with the completely unique drill system.</li>
<li>Have our own pet to follow you where ever you go in Trickster! There are many cute pets to help your journey along the way.</li>
<li>Forget the old, boring battle system; our gripping card-based system is here! Collect, trade and win interesting cards based on Trickster world and battle with other players! The use of cards and items in Caballa Island is truly diverse as it can be one of the basic requirements for playing the game as well as the key for advancing to higher level.</li>
<li>Create a cyber home within the game, My Camp! Show your personality by decorating your My Camp and show it off to new friends. You can decorate your own my camp with exclusive items from My Shop and create your own community!</li>
</ul>
<p><img alt="At Megalopolis" src="http://www.reaper-x.com/images/blogs/megalopolis-20trickster-20online.jpg" border="0" / /></p>
<p>Although to be honest, i didn&rsquo;t really like the Drilling part &hellip; (at first i love drilling but later when you need to get specific items&nbsp;that&nbsp;is only available to get&nbsp;via drilling, you&rsquo;ll know why). And as for My Camp, and Card Battle &hellip; i can&rsquo;t say&nbsp;anything about it since i haven&rsquo;t tried using that features yet until now</p>
<p><img alt="Trickster Online Drilling" src="http://www.reaper-x.com/images/blogs/trickster-20online-20drill.jpg" border="0" / /></p>
<p>But my favorite part in Trickster Game is it&rsquo;s party function, because you can get x2.5 Experience if you managed to get or create&nbsp;Special / Royal party (shared with your party members or individual)</p>
<p>Other than that, i also like on how you can use all weapons / armor for all characters (unless it&rsquo;s specific for each character)</p>
<p>And now here&rsquo;s the list of the characters that is available for you to choose in Trickster&nbsp;:</p>
<ul>
<li>Buffalo &amp; Bunny = Power type</li>
<li>Sheep &amp; Dragon&nbsp;= Magic type</li>
<li>Fox &amp; Lion = Sense type</li>
<li>Cat &amp; Raccoon = Charm Type</li>
</ul>
<p>And that&rsquo;s all about it &hellip; btw My&nbsp;IGN is <strong>RedHat</strong> (99% of the time play on Ruby) and just in case you already played this game and want to clean your inventory from useless items, you can always send it to me :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/08/01/trickster-online-another-free-to-play-mmorpg/" title="Trickster Online, another Free to play MMORPG">Permalink</a> | <a href="http://www.reaper-x.com/2007/08/01/trickster-online-another-free-to-play-mmorpg/#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/video-games/mmorpg/" title="View all posts in MMORPG" rel="category tag">MMORPG</a>,  <a href="http://www.reaper-x.com/category/video-games/games/" title="View all posts in Misc. Games" rel="category tag">Misc. Games</a>,  <a href="http://www.reaper-x.com/category/video-games/" title="View all posts in Video Games" rel="category tag">Video Games</a>,  <a href="http://www.reaper-x.com/category/windows/" title="View all posts in Windows" rel="category tag">Windows</a></em></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2007/08/01/trickster-online-another-free-to-play-mmorpg/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PsExec save my day</title>
		<link>http://www.reaper-x.com/2007/07/14/psexec-save-my-day/</link>
		<comments>http://www.reaper-x.com/2007/07/14/psexec-save-my-day/#comments</comments>
		<pubDate>Sat, 14 Jul 2007 06:55:51 +0000</pubDate>
		<dc:creator>Reaper-X</dc:creator>
		
		<category><![CDATA[Guide]]></category>

		<category><![CDATA[Journal]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[iso]]></category>

		<category><![CDATA[spyware]]></category>

		<guid isPermaLink="false">http://www.reaper-x.com/2007/07/14/psexec-save-my-day/</guid>
		<description><![CDATA[<p>Copyright www.reaper-x.com | <a href="http://www.reaper-x.com/2007/07/14/psexec-save-my-day/" title="PsExec save my day"><strong>PsExec save my day</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p>Today i just finished installing Windows XP SP2 (and any other software) for my family computer which is mostly used for gaming (The Sims 2 with it s expansion pack), transferring various files from h...]]></description>
			<content:encoded><![CDATA[<p>Copyright www.reaper-x.com | <a href="http://www.reaper-x.com/2007/07/14/psexec-save-my-day/" title="PsExec save my day"><strong>PsExec save my day</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p><p>Today i just finished installing Windows XP SP2 (and any other software)&nbsp;for my family computer which is mostly used for gaming (The Sims 2 with it&rsquo;s expansion pack), transferring&nbsp;various files from her flash disk&nbsp;by my sister. I think it&rsquo;s best for me to assign her username as limited user account to prevent&nbsp;or reducing damage from virus / spyware infection which is often found from her usb flashdisk after being used somewhere else</p>
<p>And as you can see, my sister love the sims 2 series very much. But inserting the sims 2 cd everytime she want to play of course quite disturbing, and no-cd crack for the sims 2 often cause more trouble (dunno about that now, but back then i tried using the no-cd crack for the sims 1 and i did not hear any background sound because of it)</p>
<p><span id="more-573"></span></p>
<p>So the only solution of course is by using <em>The Sims 2 ISO Images created using Alcohol</em> or other similar program, and then use <em>YASU / SD4Hide / other similar apps to bypass the SafeDisc protection used on the Sims 2</em>&nbsp;so&nbsp;she can play the sims 2 without the need to insert&nbsp;the sims 2&nbsp;CD everytime she want to&nbsp;play it</p>
<p>Just in case you didn&rsquo;t know, YASU / other safedisc bypasser tools <em>require you to have administrative priviledges</em> because it won&rsquo;t work under normal&nbsp;or limited user account type (perhaps it can be done, but i think this is the easiest way for me). And the <em>RunAs command</em> from Windows XP require you to type the user account password with higher priviledges&nbsp;everytime you&nbsp;want to use it (and using the <em>/savecred</em>&nbsp;switch doesn&rsquo;t look to good for me) &hellip;</p>
<p>After searching for a while, i found a good programs that can help me to solve this problem, and the program name is <a href="http://www.microsoft.com/technet/sysinternals/ProcessesAndThreads/PsExec.mspx">PsExec from Sysinternals</a></p>
<p>For easier reading here&rsquo;s&nbsp;the summary on what i do next&nbsp;:</p>
<ul>
<li>Download the PsExec</li>
<li>Copy the PsExec executable into the Windows Directory (because it&rsquo;s already in your Environment Variable Path, and i'm sure she won&rsquo;t find it in there)</li>
<li>Create a batch file to run the YASU executable using account with higher priviledges (using this command :&nbsp;<em>psexec -d -u username -p password program_name</em>)</li>
<li>Create a shortcut for it on All Users Desktop and change&nbsp;the&nbsp;shortcut Run options to minimized, so she won&rsquo;t see anything</li>
<li>Change the Icon so it looks nice a:P</li>
</ul>
<p>That&rsquo;s it &hellip;&nbsp;The computer&rsquo;s&nbsp;all set to run The Sims 2 without CD</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/07/14/psexec-save-my-day/" title="PsExec save my day">Permalink</a> | <a href="http://www.reaper-x.com/2007/07/14/psexec-save-my-day/#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/how-to/guide/" title="View all posts in Guide" rel="category tag">Guide</a>,  <a href="http://www.reaper-x.com/category/journal/" title="View all posts in Journal" rel="category tag">Journal</a>,  <a href="http://www.reaper-x.com/category/computer/software/" title="View all posts in Software" rel="category tag">Software</a>,  <a href="http://www.reaper-x.com/category/windows/" title="View all posts in Windows" rel="category tag">Windows</a></em></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2007/07/14/psexec-save-my-day/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bored ? then try playing Pirates King Online or Tales of Pirates MMORPG</title>
		<link>http://www.reaper-x.com/2007/07/03/bored-then-try-playing-pirates-king-online-or-tales-of-pirates-mmorpg/</link>
		<comments>http://www.reaper-x.com/2007/07/03/bored-then-try-playing-pirates-king-online-or-tales-of-pirates-mmorpg/#comments</comments>
		<pubDate>Mon, 02 Jul 2007 17:15:39 +0000</pubDate>
		<dc:creator>Reaper-X</dc:creator>
		
		<category><![CDATA[Freeware]]></category>

		<category><![CDATA[MMORPG]]></category>

		<category><![CDATA[Misc. Games]]></category>

		<category><![CDATA[Video Games]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[game]]></category>

		<category><![CDATA[ragnarok online]]></category>

		<category><![CDATA[server]]></category>

		<category><![CDATA[warcraft]]></category>

		<category><![CDATA[world of warcraft]]></category>

		<guid isPermaLink="false">http://www.reaper-x.com/2007/07/03/bored-then-try-playing-pirates-king-online-or-tales-of-pirates-mmorpg/</guid>
		<description><![CDATA[<p>Copyright www.reaper-x.com | <a href="http://www.reaper-x.com/2007/07/03/bored-then-try-playing-pirates-king-online-or-tales-of-pirates-mmorpg/" title="Bored ? then try playing Pirates King Online or Tales of Pirates MMORPG"><strong>Bored ? then try playing Pirates King Online or Tales of Pirates MMORPG</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p>My friend introduces me to this free MMORPG games a week ago if i remembered it correctly, after not playing MMORPG (online not offline) :P for more than 4 years (the last time i played MMORPG is Ragn...]]></description>
			<content:encoded><![CDATA[<p>Copyright www.reaper-x.com | <a href="http://www.reaper-x.com/2007/07/03/bored-then-try-playing-pirates-king-online-or-tales-of-pirates-mmorpg/" title="Bored ? then try playing Pirates King Online or Tales of Pirates MMORPG"><strong>Bored ? then try playing Pirates King Online or Tales of Pirates MMORPG</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p><p>My friend introduces me to this free MMORPG games a week ago if i remembered it correctly, after not playing MMORPG (online not offline) :P for more than 4 years (the last time i played MMORPG is Ragnarok Online 3 years ago, and&nbsp;quitted before the sakray or turtle dungeon was released) &hellip; but let&rsquo;s keep that aside shall we ?</p>
<p>First of all here&rsquo;s some description about this game taken from the Tales of Pirates Website :</p>
<blockquote>
<p>Tales of Pirates is a fully 3D designed multiplayer online game based on 5000 years of background history with Piracy as its central theme. It is comical in nature and has humorous looking characters and creatures. The game is painted in bright and beautiful colors. The exaggerated movements and actions of characters as well as objects, topped with an atmosphere that is overall relaxed, the game makes it always interesting and fresh for new and old players alike. There are also different styles, themes and architecture for the different towns, islands and dungeons. The multitude of elements designed captivates players and keeps them immersed while they explore all different possibilities available in game.</p>
</blockquote>
<p><span id="more-558"></span></p>
<p>But&nbsp;i do not think anyone are going to read that, right&nbsp;? i&rsquo;m sure&nbsp;most MMORPG Players just want to download the game client after heard it from their friends, then continue to register step and play without reading the game intro any further :P</p>
<p><a href="http://www.piratekingonline.com/">Pirates King Online (PKO)</a> or <a href="http://top.igg.com/">Tales of Pirates (TOP)</a> basically is just the same like any other MMORPG which means :</p>
<ol>
<li>You choose your character class / job</li>
<li>Click on monster and wait until the monster die</li>
<li>Collecting some rare equipments or cute equipment to show off</li>
<li>Leveling your character to reach the max level</li>
</ol>
<p>But if all MMORPG offers the same features, i&rsquo;m sure no one are going to play it no matter what &hellip; and that means in this game there&rsquo;re some new features i havent seen before like :</p>
<ol>
<li>Building your own ship and use it to go to someplace (i do not know much about this for now,&nbsp;because my ship still at level 1) :P</li>
<li>Getting life skills like woodcutting, salvage, repair, etc which is different from the skill point (btw i think World of Warcraft also have this features)</li>
<li>World Chat which means you can chat to anyone on the server you choose at the beginning of the game</li>
</ol>
<p>I know&nbsp;post about MMORPG&nbsp;can be considered incomplete without a screenshot, so here goes the screenshot ;)</p>
<p><em>This one taken at Argent City (the largest city)&nbsp;when i play&nbsp;in </em><a href="http://www.piratekingonline.com/"><em>Pirates King Online Server</em></a></p>
<p><img alt="Pirates King Online Argent City" src="http://www.reaper-x.com/images/blogs/pko1.jpg" border="0" / /></p>
<p><em>People trying to get good items from fortune tree (i never tried this one since i havent learned the woodcutting skill yet)</em></p>
<p><img alt="People trying to get good items from fortune tree" src="http://www.reaper-x.com/images/blogs/pko2.jpg" border="0" / /></p>
<p><em>While this one is my ship (rarely use it and just recently bought it)</em></p>
<p><img alt="Ensatsu Kokuryuha is the name of the ship" src="http://www.reaper-x.com/images/blogs/pko3.jpg" border="0" / /></p>
<p>And if you ask me what are the differences between TOP and PKO &hellip; the answer is nothing with the exception Tales of Pirates server is located in United States while Pirates King Online server is located in Singapore (which is the closest to my country)</p>
<p>At first i played this game on US Server on <em>Pinguin isle</em> (until level 30), unfortunately because of the lag problem (can&rsquo;t even move my char) i decided to download the PKO client and choose to play on Singapore server (<em>Engine server</em>, until now)</p>
<p>So If you&rsquo;re bored and looking for something to do, then i&rsquo;d suggest you to try this game too. Also you don&rsquo;t need to worry because this game is a <strong>forever free MMORPG</strong>. Although if you want to looks really cool in game you&rsquo;ll need to buy something from their item mall &hellip; and in the end &hellip; i just want to invite you to play this game too :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/07/03/bored-then-try-playing-pirates-king-online-or-tales-of-pirates-mmorpg/" title="Bored ? then try playing Pirates King Online or Tales of Pirates MMORPG">Permalink</a> | <a href="http://www.reaper-x.com/2007/07/03/bored-then-try-playing-pirates-king-online-or-tales-of-pirates-mmorpg/#comments" title="13 comments">13 comments</a></em></p>
	<p><em><a href="http://www.reaper-x.com">0x87485B96</a> | Tags : <a href="http://www.reaper-x.com/category/freeware/" title="View all posts in Freeware" rel="category tag">Freeware</a>,  <a href="http://www.reaper-x.com/category/video-games/mmorpg/" title="View all posts in MMORPG" rel="category tag">MMORPG</a>,  <a href="http://www.reaper-x.com/category/video-games/games/" title="View all posts in Misc. Games" rel="category tag">Misc. Games</a>,  <a href="http://www.reaper-x.com/category/video-games/" title="View all posts in Video Games" rel="category tag">Video Games</a>,  <a href="http://www.reaper-x.com/category/windows/" title="View all posts in Windows" rel="category tag">Windows</a></em></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2007/07/03/bored-then-try-playing-pirates-king-online-or-tales-of-pirates-mmorpg/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Configuring Mangos for TBC Server or WoW Classic Server - Setting up Private WoW Server</title>
		<link>http://www.reaper-x.com/2007/06/28/configuring-mangos-for-tbc-server-or-wow-classic-server-setting-up-private-wow-server/</link>
		<comments>http://www.reaper-x.com/2007/06/28/configuring-mangos-for-tbc-server-or-wow-classic-server-setting-up-private-wow-server/#comments</comments>
		<pubDate>Thu, 28 Jun 2007 11:07:58 +0000</pubDate>
		<dc:creator>Reaper-X</dc:creator>
		
		<category><![CDATA[Emulators]]></category>

		<category><![CDATA[Guide]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Video Games]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Apache]]></category>

		<category><![CDATA[database]]></category>

		<category><![CDATA[game]]></category>

		<category><![CDATA[mangos]]></category>

		<category><![CDATA[megaupload]]></category>

		<category><![CDATA[msn]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[private server]]></category>

		<category><![CDATA[server]]></category>

		<category><![CDATA[silvermoon]]></category>

		<category><![CDATA[warcraft]]></category>

		<category><![CDATA[webserver]]></category>

		<category><![CDATA[world of warcraft]]></category>

		<category><![CDATA[wow]]></category>

		<guid isPermaLink="false">http://www.reaper-x.com/2007/06/28/configuring-mangos-for-tbc-server-or-wow-classic-server-setting-up-private-wow-server/</guid>
		<description><![CDATA[<p>Copyright www.reaper-x.com | <a href="http://www.reaper-x.com/2007/06/28/configuring-mangos-for-tbc-server-or-wow-classic-server-setting-up-private-wow-server/" title="Configuring Mangos for TBC Server or WoW Classic Server - Setting up Private WoW Server"><strong>Configuring Mangos for TBC Server or WoW Classic Server - Setting up Private WoW Server</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p>This is the second part (the graphical version instead of text only mode) of the how to create wow private server using mangos. And previously i&#8217;ve wrote about installing and configuring mysql itself...]]></description>
			<content:encoded><![CDATA[<p>Copyright www.reaper-x.com | <a href="http://www.reaper-x.com/2007/06/28/configuring-mangos-for-tbc-server-or-wow-classic-server-setting-up-private-wow-server/" title="Configuring Mangos for TBC Server or WoW Classic Server - Setting up Private WoW Server"><strong>Configuring Mangos for TBC Server or WoW Classic Server - Setting up Private WoW Server</strong></a> by <a href="http://www.reaper-x.com" title="Reaper-X .:[ ID ]:. &#187; Windows"><strong>Reaper-X</strong></a></p><p><strong>Update :</strong> You can browse this site software category if you&#8217;re looking for <a href="http://www.reaper-x.com/category/software/reaper-mangos/"><strong>my mangos release</strong></a> or <a href="http://www.reaper-x.com/category/software/reaper-mangos-mod/"><strong>my custom mangos release</strong></a> &#8230; btw i&#8217;d suggest you to get my mangos release first because it has been <strong>tested with WoW 2.2.3 and will be updated frequently</strong> (even easier than anything written on this old post because i already include everything you need to run your own wow private server except for mysql program of course)</p>
<p>Or you can also look at the <strong>recent software section</strong> located at the footer section of this website to see the new update to my mangos release :)</p>
<p><em>This is the second part of the Creating your own World of Warcraft Server using Mangos</em></p>
<ol>
<li><em>The First part is <a href="http://www.reaper-x.com/2007/06/27/mysql-installation-and-configuration-setting-up-private-wow-server/">all about Installing and Configuring MySQL</a> on your Windows Machine</em></li>
<li><em>The Second part is about&nbsp;<a href="http://www.reaper-x.com/2007/06/28/configuring-mangos-for-tbc-server-or-wow-classic-server-setting-up-private-wow-server/">Configuring the WoW Mangos</a> itself</em></li>
<li><em>The Third part is all about <a href="http://www.reaper-x.com/2007/07/03/creating-public-server-for-lan-party-setting-up-private-wow-server/">Setting up Private WOW Server for Lan Party</a></em></li>
<li><em>The Fourth part is all about <a href="http://www.reaper-x.com/2007/07/09/installing-and-setting-up-apache-webserver-with-php-setting-up-private-wow-server/">Installing and Setting up Apache Webserver with PHP</a></em></li>
</ol>
<p>Okay and before i start i&rsquo;d like to warn you first especially to those who&rsquo;s using Dial Up Connection because there are&nbsp;a&nbsp;lot&nbsp;of images used here and the previous mysql installation guide although i&rsquo;ve optimized it further</p>
<p><span id="more-554"></span></p>
<p>Without further ado &hellip; here&rsquo;s the guide ;)</p>
<p><strong>Requirements :</strong></p>
<p>If you&rsquo;re planning on creating :</p>
<p>&ndash; <em>The Burning Crusade Server</em> :</p>
<ul>
<li><strike><a href="http://www.mangosproject.org/forum/index.php?showtopic=4088" rel="nofollow">Compiled Mangos Revision 3900 or above for Win32 / Windows</a> (the latest revision compatible with latest SDB at the time i wrote this post) but feel free to upgrade it later if you want but do not forget to update the SDB too</strike></li>
<li><strike><a href="http://e-turay.com/files/MaNGOS/SDB/" rel="nofollow">SDB Full Dump by Ozay Turay</a> (to make thing simpler) that is compatible with Mangos Revision 3900+</strike></li>
<li><strike><a href="https://mangos.svn.sourceforge.net/svnroot/mangos/trunk/contrib/map_extractor/ad.exe">Latest Ad.exe to extract map</a> from Mangos SVN Repository</strike></li>
<li><strike>Latest DBC Extractor</strike></li>
</ul>
<p>Okay i've decided to upload my own compiled mangos to make thing easier, for more info see <a href="http://www.reaper-x.com/2007/09/21/wow-mangos-4488-scriptdev2-134-with-project-silvermoon-db-rev17/">this new post</a></p>
<p>Btw ... the installing mysql part is still the same ... so if you need information on how to install mysql refer to the part 1</p>
<p><strong>Note :</strong> Since most people who compiled Mangos for Win32 already included DBC and Map Extractor in their release you should use that one first. And unfortunately i can not give direct link to the files so you must try it by yourself and judge which version&nbsp;is the best for you :)</p>
<p>Btw some people prefer (especially to those who&rsquo;s using high speed internet access &ndash; not me of course &ndash;) to download the extracted maps and dbc from somewhere rather than extracting it directly so if you are using the same high speed connection you might like to use this option</p>
<p>&ndash; <em>World of Warcraft Classic Server</em> :</p>
<ol>
<li><a href="http://www.megaupload.com/?d=WAL8PNMA" rel="nofollow">Compiled Mangos Revision 3462 for Win32 / Windows by Maxis</a></li>
<li><a href="http://www.megaupload.com/?d=QDA4T6WD" rel="nofollow">Compatible SDB Full Dump for Mangos 3462 with Changesets 156</a></li>
<li><a href="http://www.megaupload.com/?d=MJ9ZOEEJ" rel="nofollow">Compatible Map and DBC Extractor</a></li>
</ol>
<p>That&rsquo;s it &hellip; unfortunately since it is using the old mangos revision you&rsquo;ll notice more bugs compared to latest / newest version for TBC &hellip; and since i dont have TBC Client installed, i can only give you a how to guide to configure your mangos server based on my experience when doing remote assistance to someone who asked for help via MSN</p>
<p>Btw if you&rsquo;re going to create WoW Classic server you can use <a rel="nofollow" href="http://www.megaupload.com/?d=ZIK1Y3NV">my extracted DBC Files</a></p>
<p><strong>Side Note :</strong> Basically since&nbsp;there are no differences on&nbsp;creating WoW TBC Server and WoW Classic Server&nbsp;the only thing you should change is just the filename &hellip; don&rsquo;t worry if you don&rsquo;t understand what i'm talking about right now, soon you&rsquo;ll know about it :)</p>
<p><strong>Creating Directory Structure&nbsp;:</strong></p>
<p>Okay i assume you&rsquo;ve finished downloading all the required stuff and now its the time to configure your mangos. But before that you need to extract the required files first into your harddrive and organize it before starting to configure mangos (although this step optional but i think organized&nbsp;directory structure&nbsp;looks better but that is just my own opinion)</p>
<p>Look at the image below for a good explanation about this :</p>
<p><img alt="Wow server directory structure" src="http://www.reaper-x.com/images/blogs/wow-2ddirectory-2dstructure.gif" border="0" / /></p>
<ol>
<li>The daemon directory is where you should extract the mangos program itself</li>
<li>The data directory is where you should put the extracted maps and dbc folder (soon you&rsquo;ll know about this process)</li>
<li>The SDB is just a temporary directory to be used when importing the SQL Files</li>
</ol>
<p><strong>Extracting Maps and DBC Files from World of Warcraft Game :</strong></p>
<p>Now this is when the ad.exe and dbc extractor came. But first we are going to use the ad.exe. And here&rsquo;s the step</p>
<ol>
<li>Copy the ad.exe into your WoW Game directory (usually C:\Program Files\World of Warcraft)</li>
<li>Create folder called <strong>maps</strong></li>
<li>Run the ad.exe and wait until its finished</li>
<li>Move the maps folder into C:\WoW\data (if you&rsquo;re using the same&nbsp;directory&nbsp;structure like me)</li>
</ol>
<p><img alt="Extracting maps" src="http://www.reaper-x.com/images/blogs/extracting-2dmaps.gif" border="0" / /></p>
<p>After you&rsquo;ve finished extracting maps now it is the time you use DBC Extractor &hellip; and here&rsquo;s the step to use it</p>
<ol>
<li>Extract the MPQE.exe (and it&rsquo;s dll if available)&nbsp;into your WoW Game Data directory (<em>C:\Program Files\World of Warcraft\Data</em>)</li>
<li>Create shortcut to the MPQE, right click on it and&nbsp;choose properties&nbsp;and adjust it&rsquo;s target&nbsp;into <em>"C:\Program Files\World of Warcraft\Data\MPQE.exe" /p dbc.MPQ DBFilesClient\*.dbc</em></li>
<li>Run the shortcut and wait until it finished</li>
<li>Rename the DBFilesClient folder into DBC</li>
<li>Move the DBC folder into <em>C:\WoW\data</em> (if you&rsquo;re using the same directory structure like me)</li>
</ol>
<p>If you want a more detailed explanation look at the screenshot below</p>
<p><img alt="Creating Shortcut" src="http://www.reaper-x.com/images/blogs/dbc-2dshortcut.gif" border="0" / /></p>
<p>and then the shortcut properties</p>
<p><img alt="Properties of Shortcut to DBC Extractor" src="http://www.reaper-x.com/images/blogs/extracting-2ddbc-2dfiles.gif" border="0" / /></p>
<p><strong>Importing the SDB Files :</strong></p>
<p>Okay we have finished extracting the maps and dbc files required for mangos, now we need to import the database first before you can run mangos program</p>
<p>and here&rsquo;s the summary on how it done :</p>
<p><strong>If you&rsquo;re going to create WoW Classic Server</strong></p>
<ol>
<li>Extract the SQL files from my mangos sql dump into <em>C:\WoW\SDB</em> (if you follow my directory structure)</li>
<li>Open Command Prompt</li>
<li>Run the sql query from the command prompt (look image below for an example on how to use the query)</li>
</ol>
<p><img alt="Command to use to import the mangos sql files" src="http://www.reaper-x.com/images/blogs/import-2dwow-2dsdb-2dinto-2dmysql.gif" border="0" / /></p>
<p>and here&rsquo;s what it&rsquo;ll looks like when it&rsquo;s finished</p>
<p><img alt="SQL Import Process Finished" src="http://www.reaper-x.com/images/blogs/import-2dwow-2dsdb-2dfinish.gif" border="0" / /></p>
<p><strong>Note :</strong> Because some people prefer to see the importing process (some say it&rsquo;s like Matrix .. lol), i decided to use <em>-v (verbose)</em> switch but if you prefer not to see it you can safely remove <em>the -v switch</em></p>
<p><strong>If you&rsquo;re going to create TBC Server</strong></p>
<p>Here&rsquo;s the summary on how it&rsquo;s done :</p>
<ol>
<li>Extract the SDB Full Dump for Mangos Revision 3900 into <em>C:\WoW\SDB</em></li>
<li>Extract the Mangos Program / Archive into <em>C:\WoW\Daemon\Mangos</em></li>
<li>Go into <em>C:\WoW\Daemon\Mangos\SQL</em></li>
<li>Copy the <em>create_mysql.sql</em> and <em>realmd.sql</em> into <em>C:\WoW\SDB</em></li>
<li>Open the Command Prompt</li>
<li>Execute the same query as above but adjust the filename first</li>
</ol>
<p>An example on how to execute the query is like below (you must do this in order) and using the same path as the above image</p>
<ol>
<li><em>mysql -u root -p -v &lt; create_mysql.sql</em></li>
<li><em>mysql -u root -p -v -D realmd &lt; realmd.sql</em></li>
<li><em>mysql -u root -p -v -D mangos &lt; the_filename_used_on_sql_dump_from_e_turray.sql</em></li>
</ol>
<p>And that&rsquo;s it you&rsquo;re finished importing the database required :)</p>
<p><strong>Editing Mangos Configuration :</strong></p>
<p>You&rsquo;ve finished extracting maps, dbc and already imported the database required but now what else ? of course you need to edit the mangosd.conf file itself</p>
<p>Now here&rsquo;s the summary on how it is done :</p>
<ol>
<li>Go into <em>C:\WoW\Daemon\Mangos</em></li>
<li>Open the <strong>mangosd.conf</strong> using <strong>wordpad</strong> (you can not edit it using notepad, because it is using Unix Line Break)</li>
<li>Change the datadir into <em>C:\WoW\data</em></li>
<li>Save it</li>
</ol>
<p>Now here&rsquo;s some screenshot of the mangos configuration file editing process :</p>
<p><img alt="Editing mangosd.conf" src="http://www.reaper-x.com/images/blogs/editing-2dmangosd-2dconf.gif" border="0" / /></p>
<p><img alt="Inside mangosd.conf" src="http://www.reaper-x.com/images/blogs/editing-2dmangosd-2dconf-2d2.gif" border="0" / /></p>
<p><strong>Make sure everything is working as it should :</strong></p>
<p>Now you&rsquo;ve done almost everyting required to make your own wow private server &hellip; now before started playing it you need to make sure that everything is okay before starting to connect to your own server</p>
<p>Here&rsquo;s how it is done :</p>
<ol>
<li>Run the realmd.exe (<em>C:\WoW\daemon\mangos\realmd.exe</em>)</li>
<li>Run the mangosd.exe (<em>C:\WoW\daemon\mangos\mangosd.exe</em>)</li>
<li>See if one of the above process close itself automatically or not. If one of the process close itself automatically after launched that means there&rsquo;s something wrong with your configuration try restarting the configuring process from the beginning</li>
</ol>
<p>And now here&rsquo;s the screenshot if your mangosd and realmd process is working as it should :</p>
<p><img alt="Realmd process launched" src="http://www.reaper-x.com/images/blogs/realmd-2dlaunched.gif" border="0" / /></p>
<p><img alt="Mangosd process launched" src="http://www.reaper-x.com/images/blogs/mangosd-2dlaunched.gif" border="0" / /></p>
<p><strong>The last step for configuring mangos and wow, editing the Realmlist used by WoW to connect :</strong></p>
<p>After everything is okay, now there&rsquo;s one more thing left for you to do &hellip; which is editing the realmlist.wtf file inside your WoW Game directory (<em>C:\Program Files\World of Warcraft\realmlist.wtf</em>) using your favorite text editor. You can use <strong>notepad or wordpad</strong> to do this</p>
<p>The default <strong>realmlist.wtf</strong> file should be like this :</p>
<p><em>set realmlist us.logon.worldofwarcraft.com</em></p>
<p>and then change it into</p>
<p><em>set realmlist 127.0.0.1</em></p>
<p><strong>Creating&nbsp;Test Account for yourself :</strong></p>
<p>Okay now you&rsquo;ve created and set up everything but there&rsquo;s still one more thing left and that is creating a test account with <em>normal player</em> status for yourself. And this process is really simple actually all you have to do is just typing this on the <em>mangosd window (above image)</em></p>
<p><em>create desired_username desired_password</em></p>
<p>Okay that&rsquo;s it you just created a test account that can be used to connect to your own wow server. If you get error message and / or stuck at realm loop i'm sure there&rsquo;s something wrong with your configuration or you&rsquo;re not using compatible mangos / wow client</p>
<p>That&rsquo;s all for this part &hellip; stay tune for the next part ;)</p>
<p><strong>As a side note</strong>, this is the first time i'm using lots of images on my guides and i'm looking forward to your opinion about this (tell me if you like it this way&nbsp;or would you prefer text&nbsp;with few screenshot or images) :)</p>
<hr />
<p><strong>Update :</strong></p>
<p>To those who&rsquo;s still having problem with Mangos like finding the correct mangos version,etc. I&rsquo;ve decided to upload my own compiled <strong>Mangos Revision 4431 with Scriptdev2 241</strong>, and also included DBC Extractor (Thanks to XLayer for his DBC Extractor) and VMaps Extractor. And also mirrored the <strong>SDB 0.7.3 with Changesets 208</strong> from <a href="http://opensvn.csie.org/NewSDB" rel="nofollow">http://opensvn.csie.org/NewSDB</a></p>
<p>And here&rsquo;s the file :</p>
<ul>
<li><strike>Mangos 4431 with ScriptDev2 124</strike></li>
<li><strike>SDB 0.7.3 with Changesets 208</strike></li>
</ul>
<p><strong>Another Update </strong>: See my new post about <strong><a href="http://www.reaper-x.com/2007/09/21/wow-mangos-4488-scriptdev2-134-with-project-silvermoon-db-rev17/">new Mangos 4488 Update with Silvermoon Database</a></strong> ... and tested with WoW 2.1.3 Client ... just look at the screenshot below</p>
<p>All you have to do (i assume you&rsquo;ve completed all of the steps involving mysql installation, and also already extract the DBC and VMaps files) is just :</p>
<p>1. Import / Overwrite the database with this new SDB (if you want the easiest way to start all over again from the Importing SDB step, you can execute the <strong>create-database.sql</strong> inside my Mangos 4431 archive (in reaper-sql directory) using this command :</p>
<p><em>mysql -u root -p &lt; create-database.sql</em></p>
<p><em>mysql -u root -p -D mangos &lt; SDB_0.7.3_Changeset_208_Rev1.sql</em></p>
<p><em>mysql -u root -p -D mangos &lt; reaper4431.sql</em></p>
<p><strong>Note :</strong> Make sure you&rsquo;re in the same directory as the create-database.sql and the SDB_0.7.3.sql when executing that command</p>
<p>2. And then the next step is, importing the sql files inside the scriptdev2-sql directory (2 files) like below example (must be in order) :</p>
<p><em>mysql -u root -p -D mangos &lt; scriptdev_full.sql</em></p>
<p><em>mysql -u root -p -D mangos &lt; scriptdev_additional_req.sql</em></p>
<p>And you&rsquo;re done :)</p>
<p>Perhaps the above might sound confusing for some people, so if you need help just leave comment here</p>
<p><strong>Here's a screenshot taken using Mangos 4488 Scriptdev2 134</strong></p>
<p><img src="http://images.reaper-x.com/blogs/wow-scrtbc.jpg" alt="Damn i'm looks great" /></p>
<p><img src="http://images.reaper-x.com/blogs/wow-scrtbc3.jpg" alt="Another Screenshot" title="How much does it cost to get this equipment on official server ?" /></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/06/28/configuring-mangos-for-tbc-server-or-wow-classic-server-setting-up-private-wow-server/" title="Configuring Mangos for TBC Server or WoW Classic Server - Setting up Private WoW Server">Permalink</a> | <a href="http://www.reaper-x.com/2007/06/28/configuring-mangos-for-tbc-server-or-wow-classic-server-setting-up-private-wow-server/#comments" title="739 comments">739 comments</a></em></p>
	<p><em><a href="http://www.reaper-x.com">0x87485B96</a> | Tags : <a href="http://www.reaper-x.com/category/emulators/" title="View all posts in Emulators" rel="category tag">Emulators</a>,  <a href="http://www.reaper-x.com/category/how-to/guide/" title="View all posts in Guide" rel="category tag">Guide</a>,  <a href="http://www.reaper-x.com/category/linux/" title="View all posts in Linux" rel="category tag">Linux</a>,  <a href="http://www.reaper-x.com/category/computer/software/" title="View all posts in Software" rel="category tag">Software</a>,  <a href="http://www.reaper-x.com/category/how-to/tutorials/" title="View all posts in Tutorials" rel="category tag">Tutorials</a>,  <a href="http://www.reaper-x.com/category/video-games/" title="View all posts in Video Games" rel="category tag">Video Games</a>,  <a href="http://www.reaper-x.com/category/windows/" title="View all posts in Windows" rel="category tag">Windows</a></em></p>]]></content:encoded>
			<wfw:commentRss>http://www.reaper-x.com/2007/06/28/configuring-mangos-for-tbc-server-or-wow-classic-server-setting-up-private-wow-server/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
