[naviserver-devel] nsphp and php version

2018-06-18 Thread Ian Harding
I am trying to build nsphp without resorting to the "download and build against" option in the Makefile. I am having trouble getting that to Do The Right Thing in the context of rpmbuild. I have php 5.4.16 installed but am getting errors, the scariest of which being error: too many arguments to

Re: [naviserver-devel] ns_http and https timeout

2018-05-10 Thread Ian Harding
On Tue, May 8, 2018 at 11:24 AM, Gustaf Neumann wrote: > On 08.05.18 20:10, Ian Harding wrote: > > I tried with 4.99.16 and I have the same problem. Is the change you > mention in that release or tip? > > The release of 4.99.16 was already on 2017-12-29. i would have used a &

Re: [naviserver-devel] ns_http and https timeout

2018-05-08 Thread Ian Harding
I tried with 4.99.16 and I have the same problem. Is the change you mention in that release or tip? On Fri, May 4, 2018 at 11:52 AM, Gustaf Neumann wrote: > On 04.05.18 18:44, Ian Harding wrote: > > > >> i will look into this in the near future >> > > Thank y

Re: [naviserver-devel] ns_http and https timeout

2018-05-04 Thread Ian Harding
> > i will look into this in the near future > Thank you! I think I'll have to keep using exec curl for the time being... > > all the best > -g > > [1] https://bitbucket.org/naviserver/nsdns/src/default/ > > On 04.05.18 01:15, Ian Harding wrote: > > I a

[naviserver-devel] ns_http and https timeout

