Trying to add images to my library for the first time and if images are over 128KB I get an "HTTP error" and WP hangs on crunching with flash uploader. When using browser uploader it gets the following error:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Using WP 3.2.1. This was a fresh install, no upgrade. Never install WP on this host before
Changed theme to twenty eleven. Re-installed WP. Deleted every single plugin. Re-installed WP again.
Changed .htaccess to this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
# END WordPress
Nothing has worked so far. Any image below 128KB works fine, every image above no good, amount of pixels in image doesn't affect this at all.
Anyone have any other ideas?
Cheers.