Flash Image Uploader Issue
-
So here is a strange one for you, I’ve been trying to figure it out for months. I am able to upload images using the flash image uploader (WP 2.8.5) on one site just fine which runs on the same hosted server as another hosted site which doesn’t allow me to upload images using the flash image uploader.
So you would probably think htaccess file, maybe directory permissions, pretty standard right? The odd thing is on my Windows laptop (I run Ubuntu at home) I can upload images to the site I am receiving the HTTP error on just fine. What I am noticing is on the site I am having problems uploading images to the Select Files button displays but it looks like the CSS is off or something. It also doesn’t appear to be a flash problem because I can upload images to one site on my Ubuntu PC just fine but not another.
I have tried uploading a fresh copy of WP 2.8.5 and no matter what I do the button displays but it gets cut off the the right hand side of the button. A screenshot of what I referring to is available here – http://jeremyperson.com/pictures/temp/site1.png .
A screenshot of another site I run on the same server which is not having the problem is available here – http://jeremyperson.com/pictures/temp/site2.png . See how the button is not “messed up” on that site? That is the site I can upload just fine to.
The htaccess file I am using is as follows (placed at the root of the site which is where the WP files are located for the site I am having problems with)
*********************************************************
addhandler x-httpd-php5 .phpAuthType Basic
AuthName share
Satisfy Any
Order deny,allow
Allow from all<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule># BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress#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#BEGIN Forces Browser Caching
FileETag MTime Size
<ifmodule mod_expires.c>
<filesmatch “\.(jpg|gif|png|css|js)$”>
ExpiresActive on
ExpiresDefault “access plus 1 year”
</filesmatch>
</ifmodule>*********************************************************
I have tried taking the htaccess file from a site that works and replace it for the site which doesn’t work and that doesn’t make any difference either. Does anyone have any ideas for how to fix this? Thank you!
The topic ‘Flash Image Uploader Issue’ is closed to new replies.