<?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>Exploring The Internet &#187; uploading image problem</title>
	<atom:link href="http://www.learningwp.com/tag/uploading-image-problem/feed" rel="self" type="application/rss+xml" />
	<link>http://www.learningwp.com</link>
	<description>Exploring the web - Growing my experience toward my online business</description>
	<lastBuildDate>Tue, 07 Sep 2010 01:30:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Solution For WordPress Uploading Image Problem</title>
		<link>http://www.learningwp.com/solution-for-wordpress-uploading-image-problem.html</link>
		<comments>http://www.learningwp.com/solution-for-wordpress-uploading-image-problem.html#comments</comments>
		<pubDate>Wed, 30 Apr 2008 23:31:54 +0000</pubDate>
		<dc:creator>Lanna</dc:creator>
				<category><![CDATA[Blogging Tools]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Tips]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[uploading image problem]]></category>
		<category><![CDATA[WordPress blog]]></category>

		<guid isPermaLink="false">http://www.learningwp.com/?p=28</guid>
		<description><![CDATA[








After upgrading to WordPress 2.5/WordPress 2.5.1, I couldn&#8217;t upload any pictures anymore. When I clicked on Add an Image/Choose File from the editor, a window showed up: From Computer; HTTP error&#8230; An error occurred in the upload. Please try again later. See the screenshot below:
Click the above picture to enlarge
This was so frustrated since I [...]]]></description>
			<content:encoded><![CDATA[<p>
<!-- Begin Google Adsense code -->
<div style="display: block; float: left; padding: 5px 10px 10px 0;">
<script type="text/javascript"><!--
google_ad_client = "pub-4932554700716308";
/* 336x280, created 12/24/07 */
google_ad_slot = "2510575724";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<!-- End Google Adsense code -->
After upgrading to <em>WordPress 2.5</em>/<a title="WordPress 2.5.1" href="http://www.learningwp.com/interested-in-upgrading-to-wordpress-251.html">WordPress 2.5.1</a>, I couldn&#8217;t upload any pictures anymore. When I clicked on <span style="color: #cc66cc;"><em>Add an Image/Choose File</em></span> from the editor, a window showed up: From Computer; HTTP error&#8230; An error occurred in the upload. Please try again later. See the screenshot below:<a href="http://www.learningwp.com/wp-content/uploads/2008/07/http_error.jpg"><img class="aligncenter size-full wp-image-124" title="http_error" src="http://www.learningwp.com/wp-content/uploads/2008/07/http_error.jpg" alt="http error" width="450" height="196" /></a></p>
<p style="text-align: center;">Click the above picture to enlarge</p>
<p>This was so frustrated since I uploaded pictures a lot. After a couple days of searching on the Internet, I finally found a solution to this problem. Hopefully you can be benefited by this too if you have the same problem like this. Just follow the steps below to fix this problem:</p>
<ul>
<li>Using <a title="The Benefits Of Using FireFox With Google Toolbar" href="http://www.learningwp.com/the-benefits-of-using-firefox-with-google-toolbar.html">FireFTP</a> to download your <span style="color: #cc66cc;">.htaccess</span> from your <em>WP</em> folder to your <em>PC</em> (Personal Computer). If you don&#8217;t have <em>FireFTP</em>, then use whatever <em>FTP</em> you have.</li>
</ul>
<ul>
<li>Edit your <span style="color: #cc66cc;">.htaccess</span> file by inserting the following codes:</li>
<table style="height: 21px;" border="1" cellspacing="0" width="440" align="center">
<tbody>
<tr>
<td style="background-color: #e5ecfa; width: 440px;">
<p style="margin: 5pt 15pt; text-align: justify;">&lt;IfModule mod_security.c&gt;<br />
&lt;Files async-upload.php&gt;<br />
SecFilterEngine Off<br />
SecFilterScanPOST Off<br />
&lt;/Files&gt;<br />
&lt;/IfModule&gt;</p>
</td>
</tr>
</tbody>
</table>
</ul>
<ul>
<li>See the highlighted portion of the codes that I inserted in my .htaccess file:</li>
<table style="height: 21px;" border="1" cellspacing="0" width="440" align="center">
<tbody>
<tr>
<td style="background-color: #e5ecfa; width: 440px;">
<p style="margin: 5pt 15pt; text-align: justify;"># BEGIN WordPress<br />
&lt;IfModule mod_rewrite.c&gt;<br />
RewriteEngine On<br />
RewriteBase /blog/<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /blog/index.php [L]<br />
&lt;/IfModule&gt;</p>
<p style="margin: 5pt 15pt; text-align: justify;"><span style="background-color: #ffff00;">&lt;IfModule mod_security.c&gt;</span><br />
<span style="background-color: #ffff00;">&lt;Files async-upload.php&gt;</span><br />
<span style="background-color: #ffff00;">SecFilterEngine Off</span><br />
<span style="background-color: #ffff00;">SecFilterScanPOST Off</span><br />
<span style="background-color: #ffff00;">&lt;/Files&gt;</span><br />
<span style="background-color: #ffff00;">&lt;/IfModule&gt;</span><br />
<span style="background-color: #ffff00;">}</span>
</p>
<p style="margin: 5pt 15pt; text-align: justify;"># END WordPress</p>
</td>
</tr>
</tbody>
</table>
</ul>
<ul>
<li>Make sure you save the <span style="color: #cc66cc;">.htaccess</span> file</li>
</ul>
<ul>
<li>After you&#8217;ve done that, upload <span style="color: #cc66cc;">.htaccess</span> file back to WP folder</li>
</ul>
<ul>
<li>Log in to your <span style="color: #cc66cc;"><em>WordPress Dashboard</em></span>; you <strong>should not</strong> have problem to upload your images now</li>
</ul>
<p>Does this tutorial solve your problem? Feel free to talk about in the comment section.</p>
<p>Related articles<br />
<a title="Image Upload Error" href="http://nineteenhundredandyesterday.com/?p=103" target="_blank">Image Upload Error</a><br />
<a title="WordPress 2.5 Image Upload Error" href="http://www.hongkiat.com/blog/wordpress-25-image-upload-error-wordpress-fix/" target="_blank">WordPress 2.5 Image Upload Error</a></p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.learningwp.com%2Fsolution-for-wordpress-uploading-image-problem.html&amp;title=Solution%20For%20WordPress%20Uploading%20Image%20Problem&amp;bodytext=After%20upgrading%20to%20WordPress%202.5%2FWordPress%202.5.1%2C%20I%20couldn%27t%20upload%20any%20pictures%20anymore.%20When%20I%20clicked%20on%20Add%20an%20Image%2FChoose%20File%20from%20the%20editor%2C%20a%20window%20showed%20up%3A%20From%20Computer%3B%20HTTP%20error...%20An%20error%20occurred%20in%20the%20upload.%20Please%20try%20again%20l" title="Digg"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.learningwp.com%2Fsolution-for-wordpress-uploading-image-problem.html&amp;title=Solution%20For%20WordPress%20Uploading%20Image%20Problem&amp;notes=After%20upgrading%20to%20WordPress%202.5%2FWordPress%202.5.1%2C%20I%20couldn%27t%20upload%20any%20pictures%20anymore.%20When%20I%20clicked%20on%20Add%20an%20Image%2FChoose%20File%20from%20the%20editor%2C%20a%20window%20showed%20up%3A%20From%20Computer%3B%20HTTP%20error...%20An%20error%20occurred%20in%20the%20upload.%20Please%20try%20again%20l" title="del.icio.us"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.learningwp.com%2Fsolution-for-wordpress-uploading-image-problem.html&amp;t=Solution%20For%20WordPress%20Uploading%20Image%20Problem" title="Facebook"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fwww.learningwp.com%2Fsolution-for-wordpress-uploading-image-problem.html&amp;h=Solution%20For%20WordPress%20Uploading%20Image%20Problem" title="NewsVine"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.learningwp.com%2Fsolution-for-wordpress-uploading-image-problem.html&amp;title=Solution%20For%20WordPress%20Uploading%20Image%20Problem" title="Reddit"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.learningwp.com%2Fsolution-for-wordpress-uploading-image-problem.html&amp;title=Solution%20For%20WordPress%20Uploading%20Image%20Problem" title="StumbleUpon"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.learningwp.com%2Fsolution-for-wordpress-uploading-image-problem.html&amp;title=Solution%20For%20WordPress%20Uploading%20Image%20Problem&amp;annotation=After%20upgrading%20to%20WordPress%202.5%2FWordPress%202.5.1%2C%20I%20couldn%27t%20upload%20any%20pictures%20anymore.%20When%20I%20clicked%20on%20Add%20an%20Image%2FChoose%20File%20from%20the%20editor%2C%20a%20window%20showed%20up%3A%20From%20Computer%3B%20HTTP%20error...%20An%20error%20occurred%20in%20the%20upload.%20Please%20try%20again%20l" title="Google Bookmarks"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fwww.learningwp.com%2Fsolution-for-wordpress-uploading-image-problem.html&amp;submitHeadline=Solution%20For%20WordPress%20Uploading%20Image%20Problem&amp;submitSummary=After%20upgrading%20to%20WordPress%202.5%2FWordPress%202.5.1%2C%20I%20couldn%27t%20upload%20any%20pictures%20anymore.%20When%20I%20clicked%20on%20Add%20an%20Image%2FChoose%20File%20from%20the%20editor%2C%20a%20window%20showed%20up%3A%20From%20Computer%3B%20HTTP%20error...%20An%20error%20occurred%20in%20the%20upload.%20Please%20try%20again%20l&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Solution%20For%20WordPress%20Uploading%20Image%20Problem%20-%20http%3A%2F%2Fwww.learningwp.com%2Fsolution-for-wordpress-uploading-image-problem.html" title="Twitter"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.learningwp.com%2Fsolution-for-wordpress-uploading-image-problem.html" title="Technorati"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.learningwp.com%2Fsolution-for-wordpress-uploading-image-problem.html&amp;title=Solution%20For%20WordPress%20Uploading%20Image%20Problem" title="Live"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.learningwp.com%2Fsolution-for-wordpress-uploading-image-problem.html&amp;title=Solution%20For%20WordPress%20Uploading%20Image%20Problem&amp;source=Exploring+The+Internet+Exploring+the+web+-+Growing+my+experience+toward+my+online+business&amp;summary=After%20upgrading%20to%20WordPress%202.5%2FWordPress%202.5.1%2C%20I%20couldn%27t%20upload%20any%20pictures%20anymore.%20When%20I%20clicked%20on%20Add%20an%20Image%2FChoose%20File%20from%20the%20editor%2C%20a%20window%20showed%20up%3A%20From%20Computer%3B%20HTTP%20error...%20An%20error%20occurred%20in%20the%20upload.%20Please%20try%20again%20l" title="LinkedIn"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.learningwp.com%2Fsolution-for-wordpress-uploading-image-problem.html&amp;t=Solution%20For%20WordPress%20Uploading%20Image%20Problem" title="MySpace"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="" title="YahooMyWeb"><img src="http://www.learningwp.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.learningwp.com/solution-for-wordpress-uploading-image-problem.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
