<?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>TragicallyNull &#187; Solution</title>
	<atom:link href="http://tragicallynull.com/categories/solution/feed/" rel="self" type="application/rss+xml" />
	<link>http://tragicallynull.com</link>
	<description>technology news, reviews and solutions</description>
	<lastBuildDate>Mon, 30 Nov 2009 06:10:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Magic: The Gathering Gatherer Autolinker WordPress Plugin</title>
		<link>http://tragicallynull.com/2009/02/14/magic-the-gathering-gatherer-autolinker-wordpress-plugin/</link>
		<comments>http://tragicallynull.com/2009/02/14/magic-the-gathering-gatherer-autolinker-wordpress-plugin/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 05:45:26 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Solution]]></category>
		<category><![CDATA[Magic The Gathering]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/?p=272</guid>
		<description><![CDATA[This plugin was updated on April 18th, 2009 to version 0.3, previous versions of the plugin may not work.
Magic: The Gathering Gatherer Autolinker is a WordPress plugin that takes special tags in your posts and converts them into links to the beta version of Gatherer, the official Magic: The Gathering online card database.
Installation

Download and unzip [...]]]></description>
			<content:encoded><![CDATA[<p class="special-alert">This plugin was updated on April 18th, 2009 to version 0.3, previous versions of the plugin may not work.</p>
<p>Magic: The Gathering Gatherer Autolinker is a WordPress plugin that takes special tags in your posts and converts them into links to the beta version of Gatherer, the official Magic: The Gathering online card database.<span id="more-272"></span></p>
<h2>Installation</h2>
<ol>
<li><a href="http://tragicallynull.com/etc/php/mtgautolinker/mtgautolinker.zip">Download</a> and unzip the plugin.</li>
<li>Upload mtgautolinker.php to wp-content/plugins.</li>
<li>Activate the plugin inside of WordPress.</li>
</ol>
<h2>Usage</h2>
<p>Anywhere inside of your post you can put &#91;mg]Card Name&#91;/mg] tags and it will appear as <a href="http://beta.gatherer.wizards.com/Pages/Search/Default.aspx?name=Card Name">Card Name</a> on your blog. The card name you use does have to be exact and there isn&#8217;t a way to speicify custom link text, but anyone with even basic PHP knowledge could add one with little effort. If you&#8217;d like it to work in comments too just add <code>add_filter('comment_text', 'mgreplacer');</code> under the addfilter line at the bottom of the file before ?&gt;.</p>
<h2>Source</h2>
<p>This plugin really couldn&#8217;t be any simpler, you could have done it with minimal time and effort.<br />
<code class="special-codeblock">&lt;?php<br />
  /*<br />
  Plugin Name: MTG Gatherer Autolinker<br />
  Plugin URI: http://tragicallynull.com/2009/02/14/magic-the-gathering-gatherer-autolinker-wordpress-plugin<br />
  Description: Autolinks Magic: The Gathering cards to the newly released version of the Gatherer (card database) using [mg]Card Name[/mg] tags.<br />
  Version: 0.3<br />
  Author: John Stone III<br />
  Author URI: http://tragicallynull.com<br />
  */</code><br />
<code class="special-codeblock">function mgreplacer ($text){<br />
  $mgreplace = &#39;/(\[mg\])(.+)(\[\/mg\])/&#39;;<br />
  $mgreplacement = &#39;&lt;a href=&quot;http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[&amp;quot;\\2&amp;quot;]&quot;&gt;\\2&lt;/a&gt;&#39;;<br />
  $text = preg_replace($mgreplace, $mgreplacement, $text);<br />
  return $text;<br />
  }<br />
  add_filter(&#39;the_content&#39;, &#39;mgreplacer&#39;);<br />
  ?&gt;</code></p>
<p>It&#8217;s really so simple just about anyone can edit it to make other custom &#8220;autolinkers&#8221; of their own.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2009/02/14/magic-the-gathering-gatherer-autolinker-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Solution: PHP / WordPress won&#8217;t send email on Debian</title>
		<link>http://tragicallynull.com/2008/11/02/solution-php-wordpress-wont-send-email-on-debian/</link>
		<comments>http://tragicallynull.com/2008/11/02/solution-php-wordpress-wont-send-email-on-debian/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 18:27:16 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Solution]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[exim4]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[postfix]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/?p=238</guid>
		<description><![CDATA[I got this issue when I tried to send email on my VPS using PHP, the app would report everything sent successfully, but nothing came. This fix is for Debian, but may work with any Debian-based Linux OS that uses the apt-get package manager, like Ubuntu.
It turns out that my VPS&#8217;s Debian install has been [...]]]></description>
			<content:encoded><![CDATA[<p>I got this issue when I tried to send email on my VPS using PHP, the app would report everything sent successfully, but nothing came. This fix is for Debian, but may work with any Debian-based Linux OS that uses the apt-get package manager, like Ubuntu.<span id="more-238"></span></p>
<p>It turns out that my VPS&#8217;s Debian install has been configured with exim4. I don’t know when I installed it, but it might have been included as a dependency somewhere down the line. For some reason PHP wasn’t feeling the love. So out with the exim4 and in the the postifx. I went in and used apt-get to install postfix. This automatically removed exim4, installed and configured postfix, allowing me to use PHP to send emails.</p>
<p><code>apt-get install postfix</code></p>
<p>Don’t do this if you’re actually using exim4 for your real email service, this is just a fix for people who need PHP to send email and use an external service like Gmail for their domain’s email.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2008/11/02/solution-php-wordpress-wont-send-email-on-debian/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Solution: Can&#8217;t browse internet while utorrent is open (torrents)</title>
		<link>http://tragicallynull.com/2008/09/26/solution-cant-browse-internet-while-utorrent-is-open-torrents/</link>
		<comments>http://tragicallynull.com/2008/09/26/solution-cant-browse-internet-while-utorrent-is-open-torrents/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 06:37:59 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Solution]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[nod32]]></category>
		<category><![CDATA[uTorrent]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/?p=234</guid>
		<description><![CDATA[So you open a torrent and it starts to download just fine but when to switch to your web browser you can&#8217;t get to any websites. It happens in Firefox, Internet Explorer, Opera, doesn&#8217;t matter. Well the fix is easy and a little ironic because it&#8217;s caused by Nod32.
To fix your problem all you need [...]]]></description>
			<content:encoded><![CDATA[<p>So you open a torrent and it starts to download just fine but when to switch to your web browser you can&#8217;t get to any websites. It happens in Firefox, Internet Explorer, Opera, doesn&#8217;t matter. Well the fix is easy and a little ironic because it&#8217;s caused by Nod32.<span id="more-234"></span></p>
<p>To fix your problem all you need to do is right click on the Nod32 system try icon, then click &#8220;Advanced Setup&#8230;&#8221; navigate the tree to &#8220;Antivirus and antispyware &gt; Web access protection &gt; HTTP &gt; Web Browsers&#8221; and make sure uTorrent and any other torrent programs are unticked (red X).</p>
<p>The problem is that Nod32 thinks uTorrent is a browser and then scrutinizes the traffic as such creating a very narrow bottleneck choking your normal internet traffic to a crawl. It doesn&#8217;t effect normal web browsers because of the low amount of throughput they have.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2008/09/26/solution-cant-browse-internet-while-utorrent-is-open-torrents/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Team Fortress 2 Steam: engine error: no permissions to run tf</title>
		<link>http://tragicallynull.com/2008/04/20/team-fortress-2-steam-engine-error-no-permissions-to-run-tf/</link>
		<comments>http://tragicallynull.com/2008/04/20/team-fortress-2-steam-engine-error-no-permissions-to-run-tf/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 05:16:54 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Solution]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Steam]]></category>
		<category><![CDATA[Team Fortress 2]]></category>
		<category><![CDATA[Valve]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/?p=232</guid>
		<description><![CDATA[So you just bought Team Fortress 2 through Steam and you&#8217;re ready to go, but wait! When you try to launch the game you get the following error: Engine Error: No permissions to run tf. After some googling you&#8217;d think it was something to do with your Vista/XP permissions, but no! You&#8217;re already running as [...]]]></description>
			<content:encoded><![CDATA[<p>So you just bought Team Fortress 2 through Steam and you&#8217;re ready to go, but wait! When you try to launch the game you get the following error: Engine Error: No permissions to run tf.<span id="more-232"></span> After some googling you&#8217;d think it was something to do with your Vista/XP permissions, but no! You&#8217;re already running as admin. The solution? Restart the Steam Client. Simple as that.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2008/04/20/team-fortress-2-steam-engine-error-no-permissions-to-run-tf/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>KERNEL_STACK_INPAGE_ERROR when adding/playing/transferring video (.mov .mp4) or photos in iTunes 7 and QuickTime 7 in Windows Vista</title>
		<link>http://tragicallynull.com/2007/09/19/possible-solution-kernel_stack_inpage_error-when-addingplayingtransferring-video-mov-mp4-or-photos-in-itunes-7-and-quicktime-7-in-windows-vista/</link>
		<comments>http://tragicallynull.com/2007/09/19/possible-solution-kernel_stack_inpage_error-when-addingplayingtransferring-video-mov-mp4-or-photos-in-itunes-7-and-quicktime-7-in-windows-vista/#comments</comments>
		<pubDate>Wed, 19 Sep 2007 15:26:01 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Gripe]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2007/09/19/possible-solution-kernel_stack_inpage_error-when-addingplayingtransferring-video-mov-mp4-or-photos-in-itunes-7-and-quicktime-7-in-windows-vista/</guid>
		<description><![CDATA[I&#8217;ve had this problem since the release of Vista and it seems pretty isolated so I wasn&#8217;t able to find a solution on the internet, but though a series of events and random chance I seem to have found a solution.
Symptom(s)
When you try to add, play (Video will play for about 6 seconds) or transfer [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had this problem since the release of Vista and it seems pretty isolated so I wasn&#8217;t able to find a solution on the internet, but though a series of events and random chance I seem to have found a solution.<span id="more-77"></span></p>
<h2>Symptom(s)</h2>
<p>When you try to add, play (Video will play for about 6 seconds) or transfer .mov or .mp4 (mpeg-4) video files (even from the iTunes Music Store) one of three things will happen.</p>
<ul>
<li>iTunes gracefully crashes and Windows Vista continues to function</li>
<li>Windows Vista completely hangs and ceases to function forcing a hard power-down.</li>
<li>Windows Vista will crash resulting in a Blue Screen of Death (BSOD) with the error KERNEL_STACK_INPAGE_ERROR.</li>
</ul>
<p>The same outcome can occur when trying to transfer a large amount of photos to an iPod using iTunes.</p>
<p>I am using an HP A1510N with the A8N-LA Nagami2 (nForce 430 (MCP51)) mother board. I also have an additional SATA and USB HardDrive, an additional 512MB RAM and a PCIe ATI Radeon x1950PRO, I believe this error may be hardware specific as this error doesn&#8217;t occur on my Dell notebook.</p>
<h2>The Solution</h2>
<p>I reformatted and reinstalled Windows Vista, without installing anything else, even Windows Updates, I installed iTunes, but the video problems (above) persisted. I then installed all of the Windows Updates (Including optional drivers except for a Realtek sound driver) and the latest driver for my graphics card, restarted my computer and iTunes could play, transfer and add video perfectly, except for a slight problem with audio sync. Reformatting may not be necessary, check to see if you have an update in Windows Update named NVIDIA nForce Serial ATA Controller and install if it&#8217;s not already, restart and test your video files.</p>
<p>The key to the solution seems to be the NVIDIA nForce Serial ATA Controller which seems to have been released yesterday. It would make sense if iTunes was trying to access a harddrive function that the driver/ couldn&#8217;t handle resulting in Windows Vista crashing because it suspected a damage Page File. Of course, I can be SURE that this was the fix. I will update this post if anything breaks later on because of a program incompatibility.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2007/09/19/possible-solution-kernel_stack_inpage_error-when-addingplayingtransferring-video-mov-mp4-or-photos-in-itunes-7-and-quicktime-7-in-windows-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solution: Xbox 360 controller for Windows&#8217; led lights blink after attempting to sync (Wireless Gaming Receiver USB)</title>
		<link>http://tragicallynull.com/2007/08/24/solution-xbox-360-controller-for-windows-led-lights-blink-after-attempting-to-sync-wireless-gaming-receiver-usb/</link>
		<comments>http://tragicallynull.com/2007/08/24/solution-xbox-360-controller-for-windows-led-lights-blink-after-attempting-to-sync-wireless-gaming-receiver-usb/#comments</comments>
		<pubDate>Fri, 24 Aug 2007 12:48:29 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Solution]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2007/08/24/solution-xbox-360-controller-for-windows-led-lights-blink-after-attempting-to-sync-wireless-gaming-receiver-usb/</guid>
		<description><![CDATA[It seem to be a pretty widespread problem that the Xbox 360 controller&#8217;s center LED lights blink even after attempting to sync under Windows XP/Vista using the Microsoft Wireless Gaming Receiver, this seems to be caused by a lack of available power from the motherboard, in some cases, even other USB devices stop working when [...]]]></description>
			<content:encoded><![CDATA[<p>It seem to be a pretty widespread problem that the Xbox 360 controller&#8217;s center LED lights blink even after attempting to sync under Windows XP/Vista using the Microsoft Wireless Gaming Receiver, this seems to be caused by a lack of available power from the motherboard, in some cases, even other USB devices stop working when the Receiver is plugged in. People have also reported being able to get it to work once, but then the problem recurs after a restart.<span id="more-73"></span></p>
<h2>The Symptom(s)</h2>
<p>You plug in the Wireless Gaming Receiver and power on the controller, all 4 quadrants of the controller&#8217;s LEDs blink, you attempt to sync the devices by first pushing and holding the button on the Receiver until it begins to blink and then you push and hold the button on the top of the controller until the leds spin, they stop blinking/spinning at the same time, yet the controller continues to blink, 3 quicker blinks after the attempted sync and then continued slow blinking.</p>
<h2>The Solution</h2>
<p>The only solution I&#8217;ve found is to use a powered USB hub, the side USB ports on a Dell monitor also work.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2007/08/24/solution-xbox-360-controller-for-windows-led-lights-blink-after-attempting-to-sync-wireless-gaming-receiver-usb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FreeBSD Log: Editing the Sudoers File</title>
		<link>http://tragicallynull.com/2007/05/06/freebsd-log-editing-the-sudoers-file/</link>
		<comments>http://tragicallynull.com/2007/05/06/freebsd-log-editing-the-sudoers-file/#comments</comments>
		<pubDate>Mon, 07 May 2007 04:51:04 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Solution]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[FreeBSD Log]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2007/05/06/freebsd-log-editing-the-sudoers-file/</guid>
		<description><![CDATA[This article was updated on May 24th, 2007 to correct superficial errors.
Ok, so you&#8217;ve got your FreeBSD installed on your computer, you&#8217;ve booted up for the first time and you&#8217;re looking at the login: prompt. You&#8217;ll need to login as root to configure sudo to allow yourself to run commands as root from your normal [...]]]></description>
			<content:encoded><![CDATA[<p class="special-alert">This article was updated on May 24th, 2007 to correct superficial errors.</p>
<p>Ok, so you&#8217;ve got your FreeBSD installed on your computer, you&#8217;ve booted up for the first time and you&#8217;re looking at the login: prompt. You&#8217;ll need to login as root to configure sudo to allow yourself to run commands as root from your normal account though SSH.<span id="more-51"></span> So type root at the login: prompt hit enter and then type in your password. Don&#8217;t worry that the letters or *s don&#8217;t appear for your password, they&#8217;re not suppose to. Once you login you should be at the default shell, something like freebsd#, where freebsd is the host you entered during the installation.</p>
<p>Now, from the freebsd# prompt and type visudo and press enter.<br />
<code>freebsd# visudo</code></p>
<p>You should have the default sudoers file in Vi. Use your arrow keys to move down the page until you see the line <samp>root       ALL=(ALL)          ALL</samp>, with your cursor on that line type o, this should create a new line. From there you can type the following line where [yourusername] is the normal user account you setup during the OS installation without the brackets&#8230;<br />
<code>[yourusername] ALL = (ALL) ALL</code></p>
<p>For for example, mine is&#8230;<br />
<code>john ALL = (ALL) ALL</code></p>
<p>From here you press escape then &#8220;:&#8221; without the quotes, then &#8220;x&#8221; without the quotes and then hit enter, this will save the file and exit Vi. And now you know why you installed Pico.</p>
<p>This will allow you to run any command as root, as long as you know the root password thus allowing you remotely administer your system completely through SSH. Now you can type exit to logout at the freebsd# prompt and turn off the monitor. From here we will be using SSH.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2007/05/06/freebsd-log-editing-the-sudoers-file/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Guild Wars Error=058 Fix</title>
		<link>http://tragicallynull.com/2006/09/20/guild-wars-error058-fix/</link>
		<comments>http://tragicallynull.com/2006/09/20/guild-wars-error058-fix/#comments</comments>
		<pubDate>Wed, 20 Sep 2006 11:19:57 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Solution]]></category>

		<guid isPermaLink="false">http://tragicallynull.com/2006/09/20/guild-wars-error058-fix/</guid>
		<description><![CDATA[With the weekend Nightfall preview event coming up on the 22nd of September, many people are installing the Guild Wars client for the first time, just as I did. Hopefully your install went smoothly, but if your install is like mine, you&#8217;ll be getting an Error=058 message when you try to enter your weekend event [...]]]></description>
			<content:encoded><![CDATA[<p>With the weekend Nightfall <a href="http://www.guildwars.com/support/NWPE_Keys.php">preview event</a> coming up on the 22nd of September, many people are installing the <a href="http://www.guildwars.com/support/downloadclient/">Guild Wars client</a> for the first time, just as I did. Hopefully your install went smoothly, but if your install is like mine, you&#8217;ll be getting an Error=058 message when you try to enter your weekend event or retail product key.<span id="more-25"></span></p>
<p>The <a href="http://support.plaync.com/cgi-bin/plaync.cfg/php/enduser/std_adp.php?p_faqid=3104">page they provide</a> is very helpful but they don&#8217;t always work, sometimes it has nothing to do with your network connection setting at all. This is what worked for me, and hopefully they&#8217;ll work for you. It&#8217;s a simple fix, but will require you to &#8220;restreamï¿½? the Guild Wars data again.</p>
<p><strong>Step 1:</strong> Make sure there are no instances of Guild Wars (Gw.exe) running<br />
<strong>Step 2:</strong>  Rename the file Gw.dat to Gw.old in your Guild Wars directory.<br />
<strong>Step 3:</strong>  Run Guild Wars (Gw.exe).</p>
<p>That fixed my problem, but it might not fix yours, so I&#8217;ve also included a guide below to help you asses where the problem is occurring and what steps to take to receive support. </p>
<p>First thing we need to do is see what kind of network issue you&#8217;re having. You can do this by going to start Start then clicking on run Run, and then typing cmd to open the command prompt. Once there you need to navigate to the Guild Wars install directory, you can do this by typing cd and then the directory of your Guild Wars install in quotes, by default this will be cd &quot;C:\Program Files\Guild Wars&quot;.</p>
<p>Once there we need to run the Guild Wars diagnostic tool by typing Gw.exe â€“diag, this will output a file called NetworkDiag.log in your Guild Wars install directory. To make sure you&#8217;re able to connect to the Guild Wars servers, you need to open NetworkDiag.log with a text editor, then find the &#8220;= Checking server connectivityï¿½? section. There you will see a list of servers with either &#8220;connect succeededï¿½? or &#8220;connect failedï¿½? by them. </p>
<p>If you&#8217;re showing a large number of &#8220;connect failedï¿½? messages, or you&#8217;re showing all &#8220;connect succeededï¿½? messages but you&#8217;re still unable to connect, you should contact Guild Wars support. You can do this by going to <a href="http://support.plaync.com/cgi-bin/plaync.cfg/php/enduser/ask.php?">this web page</a>, filling out your information and attaching your NetworkDiag.log file. They should get back to you within 24 hours.</p>
]]></content:encoded>
			<wfw:commentRss>http://tragicallynull.com/2006/09/20/guild-wars-error058-fix/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
