Posts Tagged ‘HTTP error’

HTTP Error while trying to upload image/video etc media file

Thursday, June 5th, 2008

HTTP Error when trying to upload file

I faced this problem after I upgraded to the latest Wordpress version 2.5.1~

Googled around, and I found the solution: (Thanks to LSRN94 and WordPress support forum)

It is simple. Just edit your .htaccess file in your WordPress root directory and add in the code below:

<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>

Many people tried this solution and solved their problem. Hope this can help you too.