Re: [AOLSERVER] Large file uploads

2004-06-03 Thread Ross Simpson
If only :) For operational reasons, no. Having users scp files is also probably off-limits. On Thu, 2004-06-03 at 14:46, Nathan Folkman wrote: Is FTP an option? Ross Simpson wrote on 6/3/04, 4:33 PM: I have a file upload widget (input type=file...) which will be accepting large files

Re: [AOLSERVER] Large file uploads

2004-06-03 Thread Ross Simpson
On Thu, 2004-06-03 at 16:20, Steve wrote: On Thu, 2004-06-03 at 22:48, Jeremy Vinding wrote: the default is 1mb... ross changed it to 100meg, but that didn't help a whole lot... even an tiny little 8 meg file eventually timed out in IE. in galeon, it seems to just sit and spin forever.

[AOLSERVER] HTTP encodings

2004-05-21 Thread Ross Simpson
Hello, This question doesn't _really_ have much to do with AOLserver, but since I'm trying to build some desired functionality into an AS module, I thought I'd ask here. I want to be able to stream gzipped data out to browsers. The use case for this is a user who requests an extract of a

Re: [AOLSERVER] HTTP encodings

2004-05-21 Thread Ross Simpson
The nsreturnz module works great for what it does, but it's functionality is to return gzipped data all at once, where I want to use HTTP's chunked transfer encoding to send chunks of independently gzipped data to the user. I am using a hacked up copy of it for my testing, though, and it's gzip

[AOLSERVER] SSL redirection

2004-05-04 Thread Ross Simpson
Hello, I'm working on a site that uses SSL, and want to redirect users who access the site via http to https. The way I've done this in the past is to check ns_conn driver, then redirect to a hardcoded URL. However, I would like to be able to do this independent of the system aolserver is

[AOLSERVER] tdom question

2004-03-05 Thread Ross Simpson
I'm having a problem with tDom. I was going to ask on their mailing list, but they use Yahoo groups, which happens to be down. Hoping someone here may know what's going on :) I'm trying to include an xslt template from within another (included) xslt template. - The inclusion (from within

Re: [AOLSERVER] tdom question

2004-03-05 Thread Ross Simpson
On Fri, 2004-03-05 at 12:52, Rob Crittenden wrote: Dossy wrote: - if so, how can I get around it (and who desires it??) :) xsl:include href=../poi_list.xsl/ ? Really? Can you include relative files like this? rob If I may further clarify, my problem does not occur when testing

Re: [AOLSERVER] Controlling perms on files written to by AOLserver

2004-02-24 Thread Ross Simpson
This won't solve the problem of the files being created with the wrong permissions, but a quick fix may be to call ns_chmod after the file has been written. See http://aolserver.sourceforge.net/docs/devel/tcl/api/file.html#ns_chmod Ross On Tue, 2004-02-24 at 12:48, Janine Sisk wrote: We

Re: [AOLSERVER] Ns_SetRequestAuthorizeProc has no Tcl Command

2003-10-31 Thread Ross Simpson
Isn't the HTTP authentication implementation already built into AOLserver, via ns_conn authuser and ns_conn authpassword? I have a site which has a filter registered to /*. That filter merely looks at ns_conn authuser/ns_conn authpassword and then authenticates against a file -- you could to the

Re: [AOLSERVER] Graphing

2003-08-14 Thread Ross Simpson
: *** [nschartdir.o] Error 1 I'll admit to not knowing enough about compiling and linking to figure this one out.. Do you have any ideas? Thanks, Ross Vlad Seryakov wrote: check out my chart module nschartdir, i use ChartDirector graphic library http://www.crystalballinc.com/vlad/software Ross

[AOLSERVER] Graphing

2003-08-10 Thread Ross Simpson
Hello, I was curious if anyone is doing any graphing with aolserver. I've been looking at the various options, and so far am not encouraged.. These are the packages I've looked at: plplot emu_graph Gdtcl Plplot looks good, but I get lots of core dumps while using it.

[AOLSERVER] ns_register_filter problem

2003-02-17 Thread Ross Simpson
the function registered to handle this request. Thoughts? Ideas? thanks Ross -- Ross Simpson Associate Software Engineer | MapQuest.com [EMAIL PROTECTED] | 303.312.0187

Re: [AOLSERVER] ns_register_filter problem

2003-02-17 Thread Ross Simpson
done the trick. Thanks guys! Ross On Mon, 2003-02-17 at 14:12, Dossy wrote: On 2003.02.17, Ross Simpson [EMAIL PROTECTED] wrote: I'm trying to use ns_register_filter, and am running into difficulties. That's because you want to use ns_register_proc, not ns_register_filter. -- Dossy