Created
January 29, 2012 11:22
-
-
Save GaryJones/1698353 to your computer and use it in GitHub Desktop.
Fix for HTTP Error as seen in WP Media Uploader
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
php_value memory_limit "128M" | |
#BEGIN Image Upload HTTP Error Fix | |
<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> | |
#END Image Upload HTTP Error Fix |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment