on my server i am using Uber-uploader – file uploader with progress bar. After configuring at first run files are uploading but no progress bar. showing error :
Failed To Find Flength File
so upon search i got a solution just add following entries in .htaccess file in cgi-bin folder where uber-uploaer .pl files located.
<IfModule mod_security.c>
# Turn off mod_security filtering.
SecFilterEngine Off
# The below probably isn’t needed,
# but better safe than sorry.
SecFilterScanPOST Off
</IfModule>
bingo – now its working fine.
source :
http://uber-uploader.sourceforge.net/?section=flength


