Archive for the ‘ Wordpress ’ Category

Wordpress. Flash uploader. HTTP error

For fix the Flash upload HTTP error in wordpress edit the .htaccess file in the wp-admin directory with the next lines of code:

1
2
3
4
5
6
7
8
#BEGIN Image Upload HTTP Error Fix
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
#END Image Upload HTTP Error Fix