[PHPMotion] Failed to find flength file
  What this solution fixes:
1) Progress bar on uploading is not showing
2) You are getting an error when uploading "Failed to find flength file"
 
 
  Please, make sure that your custom php.ini contains the following:
  Code:
 
upload_max_filesize = 100M
post_max_size = 100M
output_buffering = On
max_execution_time = 1000
max_input_time = 1000
session.gc_maxlifetime = 14400
enable_dl = on
  And .htaccess:
  Code:
 
SecFilterEngine Off
SecFilterScanPOST Off
  
 
Related Articles:
 http://forums.glowhost.com/showthread.php?t=2589
 http://forums.glowhost.com/showthread.php?t=2590
     (script conflict) Modified cgi-bin/uu_default_config.pm
  Ive modified /home/user/www/cgi-bin/uu_default_config.pm to solve a conflict with the upload file size in the php.ini file
 
If you have 300 meg in your php.ini for upload_max_filesize and post_max_size like so:
 
  Code:
 
upload_max_filesize 300M
post_max_size = 300M
  Then you are also going to have to reconfigure the maximum allowed bytes in the uu_default_config.pm to be at least the same as your php.ini.
 
FROM:
  Code:
 
max_upload => 209715200,
  TO
  Code:
 
max_upload => 314572800,
  314572800 bytes is equal to 300 megabytes.