2018-05-03 Thread Ian Harding
I am trying to use ns_http with an https uri and finding that the -timeout seems not to work if the host does not exist. I get ssl connect failed: error::lib(0):func(0):reason(0) When I run it with a short timeout against an existing server I see: seattle-vm-1-0:nscp 1> catch [http_post

[naviserver-devel] nsdbpg Module

2017-06-06 Thread Ian Harding
I downloaded the tip from bitbucket.org and tried to build it against naviserver 4.99.15. I get an error like this: [root@web1 nsdbpg-0.2]# make NAVISERVER=/httpd/Naviserver49 PGLIB=/usr/local/pgsql/lib PGINCLUDE=/usr/local/pgsql/include gcc -I/usr/local/pgsql/include -g -Wall -fPIC -pipe -I/htt

[naviserver-devel] deallocate dbipg

2015-03-25 Thread Ian Harding
Hello! I just upgraded to the latest and greatest naviserver and am having some issues. All my db connections eventually get tied up with deallocate dbipg_6832018 type of queries that appear to be stuck. I haven't done any research into this yet, but was wondering if this is a known bug. If n

Re: [naviserver-devel] nsdbpg SSL mode

2013-12-05 Thread Ian Harding
Anyone? I am experimenting with Amazon RDS and it appears to require SSL. My naviserver nsdbipg module seems to barf on it. psql connects fine. On Mon, Nov 18, 2013 at 7:23 AM, David Osborne wrote: > > Hi, > > Can anyone tell us if it's possible to use the Naviserver nsdbpg drivers > to conne

[naviserver-devel] Naviserver/AOLserver on same box

2011-05-25 Thread Ian Harding
I installed AOLserver and it works fine. I tried to install Naviserver and I have this little problem: ldd /usr/local/ns/bin/nscp.so linux-vdso.so.1 => (0x7fff47541000) libnsthread.so => /usr/local/lib/libnsthread.so (0x7fab03c08000) libnsd.so => /usr/local/lib/li

[naviserver-devel] Is this list still alive?

2009-06-25 Thread Ian Harding
Haven't seen any messages for a while Hope everyone is well! - Ian -- ___ naviserver-devel mailing list naviserver-devel@lists.sourceforge.net https://lists.sourceforge.net

Re: [naviserver-devel] DB Connection Handles nsdbipg

2009-03-26 Thread Ian Harding
On 3/26/09, Ian Harding wrote: > On Wed, Mar 25, 2009 at 5:10 PM, Stephen Deasey wrote: >> On Wed, Mar 25, 2009 at 10:56 PM, Ian Harding >> wrote: >>> I am in a situation where I'd like to be able to set the search_path >>> on each page request. In AOLServ

Re: [naviserver-devel] DB Connection Handles nsdbipg

2009-03-26 Thread Ian Harding
On Wed, Mar 25, 2009 at 5:10 PM, Stephen Deasey wrote: > On Wed, Mar 25, 2009 at 10:56 PM, Ian Harding wrote: >> I am in a situation where I'd like to be able to set the search_path >> on each page request. In AOLServer I would have just made a db handle >> getter func

Re: [naviserver-devel] DB Connection Handles nsdbipg

2009-03-25 Thread Ian Harding
On Wed, Mar 25, 2009 at 5:10 PM, Stephen Deasey wrote: > On Wed, Mar 25, 2009 at 10:56 PM, Ian Harding wrote: >> I am in a situation where I'd like to be able to set the search_path >> on each page request.  In AOLServer I would have just made a db handle >> getter func

[naviserver-devel] DB Connection Handles nsdbipg

2009-03-25 Thread Ian Harding
I am in a situation where I'd like to be able to set the search_path on each page request. In AOLServer I would have just made a db handle getter function that would call ns_db gethandle, issue a quick SET command, and pass the handle back to the caller. With nsdbipg I don't know how to do this.

Re: [naviserver-devel] Buglets

2009-03-21 Thread Ian Harding
On Mon, Feb 23, 2009 at 6:29 PM, Stephen Deasey wrote: > On Mon, Feb 23, 2009 at 10:12 PM, Ian Harding wrote: >> Here are a couple things I've found during my migration from AOLServer >> to Naviserver. >> 2. dbipg does something strange when used with a template, and

[naviserver-devel] Buglets

2009-02-23 Thread Ian Harding
Here are a couple things I've found during my migration from AOLServer to Naviserver. 1. The order of arguments to ns_register_filter is reversed. I found a discussion in the archives talking about this, but no conclusion. It looks like the procedure args and the filter reason got switched, whic

Re: [naviserver-devel] Session module

2009-02-20 Thread Ian Harding
Vlad Seryakov wrote: > Why not to use nsv_incr to generate sequential session id? > > Or sequential ids is a bad idea? > > It makes it super easy to hijack sessions. They are supposed to be difficult to brute force. > Ian Harding wrote: > >> Stephen Deasey wrote:

Re: [naviserver-devel] Session module

2009-02-20 Thread Ian Harding
Stephen Deasey wrote: > On Sun, Feb 15, 2009 at 6:55 PM, Ian Harding wrote: > >> Hello, >> >> I am migrating to Naviserver from AOLServer mostly because of the >> excellent nsdbi module. >> >> My existing code is depended on the nssession module >

Re: [naviserver-devel] Session module

2009-02-20 Thread Ian Harding
Stephen Deasey wrote: > On Sun, Feb 15, 2009 at 6:55 PM, Ian Harding wrote: > >> Hello, >> >> I am migrating to Naviserver from AOLServer mostly because of the >> excellent nsdbi module. >> >> My existing code is depended on the nssession module >

[naviserver-devel] Wiki Account

2009-02-19 Thread Ian Harding
Hi, Can I have an account on the wiki? Thanks! - Ian -- Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA -OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise -Strategi

[naviserver-devel] Session module

2009-02-15 Thread Ian Harding
Hello, I am migrating to Naviserver from AOLServer mostly because of the excellent nsdbi module. My existing code is depended on the nssession module http://bas.scheffers.net/aolserver/ . It doesn't compile and run unmodified under Naviserver, but before I start hacking on it, is there an exist

[naviserver-devel] nsdbi build question

2009-02-11 Thread Ian Harding
Hi, OK, I read the README carefully this time... > pwd /home/user/naviserver/nsdbi > make NAVISERVER=/usr/local/ns gcc -pipe -O2 -fomit-frame-pointer -Wall -Wno-implicit-int -fPIC -I/usr/local/ns/include -I"/usr/include/tcl8.4/tcl-private/generic" -DHAVE_CONFIG_H -c -o init.o init.c init.c:236:

Re: [naviserver-devel] Release

2009-02-09 Thread Ian Harding
Ah, I think I found it. Never mind my question. On Sat, May 12, 2007 at 12:43 PM, Stephen Deasey wrote: > You're not checking the tarball (which is what we distribute), you're > checking a CVS checkout. > > You need to: > > cvs export naviserver > cd naviserver > ./autogen.sh ... > make dist > c

[naviserver-devel] Configure

2009-02-09 Thread Ian Harding
Feeling kind of stupid... I downloaded source, and even read the README! But I'm a bit stuck at the "type ./configure ..." part. There is no configure as far as I can tell, just a configure.in. - Ian -- Create and Deploy

Re: [naviserver-devel] nsdbi 0.2 released

2009-02-04 Thread Ian Harding
On Wed, Jun 11, 2008 at 3:43 AM, Stephen Deasey wrote: > Changes and downloads: > > > http://sourceforge.net/project/shownotes.php?release_id=605838&group_id=130646 > I just discovered this, and it's all I need to decide to jump to Naviserver from AOLServer. Thanks! - Ian -

[naviserver-devel] Relesase Build Problem

2006-09-13 Thread Ian Harding
I downloaded the tarballs from sourceforge, and there seem to be a couple things missing. The contrib directory is not present, and sample-config.tcl does not exist. Other than that, things seem to go OK... --- for i in contrib/nsd.tcl contrib/mimetypes.tcl sample-config.tcl; do \

[naviserver-devel] nsfreetds

2006-09-11 Thread Ian Harding
Where did nsfreetds go? I don't see it in the modules tarball 8^( I really need to get at the file because the original version at aolserver is unmaintained. Thanks! - Ian