Jim Wilcoxson wrote:
>
> Do this:
>
> ns_section "ns/server/${servername}"
> ns_param maxpost 131072 ;# Max bytes on a POST
>
> Jim
>
> >
> > Hello.
> >
> > I've hit a major problem.
> >
> > I want to send base64 encoded files through HTTP - the files are from
> > 100 to 100000 bytes. When uploading a 80k file, I occured this problem:
> >
> > [06/Jan/2002:20:20:22][1030.19474][-conn1-] Warning: conn: post size
> > 123377 exceeds maxpost limit of 65536
> >
> > The files are sent using my own software so I'd rather stay with
> > http::formatQuery+base64::encode.
> >
> > I'm porting my piece of software from Apache+mod_dtcl to AOLserver and
> > this makes me a bit annoyed.
if you use mime multi-part posts to upload files, you should not have
the problem above (if i remember right). posting files using a plain POST
directives is'nt really a recommended practice..
we post up big multipart files all the time
using the ::http package and it works fine...
i can probably dig up an example of how to do it if you need one..
-mike