Why can't Max Size of Post Data be increased?
We need to do a CFFILE upload of 1 – 3 GB videos and are having troubles.
(I know this is crazy, but FTP, network mapped drives, etc. aren’t going to leave an audit trail like an HTML form will for when people have to upload/update/delete bus incident videos.)
I can't increase the Max size of post data to even 2048MB without people getting "500" errors who are trying to upload small gifs or pdfs. If I move it above 2047MB, no one can upload anything.
Our setup:
CF Enterprise 8.0.1 with Hot Fix 2
2 - Win Servers 2003 R2 Enterprise x64 using replication, load balancing, and MS virtual machine.
CF is clustered so the Java class paths begin with
C:/JRun4/servers/HSWSD0C1O/cfusion.ear/cfusion.war/WEB-INF/...
CF Admin settings:
Max size of post data = 2047MB
Request throttle threshold = 4MB
Request Throttle Memory = 3072MB
Setting of 10 simultaneous requests.
Restarted CF services after Hotfix 2 install.
On the Application.cfm page I put
applicationtimeout="#CreateTimeSpan(0,4,0,0)#"
Basic code for uploading:
<!--- upload file and get results --->
<cffile action="upload"
filefield="file"
destination="#fileDirectory#"
nameconflict="error"
result="uploadResult">
This code works for small files IF I don't raise the max size of post data above 2047MB, which means we'll never get those videos up.
I've been fighting with this for weeks. Any ideas?
Thanks!
