Re: [AOLSERVER] New to AOLServer (using with OACS4.6 head + postgres 7.3.1)

2003-01-17 Thread tammy
Hey But, in your original email, you said: Executing su nsadmin -c nm /usr/local/pgsql/lib/libpq.so.3 returns valid output so the library is not corrupted. How could that have been? That would have attempted to open libpq.so.3 as user nsadmin -- if nsadmin didn't have the necessary

[AOLSERVER] bug reports not auto-emailed?

2003-01-17 Thread Andrew Piskorski
I no longer seem to get auto-generated SourceForge bug emails at all, and there doesn't seem to be any way to sign up for bug tracker activity on SourceForge either. What are the current status and plans for this sort of thing? Naturally, I noticed this because I just submitted a bug report

Re: [AOLSERVER] Uploading binary file!

2003-01-17 Thread Durga
Hey Dossy/Pete, Has anyone had issues with uploading binary file using multipart/form-data on AOLserver 3.5.0?..I am having troble uploading binary files. Please let me know if anyone knows fix for this problem. Thanks in advance for any inputs! -Durga -Original Message- From:

Re: [AOLSERVER] Uploading binary file!

2003-01-17 Thread Tom Jackson
Durga wrote: exec /usr/bin/cp [ns_queryget localfile.tmpfile] $dirpath$upname Try using ns_cp instead of exec /usr/bin/cp, or use 'file copy' with AOLserver 3.5.x. I am using 3.5.0, and have checked that both of these work on binary files. --Tom Jackson

Re: [AOLSERVER] Uploading binary file!

2003-01-17 Thread David Walker
Are you displaying back to the web page using ns_returnfile (should work)? or one of ns_write, ns_return (probably won't work since your content is binary. may work in 4.0) On Friday 17 January 2003 03:22 pm, Durga wrote: Hey Dossy/Pete, Has anyone had issues with uploading binary file using

Re: [AOLSERVER] Uploading binary file!

2003-01-17 Thread Durga
Thanks Tom! I tried using ns_cp, too. But it didn't work. Can you let me know what are your ns/mimetype setting in nsd.tcl? I am thinking something wrong with mime setting's. Any idea? -Original Message- From: AOLserver Discussion [mailto:[EMAIL PROTECTED]]On Behalf Of Tom Jackson Sent:

Re: [AOLSERVER] Uploading binary file!

2003-01-17 Thread Durga
Problem is: it's NOT transferring correct binary file to server (for example Word doc's). I don't have problem in displaying TEXT files. I tried to transfer regular TEXT file (.txt extension), and it work's perfect. -Original Message- From: AOLserver Discussion [mailto:[EMAIL

Re: [AOLSERVER] Uploading binary file!

2003-01-17 Thread David Walker
My co-worker tells me he did have trouble with file upload in 3.5.0 I didn't look into the problem and he is running 3.4.2 instead now. On Friday 17 January 2003 03:52 pm, Durga wrote: Problem is: it's NOT transferring correct binary file to server (for example Word doc's). I don't have problem

Re: [AOLSERVER] Uploading binary file!

2003-01-17 Thread Nathan Folkman
In a message dated 1/17/2003 4:58:17 PM Eastern Standard Time, [EMAIL PROTECTED] writes: My co-worker tells me he did have trouble with file upload in 3.5.0 I didn't look into the problem and he is running 3.4.2 instead now. You'll want to upgrade to the latest 3.5.x build. There was a bug in

Re: [AOLSERVER] Uploading binary file!

2003-01-17 Thread Durga
Is it possible to apply patches to existing AOL server 3.5.0 to make it work?!..Or I must have to upgrade whole stuff. Please let me know. Thanks Durga -Original Message-From: AOLserver Discussion [mailto:[EMAIL PROTECTED]]On Behalf Of Nathan FolkmanSent:

[AOLSERVER] OTish: Data abstraction facilities in Tcl

2003-01-17 Thread Peter M. Jansson
(...that work in AOLserver.) So, I've been writing Tcl for AOLserver since it only ran Tcl 7.4, and you only had 3 choices for storing data in Tcl -- scalars, lists and arrays. Things like a list of arrays weren't possible; if you wanted to have such a thing, you had to fake it. I admit, I've

Re: [AOLSERVER] Uploading binary file!

2003-01-17 Thread Nathan Folkman
In a message dated 1/17/2003 5:29:58 PM Eastern Standard Time, [EMAIL PROTECTED] writes: Is it possible to apply patches to existing AOL server 3.5.0 to make it work?!..Or I must have to upgrade whole stuff. Please let me know. i'd recommend upgrading:

Re: [AOLSERVER] OTish: Data abstraction facilities in Tcl

2003-01-17 Thread Peter M. Jansson
I swear, I knew this had been discussed before, I just was looking for pointers. I found the right set of things to ask Google, and came up with these http://www.pinds.com/acs-tips/tcl-data-structures Lars doesn't believe Tcl is good for this stuff http://mini.net/tcl/2995 The

Re: [AOLSERVER] OTish: Data abstraction facilities in Tcl

2003-01-17 Thread Brett Schwarz
Humm, I never really found the short list of data types a hinderance for Tcl. I have always been able to manage with what is there, although I did write the record package (tcllib) to overcome one obstacle I had, but I did that more as an excercise really. If you really are stuck, and want to

Re: [AOLSERVER] OTish: Data abstraction facilities in Tcl

2003-01-17 Thread Jeff Hobbs
So, I've been writing Tcl for AOLserver since it only ran Tcl 7.4, and you only had 3 choices for storing data in Tcl -- scalars, lists and arrays. Things like a list of arrays weren't possible; if you wanted to have such a thing, you had to fake it. I admit, I've gotten used to being able to

Re: [AOLSERVER] OTish: Data abstraction facilities in Tcl

2003-01-17 Thread Dossy
On 2003.01.17, Peter M. Jansson [EMAIL PROTECTED] wrote: (...that work in AOLserver.) [...] Things like a list of arrays weren't possible; if you wanted to have such a thing, you had to fake it. [...] How do Tcl programmers normally do such things? Generally, when I find myself needing

Re: [AOLSERVER] OTish: Data abstraction facilities in Tcl

2003-01-17 Thread Peter M. Jansson
I got this... On Fri, 17 Jan 2003, Dossy wrote: Generally, when I find myself needing things like, say, a list of arrays, in Tcl, they tend to be design smells. It's the I can write Perl in any language! syndrome. ...and this: On Fri, 17 Jan 2003, Brett Schwarz wrote: I am just curious,

Re: [AOLSERVER] OTish: Data abstraction facilities in Tcl

2003-01-17 Thread Andrew Piskorski
On Fri, Jan 17, 2003 at 10:19:27PM -0500, Peter M. Jansson wrote: I got this... On Fri, 17 Jan 2003, Dossy wrote: Generally, when I find myself needing things like, say, a list of arrays, in Tcl, they tend to be design smells. It's the I can write Perl in any language! syndrome. ...and

Re: [AOLSERVER] OTish: Data abstraction facilities in Tcl

2003-01-17 Thread David Walker
Right or wrong I normally leave that kind of work up to the database rather than caching it in memory. I wonder how it would work to write a sql-based database in memory for cache handling. Something like: ns_db cache $postgres select * from postgresql to $ram ns_db select $ram