<?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>Jonathan Wijaya Loe&#039;s blog &#187; Troubleshoot</title>
	<atom:link href="http://blog.jloe.net/tag/troubleshoot/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jloe.net</link>
	<description>A blog about technology blogging, tips and tricks, troubleshooting, and step by step tutorial with specialties in Microsoft .NET, C#, Zend, and PHP. Also includes wonderful and inspiring stories and jokes.</description>
	<lastBuildDate>Mon, 02 May 2011 00:05:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>PHP ZipArchive corrupted</title>
		<link>http://blog.jloe.net/2009/07/06/php-ziparchive-corrupted/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=php-ziparchive-corrupted</link>
		<comments>http://blog.jloe.net/2009/07/06/php-ziparchive-corrupted/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 06:47:17 +0000</pubDate>
		<dc:creator>Jonathan Loe</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Troubleshoot]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php_zip]]></category>
		<category><![CDATA[wampserver]]></category>
		<category><![CDATA[ZipArchieve]]></category>

		<guid isPermaLink="false">http://blog.jloe.net/?p=592</guid>
		<description><![CDATA[If you experienced a corrupted zip file produced by ZipArchive on WampServer you probably have come to the right place. Apparently there has been a discussion on this long time ago but looks like Wampserver still uses the old php_zip.dll. Well, nothing much to write about as it&#8217;s quite straightforward. You might want to try [...]]]></description>
			<content:encoded><![CDATA[<p>If you experienced a corrupted zip file produced by ZipArchive on WampServer you probably have come to the right place. Apparently there has been a <a title="Discussion on the issue" href="http://pecl.php.net/bugs/bug.php?id=9278" target="_blank">discussion</a> on this long time ago but looks like Wampserver still uses the old php_zip.dll.</p>
<p>Well, nothing much to write about as it&#8217;s quite straightforward. You might want to try downloading the latest binary file <a title="Click to download" href="http://blog.jloe.net/wp-content/uploads/2009/07/jloe_php_zip.zip">here</a> to solve the issue. <img src='http://blog.jloe.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Sources:</p>
<ul>
<li><a title="Click to check the site" href="http://pecl.php.net/bugs/bug.php?id=9278" target="_blank">Images files added with ZipArchive::addFile corrupt</a></li>
<li><a title="Click to check the site" href="http://www.mail-archive.com/php-bugs@lists.php.net/msg121851.html" target="_blank">Zip becomes corrupt when using ZipArchive</a></li>
<li><a title="Click to check the site" href="http://www.justskins.com/forums/39506-new-archive-corrupt-with-ziparchive-addfile-method-55114-2.html" target="_blank">Archive corrupt with ZipArchive::addFile method</a></li>
</ul>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 44px; width: 1px; height: 1px;">
<h1><span class="subject">Zip becomes corrupt when using ZipArchive</span></h1>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.jloe.net/2009/07/06/php-ziparchive-corrupted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP backslash issue</title>
		<link>http://blog.jloe.net/2009/04/01/php-backslash-issue/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=php-backslash-issue</link>
		<comments>http://blog.jloe.net/2009/04/01/php-backslash-issue/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 08:42:45 +0000</pubDate>
		<dc:creator>Jonathan Loe</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Troubleshoot]]></category>
		<category><![CDATA[backslash]]></category>
		<category><![CDATA[php setting]]></category>

		<guid isPermaLink="false">http://blog.jloe.net/?p=54</guid>
		<description><![CDATA[Recently I just encountered a problematic issue with PHP where every request, no matter it&#8217;s a GET or POST, all the values are somehow escaped with backslash (). Well, I guess this is due to my lack of knowledge on the existence of PHP default settings reside in apache. After some research, I found that [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I just encountered a problematic issue with PHP where every request, no matter it&#8217;s a GET or POST, all the values are somehow escaped with backslash (). Well, I guess this is due to my lack of knowledge on the existence of PHP default settings reside in apache.</p>
<p>After some research, I found that there is a setting in php that escapes all input from GET, POST and COOKIE (gpc). This setting name is called magic_quotes_gpc. Fortunately, this can easily be switched off in .htaccess by inserting the following line.</p>
<pre name="code" class="html">
php_value magic_quotes_gpc 0
</pre>
<p>With this line, my painful problem is finally resolved. Personally, I think this switch should never have been switched on into PHP by default as it&#8217;s quite confusing for inexperience PHP developer. <img src='http://blog.jloe.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jloe.net/2009/04/01/php-backslash-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Visual C++ Debug Library</title>
		<link>http://blog.jloe.net/2009/03/16/microsoft-visual-c-debug-library/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=microsoft-visual-c-debug-library</link>
		<comments>http://blog.jloe.net/2009/03/16/microsoft-visual-c-debug-library/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 16:02:23 +0000</pubDate>
		<dc:creator>Jonathan Loe</dc:creator>
				<category><![CDATA[Troubleshoot]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows xp]]></category>
		<category><![CDATA[winsock]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://blog.jloe.net/?p=15</guid>
		<description><![CDATA[I had been having this annoying error dialog that reads &#8220;Microsoft Visual C++ Debug Library&#8221; that showed up out of nowhere whenever I browsed the Internet. Although it can be aborted or ignored, but when it comes to something that distracts your browsing experience and it&#8217;s very annoying, I have to find a way to [...]]]></description>
			<content:encoded><![CDATA[<p><span>I had been having this annoying error dialog that reads &#8220;Microsoft Visual C++ Debug Library&#8221; that showed up out of nowhere whenever I browsed the Internet. Although it can be aborted or ignored, but when it comes to something that distracts your browsing experience and it&#8217;s very annoying, I have to find a way to get rid of this ugly box.</span></p>
<div id="attachment_19" class="wp-caption alignnone" style="width: 380px"><img class="size-full wp-image-19" title="Microsoft Visual C++ Debug Library" src="http://blog.jloe.net/wp-content/uploads/96383881dc5.jpg" alt="Microsoft Visual C++ Debug Library dialog" width="370" height="246" /><p class="wp-caption-text">Microsoft Visual C++ Debug Library dialog</p></div>
<p>This error resurfaced when I had to install <a title="WampServer2" href="http://www.wampserver.com/en/" target="_blank"><span>Wampserver2</span></a> for testing purpose and attempted to access my <a title="phpMyAdmin" href="http://www.phpmyadmin.net/" target="_blank"><span><span>phpMyAdmin</span></span></a><span>. Google has been my best friend to look for some clues, hints, and best, an answer. Fortunately, I came across <a title="geekstogo forum" href="http://www.geekstogo.com/forum/Microsoft-Visual-C-Debug-Library-t187146.html" target="_blank">geekstogo forum</a> and found an answer. The answer is for me to download a <a title="WinSock XP Fix" href="http://www.majorgeeks.com/download4372.html" target="_blank">WinSock XP Fix</a> and run it. And Wa la! It fixed my error!!</span></p>
<p><span>Hope this helps anyone out there having the same problem <img src='http://blog.jloe.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jloe.net/2009/03/16/microsoft-visual-c-debug-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

