Jun 14, 2008
WordPress Image Upload HTTP Error Fix
.htaccess | Tutorials & Resources | WordPress
If your WordPress 2.5 installation shows an HTTP Error when uploading files using the media uploader, this is due to mod_security on the async-upload.php file which handles file uploads.
Just add a few lines to WordPress’ .htaccess file should fix that problem.
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
<IfModule security_module>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
<IfModule security2_module>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>

















One Comment, Comment or Ping
PeeKa
This might also help if you are having problems with uploading images http://peekablog.net/2008/09/wordpress-images-upload-fixed/
Oct 11th, 2008
Reply to “WordPress Image Upload HTTP Error Fix”