Re: dyld problems with Apache 1.3.19 and mod_perl/mod_php on Mac OSX 10.0.03

2001-06-01 Thread Ged Haywood
Hi there, On Fri, 1 Jun 2001, Martin Redington wrote: I'm having some some difficulties with Apache 1.3.19 and mod_perl/mod_php. [On Mac OS X] Never built on the Mac myself, some people had trouble, looks like you're an expert. From what I see on the mod_perl List about mod_perl and PHP on

Re: dyld problems with Apache 1.3.19 and mod_perl/mod_php on Mac OS X 10.0.03

2001-06-01 Thread Martin Redington
On Friday, June 1, 2001, at 08:33 am, Ged Haywood wrote: On Fri, 1 Jun 2001, Martin Redington wrote: I'm having some some difficulties with Apache 1.3.19 and mod_perl/mod_php. [On Mac OS X] Never built on the Mac myself, some people had trouble, looks like you're an expert. I was

RE: Trying to find correct format for PerlSetVar's -- or get Apache::AuthNetLDAP working.

2001-06-01 Thread Steve Haslam
Hi, (btw threading broken because I'm replying from a digest) I do multiple PerlSetVars from inside a Location (itself inside a VirtualHost) like this: PerlSetVar = [['User', $user], ['Locale', $locale], ... ] I've also had some wierdness

Re: Getting the wrong URL

2001-06-01 Thread [EMAIL PROTECTED]
OK, I think I have solved this problem, but I would like to run my solution by you folks, and see if it makes any sense. What we found, on a more thorough code review, was that a number of the handlers were doing a redirect by calling send_cgi_header, and then exit()'ing. It seemed to us that the

Attempt to free unreferenced scalar ...

2001-06-01 Thread [EMAIL PROTECTED]
I am frequently getting this message in my error log: Attempt to free unreferenced scalar during global destruction. I have been unable to trace it down to any one particular handler. It seems to be happening, as the message suggests, when a child exits. Is this a familiar message? Is there any

CPAN Apache-AuthCookie-3.00.tar.gz (fwd)

2001-06-01 Thread Michael J Schout
The uploaded file Apache-AuthCookie-3.00.tar.gz has entered CPAN as file: $CPAN/authors/id/M/MS/MSCHOUT/Apache-AuthCookie-3.00.tar.gz size: 25399 bytes md5: 5c94e0ced442653f229b39f4f1fcfe8c Changes since v2.011: - New maintiner: Michael Schout [EMAIL PROTECTED] - changed to

undef an array

2001-06-01 Thread Scott Alexander
Hi, in my code I have my @upper_id ; during the code I pass the array by reference to a sub routine and push values onto it. push @{$upper_id}, $row[0] ; Some of my code I have arrays of strings or ints. I might add 100 or more items to each array. The strings could be 50 characters long.

Re: undef an array

2001-06-01 Thread Tom Mornini
On Fri, 1 Jun 2001, Scott Alexander wrote: Hi, in my code I have my @upper_id ; during the code I pass the array by reference to a sub routine and push values onto it. push @{$upper_id}, $row[0] ; This is odd syntax! Why not just: push @upper_id,$row[0]; I hope this isn't some sort

Re: undef an array

2001-06-01 Thread Ken Williams
[EMAIL PROTECTED] (Scott Alexander) wrote: in my code I have my @upper_id ; during the code I pass the array by reference to a sub routine and push values onto it. push @{$upper_id}, $row[0] ; Some of my code I have arrays of strings or ints. I might add 100 or more items to each array. The

Re: undef an array

2001-06-01 Thread Ken Williams
[EMAIL PROTECTED] (Tom Mornini) wrote: On Fri, 1 Jun 2001, Scott Alexander wrote: in my code I have my @upper_id ; during the code I pass the array by reference to a sub routine and push values onto it. push @{$upper_id}, $row[0] ; This is odd syntax! Why not just: push

Re: undef an array

2001-06-01 Thread Tom Mornini
On Fri, 1 Jun 2001, Ken Williams wrote: during the code I pass the array by reference to a sub routine and push values onto it. push @{$upper_id}, $row[0] ; This is odd syntax! Why not just: push @upper_id,$row[0]; I hope this isn't some sort of soft reference. Scott's is

Re: Sessions with Postgres

2001-06-01 Thread Vivek Khera
r == robert [EMAIL PROTECTED] writes: r Is anybody here using Apache::Session/Postgres combination without r problems? If so, could you be so kind as to post your configuration? If Yes, I am. I posted mine either here or on one of the postgres mailings lists just a few days ago. --