<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Server-Side</title>
	<atom:link href="http://server-side.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://server-side.org</link>
	<description>A collection of administration, networking, and hacking knowledge.</description>
	<lastBuildDate>Tue, 08 May 2012 17:39:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Firebox and FringeBox Units</title>
		<link>http://server-side.org/2012/05/08/firebox-fringebox-units/</link>
		<comments>http://server-side.org/2012/05/08/firebox-fringebox-units/#comments</comments>
		<pubDate>Tue, 08 May 2012 17:35:58 +0000</pubDate>
		<dc:creator>Brak</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://server-side.org/?p=193</guid>
		<description><![CDATA[&#160; Check out and buy a Firebox with pfSense here! Check out and buy the NEW FringeBox 1000/1050 here!]]></description>
			<content:encoded><![CDATA[<p><object width="640" height="360" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/9Uome1M6tqc?version=3&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed width="640" height="360" type="application/x-shockwave-flash" src="http://www.youtube.com/v/9Uome1M6tqc?version=3&amp;hl=en_US" allowFullScreen="true" allowscriptaccess="always" allowfullscreen="true" /></object></p>
<p>&nbsp;</p>
<p><a href="http://www.ebay.com/itm/270893406216" target="_blank"><span style="text-decoration: underline;"><strong><span style="color: #ff0000; text-decoration: underline;">Check out and buy a Firebox with pfSense <span style="color: #ff0000; text-decoration: underline;">here!</span></span></strong></span></a></p>
<p><a href="http://www.ebay.com/itm/270954542923" target="_blank"><strong><span style="text-decoration: underline;"><span style="color: #ff0000; text-decoration: underline;">Check out and buy the NEW FringeBox 1000/1050 here!</span></span></strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://server-side.org/2012/05/08/firebox-fringebox-units/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu/Windows 7 &#8211; Minecraft Server Downloading Terrain or Stuck Login Issue</title>
		<link>http://server-side.org/2011/08/05/ubuntuwindows-7-minecraft-server-downloading-terrain-stuck-login-issue/</link>
		<comments>http://server-side.org/2011/08/05/ubuntuwindows-7-minecraft-server-downloading-terrain-stuck-login-issue/#comments</comments>
		<pubDate>Sat, 06 Aug 2011 01:44:41 +0000</pubDate>
		<dc:creator>Brak</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.server-side.org/?p=163</guid>
		<description><![CDATA[Some users of Ubuntu Server, or Windows 7 x64 (most commonly) have had issues with internet players not being able to connect to their Minecraft Servers. The most interesting fact part of this issue is that LAN players work fine, and the port (25565 by default) is forwarded properly &#8211; and even is scanned as [...]]]></description>
			<content:encoded><![CDATA[<p>Some users of Ubuntu Server, or Windows 7 x64 (most commonly) have had issues with internet players not being able to connect to their Minecraft Servers. The most interesting fact part of this issue is that LAN players work fine, and the port (25565 by default) is forwarded properly &#8211; and even is scanned as open!</p>
<p>I never found a solution online, so apparently this is a problem that still exists and is unsolved. I was dumbfounded when I tried to switch one of my Minecraft servers over to Ubuntu Server x64 from its previous Windows operating system. How could nothing much change in the server software, and have it fall flat on it&#8217;s face, seemingly with a crippling bug?</p>
<p>After many hours of working on this issue, I have come to the proper solution. <span style="color: #ff0000;"><strong>The issue is the server computer&#8217;s MTU size on the Ethernet interface.</strong></span> In my case, the Windows box was fine, but the MTU on my new Ubuntu Server needed changed.</p>
<p>I changed the MTU of my Ubuntu Server to 1492 from 1500, and magically it worked. Users were not stuck at &#8220;Downloading Terrain&#8221; or had their login hang until a &#8220;Socket Error&#8221; occurred.</p>
<p>To do this fix on a Ubuntu Server (or possibly other linux distro), simply run the command</p>
<blockquote>
<pre><strong>sudo ifconfig eth0 mtu 1492</strong></pre>
</blockquote>
<p>(You can subsitute &#8220;<strong>eth0</strong>&#8221; for your interface card/number, and the &#8220;<strong>1492</strong>&#8221; for whatever MTU size you need to get your connection working. Mine was 1500 and failed, 1492 was the key to get mine working. This may or may not be the same for you.)</p>
<p>Your issue should now be fixed! But that fix won&#8217;t survive a reboot! You&#8217;ll need to either run that command at boot automatically or manually. To make a fix that activates at boot, you&#8217;ll need to edit your <strong>/etc/network/interfaces</strong> file. To do this run this command:</p>
<blockquote>
<pre><strong>sudo nano /etc/network/interfaces</strong></pre>
</blockquote>
<p>Then in the first stanza, for eth0 (or whatever your network interface is), change it to add &#8220;<strong>mtu 1492&#8243;.</strong> (In this method, the interface must be set to a static address, but you can find ways to set the MTU of a DHCP interface online elsewhere.)</p>
<blockquote>
<pre>...
iface eth0 inet static
     address 192.168.0.2
     netmask 255.255.255.0
     gateway 192.168.0.1
     <span style="color: #ff0000;"><strong>mtu 1492</strong></span>
...</pre>
</blockquote>
<p>You can now either reboot the system, or restart networking (<strong>sudo /etc/init.d/networking restart</strong>) and your fix will live on past the shutdown.</p>
<p>For Windows users, the fix is usually a registry edit (there is also a command available to set the MTU of an interface elsewhere):</p>
<blockquote>
<pre><strong>Start &gt; Run&gt; <span style="color: #ff0000;">REGEDIT.exe </span>Go to</strong><strong> : <span style="color: #ff0000;"> HKLM\System\CurrentControlSet\Services\Tcpip\Parameters\Interface</span><span style="color: #ff0000;">s </span><span style="color: #000000;"> </span></strong><strong><span style="color: #ff0000;">Select the Interface</span> you want to fix, for example interface value: {111112-2222222-666666-777777} Right Click on Right Side and <span style="color: #ff0000;">create</span> a new <span style="color: #ff0000;">RegWord</span> type with:</strong></pre>
<p>&nbsp;</p>
<pre><strong> <span style="color: #ff0000;"> Name: MTU</span></strong></pre>
<pre><span style="color: #ff0000;"><strong> Value: 1492</strong></span></pre>
<pre><strong><span style="color: #ff0000;"> Type: Decimal</span>  <span style="color: #ff0000;">Restart</span> the System</strong></pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://server-side.org/2011/08/05/ubuntuwindows-7-minecraft-server-downloading-terrain-stuck-login-issue/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Starting Firebox X700 pfSense Project</title>
		<link>http://server-side.org/2011/01/10/starting-firebox-x700-pfsense-project/</link>
		<comments>http://server-side.org/2011/01/10/starting-firebox-x700-pfsense-project/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 01:26:23 +0000</pubDate>
		<dc:creator>Brak</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Firebox/pfSense]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.server-side.org/?p=146</guid>
		<description><![CDATA[I just received my first Firebox (a x700 model) and I really like where this is going. So far beyond a few delays to the project and still waiting on a shipment, things are going good. I hope to be able to create guides, hardware and mods recommendations, and reconfigured embedded and full installs (think [...]]]></description>
			<content:encoded><![CDATA[<p>I just received my first Firebox (a x700 model) and I really like where this is going. So far beyond a few delays to the project and still waiting on a shipment, things are going good. I hope to be able to create guides, hardware and mods recommendations, and reconfigured embedded and full installs (think no serial cable required to get started!)</p>
<p>Current plans are use an iPod Mini&#8217;s Hatachi 4GB Microdrive as the disk for a full install. New heatsink, 512MB RAM update, and making it quieter. I hope to do plenty of worthwhile modifications to this Firebox and share the experience.</p>
<p>Things learned thus far:</p>
<ul>
<li>A 1.2GHz Celeron left inside the Firebox with no working HSF will burn up. Really. Completely fry. Luckily the motherboard is fine and it boots with a PIII. New 1.4GHz Celeron on its way for $9. Probably would have updated this anyways.</li>
<li>Don&#8217;t assume generic RAM you buy for the Firebox off Amazon is a double sided DIMM and will work in the Firebox (Non-Double Sided 512MB sticks show up as 256MB). I hope to make a list of high avaibilty sticks that work.</li>
<li>The HSF on the firebox is crap, get a new heatsink and fan and also a fan speed controller. Even had my fan worked I would have gotten a new one, way too loud for such poor cooling.</li>
<li>The rackmount ears hold the cover on the case also. Can&#8217;t keep them on for looks if you plan on opening the Firebox up often until you&#8217;re ready to put it into production.</li>
<li>Physwritedisk doesn&#8217;t want to work on any Vista/7/Server2008 (32bit or 64bit) for me. I used Ubuntu. Worked like a charm.</li>
<li>Make sure you&#8217;re using a Null Modem serial cable. You&#8217;ll kick yourself for assuming something else is wrong and wasting time.</li>
</ul>
<p style="text-align: center;"><a href="http://www.server-side.org/wp-content/uploads/2011/01/IMG_0792.jpg"><img class="size-medium wp-image-147 aligncenter" title="overviewx700" src="http://www.server-side.org/wp-content/uploads/2011/01/IMG_0792-300x224.jpg" alt="" width="300" height="224" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://server-side.org/2011/01/10/starting-firebox-x700-pfsense-project/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Tray Injector v0.1</title>
		<link>http://server-side.org/2010/06/01/tray-injector-v0-1/</link>
		<comments>http://server-side.org/2010/06/01/tray-injector-v0-1/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 00:28:42 +0000</pubDate>
		<dc:creator>Brak</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.server-side.org/?p=123</guid>
		<description><![CDATA[My replacement for the well-known application, TrayIt! The application will allow any window inside of a Windows OS to be minimized to the system tray. Simply bring the window you wish to minimize to tray to the active window, and press the Pause key. To view a list of the minimized to tray programs, right [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.server-side.org/wp-content/uploads/2010/06/TrayInjector.png"><img class="alignleft size-full wp-image-122" title="TrayInjector" src="http://www.server-side.org/wp-content/uploads/2010/06/TrayInjector.png" alt="" width="218" height="107" /></a> My replacement for the well-known application, TrayIt! The application will allow any window inside of a Windows OS to be minimized to the system tray. Simply bring the window you wish to minimize to tray to the active window, and press the Pause key. To view a list of the minimized to tray programs, right click the TrayInjector tray icon. To remove the window from the TrayInjector, simply click that window from the list.<strong> </strong></p>
<p>This is a great tool for minimizing Folding@Home console clients to be out of sight and completely out of the way. Do remember this is an early version, and while it works, it doesnt have all the features yet, just the basics.</p>
<p><a href="http://house.zsnnet.org/hosted/TrayInjector.exe" target="_self"><strong>Download TrayInjector here (363kb, v0.1).</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://server-side.org/2010/06/01/tray-injector-v0-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Portable Games for Flash Drives</title>
		<link>http://server-side.org/2009/12/20/creating-portable-games-for-flash-drives/</link>
		<comments>http://server-side.org/2009/12/20/creating-portable-games-for-flash-drives/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 04:32:06 +0000</pubDate>
		<dc:creator>Brak</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Hacking]]></category>

		<guid isPermaLink="false">http://www.server-side.org/?p=94</guid>
		<description><![CDATA[One of the keys to creating portable games is the ability to maintain a small file size (or at least as much as possible) and an easy way to extract and run the game. Another factor in portable game creation is making sure that administrative rights on the local computer are never needed. The easiest [...]]]></description>
			<content:encoded><![CDATA[<p id="dnwld">One of the keys to creating portable games is the ability to maintain a small file size (or at least as much as possible) and an easy way to extract and run the game. Another factor in portable game creation is making sure that administrative rights on the local computer are never needed.</p>
<p>The easiest way to build a file like this is creating a self-extracting .zip file. With this installation type, we can set it to load all the games files into the local users&#8217; temporary folder and launch the game from there. This helps both slow flash drives and slow computers, and also making distribution and launching that much easier.</p>
<p><strong> </strong></p>
<div id="attachment_100" class="wp-caption alignleft" style="width: 310px"><strong><strong><a href="http://www.server-side.org/wp-content/uploads/2009/12/sz2eimage.png"><img class="size-medium wp-image-100" title="sz2eimage" src="http://www.server-side.org/wp-content/uploads/2009/12/sz2eimage-300x289.png" alt="" width="300" height="289" /></a></strong></strong><p class="wp-caption-text">The utility itself</p></div>
<p><strong>DOWNLOAD:</strong> <a id="dnwld" href="http://www.chilkatsoft.com/ChilkatZipSE.exe">ZIP 2 Secure EXE (900 KB)</a></p>
<p>This wonderful utility by <a href="http://www.chilkatsoft.com/default.asp" target="_blank">chilkatsoft</a> holds the key to creating self-extracting archives. Of course, the main part of that utility is the fact you can secure the executable, but it has many things that we can use to create a portable game launcher. (Heck, maybe you DO want to password protect the game.) Some things we can do is allow/disallow choosing where to extract the archive, set to default location or automatically extract to the users&#8217; temporary directory, add/remove buttons and text (immediately start extract on starting the .exe or wait for Unzip to be clicked? Totally up to you.)</p>
<p>Once you package your portable game or application, archive it in a .zip file. Open it with this utility and set your settings accordingly. Some important things that you will want to set will be where to unzip the archive to, and &#8216;Run this &#8220;setup&#8221; file after extracting.&#8217; The &#8220;setup file&#8221; is actually what you will want to point for whatever executable or shortcut link launches your game from inside the extracted directory.  Make sure this will extract to a common directory that everyone has if you disable the users&#8217; ability to choose where it will be extracted to.</p>
<p>If you&#8217;re building something for being run on computer that will not have administrative rights for the local user, you&#8217;ll probably want to pick the temporary directory and launch it from there.</p>
<p>Hopefully, this helps some people get started on creating self-extracting, portable games. Feel free to try out any I have posted here or leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://server-side.org/2009/12/20/creating-portable-games-for-flash-drives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CompleteGFX.com vBulletin Styles</title>
		<link>http://server-side.org/2009/07/07/completegfx-com-vbulletin-styles/</link>
		<comments>http://server-side.org/2009/07/07/completegfx-com-vbulletin-styles/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 18:35:47 +0000</pubDate>
		<dc:creator>Brak</dc:creator>
				<category><![CDATA[vBulletin]]></category>

		<guid isPermaLink="false">http://zsnnet.org/?p=71</guid>
		<description><![CDATA[Here are the zip files from CompleteGFX.com for all the free styles they have released. Their website is down, and vbulletin.org has since pulled the files. [3.8.1] Dark_vb by CompleteGFX.com.zip &#8211; Downloads [3.8.1] Dark_vb_2 by CompleteGFX.com.zip &#8211; Downloads [3.8.1] Green One by CompleteGFX.com.zip &#8211; Downloads [3.8.1] Sleek Passion by CompleteGFX.com.zip &#8211; Downloads [3.8.1] Vivid Stripes [...]]]></description>
			<content:encoded><![CDATA[<p>Here are the zip files from CompleteGFX.com for all the free styles they have released. Their website is down, and vbulletin.org has since pulled the files.</p>
<ul>
<li>[3.8.1] Dark_vb by CompleteGFX.com.zip &#8211; <a href="../downloads" target="_blank">Downloads</a></li>
<li>[3.8.1] Dark_vb_2 by CompleteGFX.com.zip &#8211; <a href="../downloads" target="_blank">Downloads</a></li>
<li>[3.8.1] Green One by CompleteGFX.com.zip &#8211; <a href="../downloads" target="_blank">Downloads</a><a href="http://cs2.zsnnet.org/completegfx/%5b3.8.1%5d%20Green%20One%20by%20CompleteGFX.com.zip" target="_self"><br />
</a></li>
<li>[3.8.1] Sleek Passion by CompleteGFX.com.zip &#8211; <a href="../downloads" target="_blank">Downloads</a></li>
<li>[3.8.1] Vivid Stripes by CompleteGFX.com.zip &#8211; <a href="../downloads" target="_blank">Downloads</a></li>
<li>[3.8.1] Zero by CompleteGFX.com.zip &#8211; <a href="http://zsnnet.org/downloads" target="_blank">Downloads</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://server-side.org/2009/07/07/completegfx-com-vbulletin-styles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Domain Name as Game Server Address</title>
		<link>http://server-side.org/2009/07/05/domain-name-as-game-server-address/</link>
		<comments>http://server-side.org/2009/07/05/domain-name-as-game-server-address/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 17:26:47 +0000</pubDate>
		<dc:creator>Brak</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://zsnnet.org/?p=61</guid>
		<description><![CDATA[The question of how to set up a domain name as a game server address has come up. You may want something that looks like &#8220;game.zsnnet.org&#8221; or &#8220;css.zsnnet.org&#8221; rather than the standard IP address of the game server. Assuming you already own the domain name, you will need to go to the domains&#8217; DNS settings [...]]]></description>
			<content:encoded><![CDATA[<p>The question of how to set up a domain name as a game server address has come up. You may want something that looks like &#8220;game.zsnnet.org&#8221; or &#8220;css.zsnnet.org&#8221; rather than the standard IP address of the game server.</p>
<p>Assuming you already own the domain name, you will need to go to the domains&#8217; DNS settings and add an &#8220;A Record&#8221; with a Name value of the sub domain (<strong>game</strong>.zsnnet.org), and a Value of the IP address of the game server you want to point to.</p>
<p>Each webhost or domain provider will be different, some of you will need to contact them to add the DNS record, others (like Dreamhost) allow you to configure your own Custom DNS. Search their support or help areas to see how to configure it correctly for your providers system.</p>
]]></content:encoded>
			<wfw:commentRss>http://server-side.org/2009/07/05/domain-name-as-game-server-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saving Pandora.com Songs</title>
		<link>http://server-side.org/2009/06/26/saving-pandora-com-songs/</link>
		<comments>http://server-side.org/2009/06/26/saving-pandora-com-songs/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 00:37:08 +0000</pubDate>
		<dc:creator>Brak</dc:creator>
				<category><![CDATA[Hacking]]></category>

		<guid isPermaLink="false">http://zsnnet.org/?p=53</guid>
		<description><![CDATA[Using a program developed by a member of the hak5.org forum, PandoraSaver, you can rip out Pandora.com songs free and easily. Download here :  http://zzj.itf-inc.com/downloads/SProxy1003dPS1008e.zip Don&#8217;t forget to donate to the developer himself if you like his work! Here is his Paypal link. Directions: 1. Download PandoraSaver from above URL. 2. Extract the contents, run [...]]]></description>
			<content:encoded><![CDATA[<p>Using a program developed by a member of the hak5.org forum, PandoraSaver, you can rip out Pandora.com songs free and easily.</p>
<p>Download here :  <a href="http://zzj.itf-inc.com/downloads/SProxy1003dPS1008e.zip" target="_blank">http://zzj.itf-inc.com/downloads/SProxy1003dPS1008e.zip</a></p>
<p>Don&#8217;t forget to donate to the developer himself if you like his work! <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&amp;business=zigzagjoe%40gmail%2ecom&amp;lc=US&amp;item_name=Zigzagjoe&amp;item_number=PandoraSaver&amp;currency_code=USD&amp;bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted">Here is his Paypal link.</a></p>
<p>Directions:</p>
<p>1.	Download PandoraSaver from above URL.<br />
2.	Extract the contents, run the SProxy executable.<br />
3.	Configure your browser to use SProxy. (Default settings are <a href="http://127.0.0.1:8888/" target="_blank">http://127.0.0.1:8888/</a> )</p>
<p>You can also use a firefox extention like FoxyProxy to create a whitelist filter of &#8220;*.pandora.com*&#8221; to use the SProxy IP/Port. If you want, you can also use the developers proxy script (<a href="http://zzj.itf-inc.com/BrowserPAC.js" target="_blank">http://zzj.itf-inc.com/BrowserPAC.js</a>) in the &#8220;automatic proxy configuration url&#8221; setting in your prowser.</p>
]]></content:encoded>
			<wfw:commentRss>http://server-side.org/2009/06/26/saving-pandora-com-songs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jailbreak AT&amp;T iPhones to 3.0 (2G and 3G)</title>
		<link>http://server-side.org/2009/06/19/jailbreak-att-iphones-to-30-2g-and-3g/</link>
		<comments>http://server-side.org/2009/06/19/jailbreak-att-iphones-to-30-2g-and-3g/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 04:14:28 +0000</pubDate>
		<dc:creator>Brak</dc:creator>
				<category><![CDATA[Hacking]]></category>

		<guid isPermaLink="false">http://zsnnet.org/?p=49</guid>
		<description><![CDATA[Download these files: iPhone 3G (Legit AT&#38;T) &#8211; http://www.demonoid.com/files/details/1965353/2325666/ iPhone 2G (Legit AT&#38;T) &#8211; http://www.mininova.org/tor/2700484 Put your iPhone in DFU mode: 1.) Sync your phone/back it up with iTunes one last time. 2.) Turn off the phone. 3.) Turn the phone on holding both the Power and Home button. Once it powers on, continue holding [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Download these files:</strong><br />
iPhone 3G (Legit AT&amp;T) &#8211; http://www.demonoid.com/files/details/1965353/2325666/<br />
iPhone 2G (Legit AT&amp;T) &#8211; http://www.mininova.org/tor/2700484</p>
<p><strong>Put your iPhone in DFU mode:</strong></p>
<p>1.) Sync your phone/back it up with iTunes one last time.<br />
2.) Turn off the phone.<br />
3.) Turn the phone on holding both the Power and Home button. Once it powers on, continue holding the Home button until you see the graphic that says you need to plug the phone into iTunes.<br />
4.) Shift-Click Restore in iTunes for the iPhone, select the custom firmware that you downloaded.<br />
5.) iTunes will guide you from there. Good Luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://server-side.org/2009/06/19/jailbreak-att-iphones-to-30-2g-and-3g/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generating RSS Feeds for Recent Loot with Yahoo! Pipes.</title>
		<link>http://server-side.org/2009/04/23/generating-rss-feeds-for-recent-loot-with-yahoo-pipes/</link>
		<comments>http://server-side.org/2009/04/23/generating-rss-feeds-for-recent-loot-with-yahoo-pipes/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 04:46:22 +0000</pubDate>
		<dc:creator>Brak</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[vBulletin]]></category>

		<guid isPermaLink="false">http://zsnnet.org/?p=31</guid>
		<description><![CDATA[This is a continuation of Recent Items with vBulletin for Warcraft Guild Site. In this guide, I will explain how to use Yahoo! Pipes to read, parse, and create a RSS feed that is friendly twards the Recent Loot module that we created earlier from the feeds at Wowprogress.com. First off, head over to Yahoo! [...]]]></description>
			<content:encoded><![CDATA[<address style="text-align: left;"> </address>
<address style="text-align: left;">This is a continuation of <a href="http://www.server-side.org/2009/04/23/recent-items-with-vbulletin-for-warcraft-guild-site/" target="_self"><span class="title">Recent Items with vBulletin for Warcraft Guild Site.</span></a></address>
<address style="text-align: left;"> </address>
<address style="text-align: left;"> </address>
<p style="text-align: left;">In this guide, I will explain how to use <a title="Yahoo Pipes" href="http://pipes.yahoo.com" target="_blank">Yahoo! Pipes</a> to read, parse, and create a RSS feed that is friendly twards the Recent Loot module that we created earlier from the feeds at <a title="Wowprogress" href="http://wowprogress.com" target="_blank">Wowprogress.com</a>.</p>
<p style="text-align: left;">First off, head over to <a title="Yahoo Pipes" href="http://pipes.yahoo.com" target="_blank">Yahoo! Pipes</a> and create a new account, or log in if you already have one. Then head over to <a title="Wowprogress" href="http://wowprogress.com" target="_blank">Wowprogress.com</a> and find your guild&#8217;s page.</p>
<p style="text-align: left;">You should find something similar to a RSS Feed Reader on their page by scrolling down, make sure you <strong>sort by Phat Loot </strong>and<strong> click the RSS icon.</strong> Save this feed URL. It should look something similar to this:</p>
<address style="text-align: left;"><a title="Oath Guild at Wowprogress" href="http://www.wowprogress.com/rss/guild/us/exodar/Oath/new_item/" target="_blank">http://www.wowprogress.com/rss/guild/us/exodar/Oath/new_item/</a></address>
<address style="text-align: left;"> </address>
<p style="text-align: left;">You&#8217;ll notice how this feed has the information we need, but had to much extra info and needs formated to what will work with our project.</p>
<p style="text-align: left;">
<p style="text-align: left;">Let&#8217;s make a pipe that formats this data:</p>
<ol>
<li>On the Pipes page, hit <strong>Create a pipe</strong>.</li>
<li><a title="Yahoo Pipes Image" href="http://www.server-side.org/wp-content/uploads/2009/04/yahoopipesrecentlootimage.jpg" target="_blank">Use this image</a>, and create it exactly. Make sure you make the URL of the feed your guilds&#8217; from the wowprogress.com site.</li>
<li>Save the feed. Copy down the URL of the RSS feed (you can find this on your Pipes page.)</li>
</ol>
<p>Now, you&#8217;ll notice how &#8220;Apr 12, 2009 Orkko Oath acquired item Serene Echoes link&#8221; turns into &#8220;CHARACTER NAME &#8211; [item]ITEMNAME[/item]&#8221;</p>
<p>See how that works? Make any changes you want, I know some people might want to change the &#8220;-&#8221; back to &#8220;aquires&#8221; or something of that nature. Have fun and make it something unique if you want.</p>
<p>Now, we&#8217;ll add our RSS feed to the vBulletin RSS Feed Robot.</p>
<ol>
<li>In the <strong>vBulletin Admin Console</strong> go to the <strong>RSS Feeds</strong> category and click<strong> RSS Feed Manager.</strong></li>
<li>Hit<strong> Add New RSS Feed.</strong></li>
<li>Title the feed and enter the URL.</li>
<li>Put in the username of who you want the posts to be by, could be you, or a dummy account, but it has to0 actually exist.</li>
<li>Set the forum that it posts in to the one we created earlier.</li>
<li>In both <strong>Title Template</strong> and <strong>Body Template</strong> replace everything with &#8220;<strong>{feed:title}</strong>&#8220;.</li>
<li>Change any other settings you would like, but that is all that is necessary.</li>
<li>Press <strong>Save</strong> and then <strong>Run Scheduled Tasks Now</strong>.</li>
</ol>
<p>Go to the page where you added the vBadvanced module. You should now see something like this:</p>
<p><a href="http://www.server-side.org/wp-content/uploads/2009/04/recentitemsexample.jpg"><img class="alignnone size-thumbnail wp-image-38" title="recentitemsexample" src="http://zsnnet.org/wp-content/uploads/2009/04/recentitemsexample-150x150.jpg" alt="recentitemsexample" width="150" height="150" /></a></p>
<p>You&#8217;re done! Make any changes you want, and post your guild site link in the comments for other to see. You can also post here any questions, comments, or suggestions. I&#8217;d love to make this better or more efficent if anyone has any ideas.</p>
]]></content:encoded>
			<wfw:commentRss>http://server-side.org/2009/04/23/generating-rss-feeds-for-recent-loot-with-yahoo-pipes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

