[AOLSERVER] Problem installing aolserver 3.5.6

2003-09-12 Thread Thorpe Mayes
I am having problems installing aolserver 3.5.6 on a linux box running Linux 9.0. I have recently upgraded to 9.0, and wonder if that might be an issue. I installed tcl8.4.4 without any apparent problems. The following is a summary of what I did: install tcl8.4.4: # ./configure

Re: [AOLSERVER] Problem installing aolserver 3.5.6

2003-09-16 Thread Thorpe Mayes
I installed ActiveTcl. It appeared to install fine, but without threads enabled. Here is the comment from the folks at ActiveState: ActiveTcl isn't compiled with threads enabled; this is because some of the extensions we bundle with ActiveTcl aren't thread-safe. Also, I got the following

[AOLSERVER] unable to make nspostges

2003-09-20 Thread Thorpe Mayes
I am trying to install the nspostgres driver (nspostgres-4.0beta1). The system is Linux 9.0; aolserver 3.5.0. Here is the output: # make POSTGRES=/usr/local/pgsql gcc -pipe -O -D__NO_STRING_INLINES -D__NO_MATH_INLINES -Wall -Wconversion -Wno- implicit-int -fPIC

Re: [AOLSERVER] unable to make nspostges

2003-09-20 Thread Thorpe Mayes
Roberto, Thank you for your reply. Yes, it is Red Hat Linux 9.0. No problem. Here is what I did: I changed the following line in nspostgres.h #include libpq-fe.h to #include /usr/local/pgsql/include/libpq-fe.h This worked. I then changed nsd.tcl to reflect the use of postgres. When I

Re: [AOLSERVER] unable to make nspostges

2003-09-20 Thread Thorpe Mayes
- Enjoy the future today http://www.core-services.fr Mob: +33 (0)6 13 82 67 67 -Message d'origine- De : AOLserver Discussion [mailto:[EMAIL PROTECTED] la part de Thorpe Mayes Envoyé : samedi 20 septembre 2003 19:31 À : [EMAIL PROTECTED] Objet : Re: [AOLSERVER] unable to make

[AOLSERVER] Unable to run procs in tcl libraries

2003-10-01 Thread Thorpe Mayes
server on the machine (aolserver 3.4.2). I put the same proc in the shared tcl libary and it works fine. I think I am missing something obvious here. Any insight will be appreciated. Thorpe Mayes -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email

[AOLSERVER] unable to restart server after ns_unregister_proc

2003-10-22 Thread Thorpe Mayes
I unregistered a procedure using ns_unregister_proc. When I restarted the server to effect the action, the restart hung. Apparently, a zombie process keeps the server from restarting. The output is; Warning: unix: failed to kill process (n): no such process After some period of time the server

[AOLSERVER] file upload corrupts jpg images

2004-08-08 Thread Thorpe Mayes
I have two servers running: one is aolserver 3.4.2; the other is aolserver 3.5.0. I have a simple form that allows me to upload a file to my server. I want to upload a jpg image. The code works fine on the 3.4.2 server. However, when I run the script on the 3.5.0 server, the image that is

Re: [AOLSERVER] file upload corrupts jpg images

2004-08-08 Thread Thorpe Mayes
This is a follow-up to my initial post. I replaced aolserver3.5.0 with 3.5.1, as was suggested in an earlier post. No change. Thorpe -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to [EMAIL PROTECTED] with the body of SIGNOFF AOLSERVER in the

Re: [AOLSERVER] file upload corrupts jpg image

2004-08-08 Thread Thorpe Mayes
This is yet another follow-up. I installed aolserver 3.5.6. The problem persists. Thorpe -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to [EMAIL PROTECTED] with the body of SIGNOFF AOLSERVER in the email message. You can leave the Subject:

Re: [AOLSERVER] file upload corrupts jpg images

2004-08-09 Thread Thorpe Mayes
determined if the file is being corrupted before or after it is moved from its temporary location? What platform is this? On Sun, 8 Aug 2004 19:41:26 -0400, Thorpe Mayes [EMAIL PROTECTED] wrote: I have two servers running: one is aolserver 3.4.2; the other is aolserver 3.5.0. I have a simple form

Re: [AOLSERVER] file upload corrupts jpg images

2004-08-09 Thread Thorpe Mayes
, at 5:29 AM, Bas Scheffers wrote: In what way is it corrupted? Just garbage in it, or does the size change from the file on you local filesystem? Bas. Thorpe Mayes said: I tried the Tcl file copy command. No change. I am running RH 9.0 on a linux box. I do not know if the file is corrupted before

