Uploading a Binary File From The Browser

JamesBowen

19+ years progress programming and still learning.
Hi All.

I am using OE 10.1B and I am developing are web page in which the user can upload any binary/text file. This works, and it works well. BUT.... It can't seam to handle any files larger than 1MB. What happens is the browser gets disconnected even before the file is even transmitted. I know this because I am using "Pro Soap View" tool to monitor/debug the traffic.

Also the weird thing is that I am not getting any error warning messages in the Webspeed Broker or Server files, and preempting the following answers to this Post, Yes! I have set the "Binary upload max size".

More Info:
Apache 2.0

Also the "LimitRequestBody" setting it set to unlimited.

Many thanks.
 
Quick update. I still have the problem of uploading files greater than 1 MB. But the problems seams to be the our SQUID proxy.

Any ideas why SQUID would stop file uploads over 1MB?
 
Problem Solved.

Squid by default was stopping File post greater than 1 MB.

configuration file change from 1 MB to 10 MB

Code:
#Default:
# request_body_max_size 1 MB

request_body_max_size 10 MB
 
Back
Top