[AOLSERVER] Resume download for AOLServer

2001-08-19 Thread macky
is there a way to resume download for AOLServer? thanks in advance -- The information contained in this message (including any attachments) is confidential and intended solely for the attention and use of the named addressee(s

[AOLSERVER] ns_sock* problem

2001-08-19 Thread macky
i had this problem for quite some time.. whenever $port is unavaible for some reason and u did a ns_sockopen... booomm nsd dies... i did a catch but still doesn't work... if { [catch {ns_sockopen -nonblock $host $port} rw_sock] } { set port "" ns_log "Notice" "Redirecti

[AOLSERVER] submitting bug report?

2001-07-31 Thread macky
i wanna post a bug report in pertaining to ns_sockopen can some tell how to do that..? -- The information contained in this message (including any attachments) is confidential and intended solely for the attention and use of the n

Re: [AOLSERVER] sockets

2001-07-31 Thread macky
i'd rather use the generic socket command in tcl ns_socketopen has a bug.. - Original Message - From: "Hal Heisler" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 31, 2001 10:27 PM Subject: sockets > It there an advantage to using ns_socketopen and family over tcl's

[AOLSERVER] HTTPS help..

2001-07-25 Thread macky
who can tell me how to create a certificate and a private key. to be used in HTTPS... do i have to buy it or register it? help would be much appreciated... thanks in advance... -- The information contained in this

Re: [AOLSERVER] User Authentication Questions

2001-07-12 Thread macky
try to visit this site.. http://panoptic.com/wiki/aolserver/AOLserverContributedSoftware http://www.aolserver.com/docs/tcldev/tcldev.htm http://www.scriptics.com/man/tcl8.2/TclCmd/contents.htm this sites will help u a lot.. good luck -

Re: [AOLSERVER] CATCH on NS_SOCKOPEN

2001-06-28 Thread macky
1 12:38 PM Subject: Re: CATCH on NS_SOCKOPEN > +-- On Jun 29, macky said: > > i did a catch on ns_sockopen hoping that whenever anything goes wrong it > > would still continue process.. > > > > if { [catch { ns_sockopen 192.168.100.1 } conn] } { > >

[AOLSERVER] CATCH on NS_SOCKOPEN

2001-06-28 Thread macky
i did a catch on ns_sockopen hoping that whenever anything goes wrong it would still continue process.. if { [catch { ns_sockopen 192.168.100.1 } conn] } { #If can't connect use different port. set conn [ns_sockopen 192.168.100.1 9998] } etc. problem: error on ns_sockopen kills my

[AOLSERVER] catch on NS_SOCKOPEN?

2001-06-15 Thread macky
i did a if { [catch { ns_sockopen host port1 } err] { ...do an ns_sockopen on port2 instead ... } expected: if there was an error doing ns_sockopen on port1 continue execution and should do a ns_sockopen on port2. probem: server exits whenever port1 is unavailable as in die...

[AOLSERVER] Error?

2001-06-14 Thread macky
can anyone tell me what this error mean? and what cause this to happen nsthread(26680) error: ns_realloc: could not allocate 118986434 bytes 1 more things thins happen after a query in a db... thanks in advance... -- The

Re: [AOLSERVER] catch return values

2001-06-04 Thread macky
i never did use set varName [catch {script} varName2] i usually pair it with ... IF statement if { [ catch {script} varName] } { ... } any error in the script will produce 1 or 0 if no errors... the error msg will be placed in varName... http://www.sco.com/Technology/tcl/man-8.0/tcl/TclCmd/

[AOLSERVER] Postgres on AOLServer 3.2 vs Postgres on 2.3.3

2001-05-27 Thread macky
i did the same simple query on both server... same configuation on 3.2 and 2.3 AOLServer 3.2 produces this error? [28/May/2001:15:08:03][25186.4101][-conn0-] Error: Ns_PgOpenDb(postgres): Could not connect to remoteIP:5432:db: ERROR: MultiByte strings (MB) must be enabled to use this function

[AOLSERVER] Documentation problem?

2001-05-18 Thread macky
why is it ns_adp_mimetype isn't included in your documentation.?? -- The information contained in this message (including any attachments) is confidential and intended solely for the attention and use of the named addressee(

Re: [AOLSERVER] Nokia 2.1 and AOLServer(Got it working)

2001-05-17 Thread macky
never mind i was in the wrong page - Original Message - From: "Prakash Sinha" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 16, 2001 10:45 PM Subject: Re: [AOLSERVER] Nokia 2.1 and AOLServer(Got it working) > I got it done, initially i was using outputheades to se

Re: [AOLSERVER] Nokia 2.1 and AOLServer(Got it working)

2001-05-17 Thread macky
im looking for ns_adp_mimetype... in the documentation..where can i find it? - Original Message - From: "Prakash Sinha" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 16, 2001 10:45 PM Subject: Re: [AOLSERVER] Nokia 2.1 and AOLServer(Got it working) > I got it done, i

Re: [AOLSERVER] What parts of the ns_* API do you use the most?

2001-05-03 Thread macky
ns_set, ns_puts, ns_db - Original Message - From: "Dossy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, April 29, 2001 3:36 AM Subject: [AOLSERVER] What parts of the ns_* API do you use the most? > I'd like to conduct a quick informal poll. What are the > top 10 most commonl

Re: [AOLSERVER] POSTing from TCL

2001-05-01 Thread macky
i had the same problem once.. my solution to that is to get the first page as in get the pure html code (Meaning no <% %>) then combine the form's data and html code using bt_mergepiece then do puts or ns_puts (if you posted to an adp page) to the returned value of bt_mergepiece... note if yo