Re: [AOLSERVER] file upload corrupts jpg images

2004-08-11 Thread Thorpe Mayes
I ran md5 on the file in temploc and after it had been moved to the new location for both servers. About the only conclusion I can draw is that the output from each system is consistent. In both cases the checksum for the file in temploc was different each time a test was run. In both cases the

[AOLSERVER] ns_schedule behaving oddly

2005-06-29 Thread Thorpe Mayes
running aolserver 3.5.2 on a linux box. Any insights will be appreciated. Thorpe Mayes -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to [EMAIL PROTECTED] with the body of SIGNOFF AOLSERVER in the email message. You can leave the Subject

[AOLSERVER] Cookie code works in adp but not tcl (?)

2005-09-23 Thread Thorpe Mayes
Why does this adp code work: - !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN HTML BODY % set host [string tolower [ns_set get [ns_conn headers $conn] Host]] set jar [ns_getallcookies $conn] set hits [ns_getcrumble $jar userinfo hits] set lastvisit

Re: [AOLSERVER] Cookie code works in adp but not tcl (?)

2005-09-23 Thread Thorpe Mayes
your ns_sendcookie that adds them to the headers isn't getting sent anymore. In the ADP version, nothing is sent before the page is complete, as streaming isn't turned on, which is qhy it works. Send your cookies before any ns_writes in the Tcl version. Cheers, bas. Thorpe Mayes said: Why does

Re: [AOLSERVER] Cookie code works in adp but not tcl (?)

2005-09-23 Thread Thorpe Mayes
will send the headers. If you don't have ANY ns_writes, headers don't get sent at all. If I recall correctly... Thorpe Mayes said: It still does not work. Specifically, the .adp file will set a cookie, but the .tcl file will not. I simplified the code to the following: adp: % set host

Re: [AOLSERVER] Cookie code works in adp but not tcl (?)

2005-09-23 Thread Thorpe Mayes
s, ADP is the simple way of doing things that takes care of all this stuff for you. I never use .tcl pages. The only time I use raw Tcl is with a registered procedure, so I can have a pretty url like /news/123.html rather than news.adp?id=123 Cheers, Bas. Thorpe Mayes said: Okay. I think I see now. When

[AOLSERVER] error with ns_httpget

2006-03-30 Thread Thorpe Mayes
I am trying to go here: ns_httpget http://username:[EMAIL PROTECTED]/member/service/csv/geocode?address= $newaddress,+$newcity+$state and am getting this error message: Error: expected integer but got [EMAIL PROTECTED] expected integer but got [EMAIL PROTECTED] while executing ns_sockopen

Re: [AOLSERVER] aolserver 4.5 make error on RHEL3.4 64 bit

2006-07-27 Thread Thorpe Mayes
) -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to [EMAIL PROTECTED] with the body of SIGNOFF AOLSERVER in the email message. You can leave the Subject: field of your email blank. nsattributes.h.patch Thorpe Mayes eCognizant LLC 3840 Cobble Circle

Re: [AOLSERVER] OT: Who owns aolserver.com?

2006-10-18 Thread Thorpe Mayes
. -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to [EMAIL PROTECTED] with the body of SIGNOFF AOLSERVER in the email message. You can leave the Subject: field of your email blank. Thorpe Mayes eCognizant LLC 3840 Cobble Circle Norman, Oklahoma 73072

[AOLSERVER] Problem starting aolserver

2007-02-12 Thread Thorpe Mayes
When trying to start a newly installed version of aolserver, I get this error: Error: nssock: failed to listen on 64.58.34.71:80: Permission denied What folder/file does not have the correct permissions? Here is what I am using to start the server: /usr/local/aolserver/bin/nsd -ft ./nsd.tcl

Re: [AOLSERVER] Problem starting aolserver

2007-02-12 Thread Thorpe Mayes
P Thorpe Mayes wrote:When trying to start a newly installed version of aolserver, I get this error: Error: nssock: failed to listen on 64.58.34.71:80: Permission denied What folder/file does not have the correct permissions? Here is what I am using to start the server: /usr/local

[AOLSERVER] ns_rewriteurl virtual hosting module

