Re: [AOLSERVER] 64k query limit?

2002-01-06 Thread Wojciech Kocjan

Yeap, grepped it a minute after posting this one.

Mentioned in doc/config.txt or something :)

But thanks anyway

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 10 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.

Can this be somehow omitted?

--
WK








Re: [AOLSERVER] 64k query limit?

2002-01-06 Thread Wojciech Kocjan

Hmmm.

I could use an example - the current system works fine with base64, but
I will be writing v2 (incompatible with v1, of course :) and could use
multipart...

--
WK

Mike Hoegeman wrote:

 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