I have a problem. when a user upload photos, the pop op window first display "initializing upload" throughout the whole upload process and only in the end the upload bar is showing the upload information and a "upload complete" message. It takes many seconds until the progress bar shows up and this cause many of the users to give up uploading and to stop the filling of the form.
I went through some of the posts here and the solution with the .htaccess file.
My .htaccess has the following code:
Code: Select all
LimitRequestBody 10000000000000
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
SetEnvIfNoCase Content-Type "^multipart/form-data;" "MODSEC_NOPOSTBUFFERING=Do not buffer file uploads"
</IfModule>
<IfModule mod_gzip.c>
mod_gzip_on No
</IfModule>
<IfModule mod_deflate.c>
SetEnvIfNoCase Request_URI testenv.cgi no-gzip dont-vary
SetEnvIfNoCase Request_URI upload_status.cgi no-gzip dont-vary
SetEnvIfNoCase Request_URI upload.cgi no-gzip dont-vary
</IfModule>
Please help. thanks.