2007-02-27 Thread Thorpe Mayes
I am trying to install nsrewrite aolserver module and use it in the virtual hosting module per Tom Jackson (http://rmadilo.com/files/nsrewrite/doc/nsrewriteurl.html) . I downloaded the nsrewrite files and did the install. Here is the result of the install: make install /usr/local/bin/tclsh8.4

Re: [AOLSERVER] ns_rewriteurl virtual hosting module

2007-02-27 Thread Thorpe Mayes
regards, Thorpe On Feb 27, 2007, at 3:35 PM, Tom Jackson wrote: Thorpe, Looks like you have not added nsrewrite.so to the list of modules to load. tom jackson On Tuesday 27 February 2007 12:32, Thorpe Mayes wrote: I am trying to install nsrewrite aolserver module and use

Re: [AOLSERVER] ns_rewriteurl virtual hosting module

2007-02-28 Thread Thorpe Mayes
trouble. tom jackson On Tuesday 27 February 2007 12:32, Thorpe Mayes wrote: I am trying to install nsrewrite aolserver module and use it in the virtual hosting module per Tom Jackson (http://rmadilo.com/files/nsrewrite/doc/nsrewriteurl.html) . I downloaded the nsrewrite files and did the install

[AOLSERVER] ns_db is not working

2007-05-03 Thread Thorpe Mayes
I have recently installed aolserver 4.5. Everything seems to be working, except I get this error when I try to use the ns_db command: error: Tcl exception: invalid command name ns_db while executing ns_db gethandle $pool invoked from within set db [ns_db gethandle $pool] ns_info works

Re: [AOLSERVER] ns_db is not working

2007-05-03 Thread Thorpe Mayes
information, most notably your config file. Make sure to redact any passwords, hostnames, etc. My guess is that you're either not loading the database driver, or not configuring the ns_db section properly. Rusty Thorpe Mayes wrote: I have recently installed aolserver 4.5. Everything seems

Re: [AOLSERVER] ns_db is not working

2007-05-04 Thread Thorpe Mayes
source $file Thank you for your help. Best regards, Thorpe On May 3, 2007, at 2:13 PM, Dossy Shiobara wrote: On 2007.05.03, Thorpe Mayes [EMAIL PROTECTED] wrote: However, I now have a database pool issue when I try to set the database handle: Error: Tcl exception: no access to pool: tmayes

Re: [AOLSERVER] aolserver focus

2007-08-08 Thread Thorpe Mayes
I predict that AOLServer will be gone within 10 years. Maybe 5 years. People will say: It was really good software. I do not know what happened. It does not have to turn out that way. This is the second time in a year or so that I have seen this discussion on this list. It always

Re: [AOLSERVER] Fun, free applications for building personal sites.

2008-05-03 Thread Thorpe Mayes
://www.aolserver.com/ To Remove yourself from this list, simply send an email to [EMAIL PROTECTED] with the body of SIGNOFF AOLSERVER in the email message. You can leave the Subject: field of your email blank. Thorpe Mayes voice: (405) 514-9753 [EMAIL PROTECTED] -- AOLserver - http

[AOLSERVER] Configuring nsopenssl - unable to get to work

2010-10-27 Thread Thorpe Mayes
I am trying to set up an ssl connection. I am using aolserver 4.5.0. Here is the portion of the nsd file that pertains: # SSL contexts. Each SSL context is a template that SSL connections are created # from. A

Re: [AOLSERVER] Configuring nsopenssl - unable to get to work

2010-10-27 Thread Thorpe Mayes
is a setting like set httpsport 8443 Change that to set httpsport 443 and you should be good to go. Alternately, you could set up port forwarding, but since you're already running on port 80 there's no real need. -J Thorpe Mayes wrote: I am trying to set up an ssl connection. I am using

[AOLSERVER] Tcl error

2011-08-22 Thread Thorpe Mayes
ns_sourceproc line 28) invoked from within ns_sourceproc cns6144 {} [22/Aug/2011:08:51:49][9181.3056597920][-conn:272-] Notice: exiting: timeout waiting for connection I am running AOLserver 4.5.0 with Tcl 8.4 Can anyone point me in the right direction on this? Thanks, Thorpe Thorpe Mayes tma

[AOLSERVER] Unable to install nssolid database driver on aolserver4.5.0

2011-10-13 Thread Thorpe Mayes
nssolid.c:638: error: ‘handle’ undeclared (first use in this function) make: *** [nssolid.o] Error 1 Thanks, Thorpe Thorpe Mayes 405.514.9753 -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to lists...@listserv.aol.com with the body

Re: [AOLSERVER] Unable to install nssolid database driver on aolserver4.5.0

2011-10-14 Thread Thorpe Mayes
either, so it is a moot point. It just may not be possible to do this. Thanks, Thorpe On Oct 14, at (Oct 14) 1:56 PM, Jeff Rogers wrote: Thorpe Mayes wrote: Hi, I am trying to install the solid database drivers and cannot do it. I am running aolserver 4.5.0. I added the nssolid_3.0