Re: mod_perl/mod_ssl: fine in isolation, install woes when together

2003-10-20 Thread Stas Bekman
Stas Bekman wrote: 4. Could you explain a little more about the change you made? Let's say your perl is build using a shared library libperl.so, which normally resides at /usr/local/lib/perl5/5.8.0/i386-freebsd/CORE/libperl.so. When you are linking a shared perl library you need to specify: -

Re: mod_perl/mod_ssl: fine in isolation, install woes when together

2003-10-20 Thread Stas Bekman
Bryn Dyment wrote: 1. Should I be able to safely run 'make install' now? Yup. I noticed when omitting SSL from the Apache build (which resulted in a successful 'make') that a bunch of Apache 'utility' binaries are linked after httpd is built (a half-dozen or so). So, I'm assuming 'make install'

RE: mod_perl/mod_ssl: fine in isolation, install woes when together

2003-10-20 Thread Bryn Dyment
>> 1. Should I be able to safely run 'make install' now? > > Yup. I noticed when omitting SSL from the Apache build (which resulted in a successful 'make') that a bunch of Apache 'utility' binaries are linked after httpd is built (a half-dozen or so). So, I'm assuming 'make install' will install

Re: mod_perl/mod_ssl: fine in isolation, install woes when together

2003-10-20 Thread Stas Bekman
Stas Bekman wrote: Bryn Dyment wrote: and you don't have: /usr/local/lib/perl5/5.8.0/i386-freebsd/CORE/libperl.so Right. I assume that when you run: perl Makefile.PL APACHE_SRC=../apache_1.3.28/src \ perl == /usr/local/bin/perl5.8.0, right? Right. (Perl 5.8.1's installation doesn

Re: mod_perl/mod_ssl: fine in isolation, install woes when together

2003-10-20 Thread Stas Bekman
Bryn Dyment wrote: and you don't have: /usr/local/lib/perl5/5.8.0/i386-freebsd/CORE/libperl.so Right. I assume that when you run: perl Makefile.PL APACHE_SRC=../apache_1.3.28/src \ perl == /usr/local/bin/perl5.8.0, right? Right. (Perl 5.8.1's installation doesn't automatically rep

Getting new id with every calls with Apache::Session

2003-10-20 Thread perl
I'm getting a new id with every refresh click; so, how am I suppose to know it is the same session? Here's my code: #!/usr/bin/perl use Apache::Session::File; use strict; use warnings; my %session; my $sessId; #I'm suppose to put the session id at the undef #but how am i suppose to #know what it

Re: Apache::Session vs CGI:Session?

2003-10-20 Thread Skylos the Doggie
On Mon, 20 Oct 2003 [EMAIL PROTECTED] wrote: > Well, I think I understand what you are saying but if I can clarify my > understanding. > > My thought is that openining multiple browser (new process) will be a > new and separate session. Is this correct? I would fully expect so, and would be surpr

Re: Apache::Session vs CGI:Session?

2003-10-20 Thread perl
Well, I think I understand what you are saying but if I can clarify my understanding. My thought is that openining multiple browser (new process) will be a new and separate session. Is this correct? thanks > On Mon, 20 Oct 2003 [EMAIL PROTECTED] wrote: > >> > ... If you >> > actually start anoth

Re: Apache::Session vs CGI:Session?

2003-10-20 Thread Skylos the Doggie
On Mon, 20 Oct 2003 [EMAIL PROTECTED] wrote: > > ... If you > > actually start another copy of IE, that does NOT have the same > > non-persistant cookies, and its a different session. > > Is this behavior the same for both Apache::Session and CGI::Session? May I quote myself: > > In either case,

ApacheCon mod_perl 2.0 tutorial status

2003-10-20 Thread Stas Bekman
The organizers of the ApacheCon conference (http://apachecon.com/) tell me that if by November 1st there won't be at least 7 people registered for the mod_perl 2.0 tutorial it'll be cancelled. So if you have planned to attend the tutorial please register ASAP. It's funny, but at TPC @ Portland

Re: Apache::Session vs CGI:Session?

2003-10-20 Thread perl
> ... If you > actually start another copy of IE, that does NOT have the same > non-persistant cookies, and its a different session. Is this behavior the same for both Apache::Session and CGI::Session? -thanks > On Mon, 20 Oct 2003 [EMAIL PROTECTED] wrote: > >> Can someone comment on some advant

Re: Apache::Session vs CGI:Session?

2003-10-20 Thread Skylos the Doggie
On Mon, 20 Oct 2003 [EMAIL PROTECTED] wrote: > Can someone comment on some advantages/disadvantages? > > Does opening a new browser causes a new session in either of the two? well, in IE, cookes are relevant to processes, not to windows. That is, you can have one process with multiple windows (f

Apache::Session vs CGI:Session?

2003-10-20 Thread perl
Can someone comment on some advantages/disadvantages? Does opening a new browser causes a new session in either of the two? thanks - eMail solutions by http://www.swanmail.com

RE: mod_perl/mod_ssl: fine in isolation, install woes when together

2003-10-20 Thread Bryn Dyment
> and you don't have: > /usr/local/lib/perl5/5.8.0/i386-freebsd/CORE/libperl.so Right. > I assume that when you run: > > perl Makefile.PL APACHE_SRC=../apache_1.3.28/src \ > > perl == /usr/local/bin/perl5.8.0, right? Right. (Perl 5.8.1's installation doesn't automatically replace the

Re: mod_perl/mod_ssl: fine in isolation, install woes when together

2003-10-20 Thread Stas Bekman
Bryn Dyment wrote: >>Next check that it has those symbols defined. > > % nm /usr/local/lib/perl5/5.8.0/i386-freebsd/CORE/libperl.a | grep > Perl_get_sv > 21ac T Perl_get_sv why libperl.a and not libperl.so. Do you have a static perl build? Before any Apache stuff, but after upgrading Pe

RE: mod_perl/mod_ssl: fine in isolation, install woes when together

2003-10-20 Thread Bryn Dyment
>>Next check that it has those symbols defined. > > % nm /usr/local/lib/perl5/5.8.0/i386-freebsd/CORE/libperl.a | grep > Perl_get_sv > 21ac T Perl_get_sv >why libperl.a and not libperl.so. Do you have a static perl build? Before any Apache stuff, but after upgrading Perl, I have libperl

Re: mod_perl/mod_ssl: fine in isolation, install woes when together

2003-10-20 Thread Stas Bekman
Bryn Dyment wrote: Hi, Stas Bekman wrote: You do have it in the apache tree, the problem is that you overwrite it later on. See: http://perl.apache.org/docs/1.0/guide/install.html#mod_perl_and_mod_ssl___op enssl This link describes a similar build process to the one I'm using (although I'm not h

RE: mod_perl/mod_ssl: fine in isolation, install woes when together

2003-10-20 Thread Bryn Dyment
Hi, Stas Bekman wrote: > You do have it in the apache tree, the problem is that you overwrite > it later on. See: > http://perl.apache.org/docs/1.0/guide/install.html#mod_perl_and_mod_ssl___op enssl This link describes a similar build process to the one I'm using (although I'm not having mod_per

Re: mod_perl/mod_ssl: fine in isolation, install woes when together

2003-10-20 Thread Stas Bekman
Bryn Dyment wrote: I have no httpd, since it failed to build (correct?). Also, I'm building in mod_perl statically, so I assume there will be no 'libperl.so' file (correct?). You do have it in the apache tree, the problem is that you overwrite it later on. See: http://perl.apache.org/docs/1.0/gu

RE: mod_perl/mod_ssl: fine in isolation, install woes when together

2003-10-20 Thread Bryn Dyment
Hi, Thanks for your reply. I'm a beginner, so apologies in advance if any/all my comments are a little funny. > 'ldd httpd' will tell you which libperl.so it's linked against. > Check that you have that library. Next check that it has those > symbols defined. I have no httpd, since it failed t

Re: Where is the source for APache::Session

2003-10-20 Thread Stas Bekman
Perrin Harkins wrote: On Mon, 2003-10-20 at 18:15, [EMAIL PROTECTED] wrote: I'm looking for the download of Apache::Session. There is a lot of docs on it but where is the download? It's on CPAN. If you don't know what CPAN is, man perlmodlib and look for "CPAN". And http://search.cpan.org/ whic

Re: mod_perl/mod_ssl: fine in isolation, install woes when together

2003-10-20 Thread Stas Bekman
Bryn Dyment wrote: I've isolated this pretty well... hope someone has some insight: After a fresh* install of FreeBSD 4.8, I can build Apache alone with mod_ssl, and Apache alone with mod_perl (static). However, I'm getting errors when trying to install both together. Here are my steps:

Re: Apache::Scoreboard trouble on Mac OS X

2003-10-20 Thread Stas Bekman
Ray Zimmerman wrote: At 12:03 PM -0700 10/20/03, Stas Bekman wrote: Stas Bekman wrote: [...] No ... I haven't gotten that far ... I'm just trying to run a script from the command line. The following works just fine on my Linux box ... Hehe, that's your problem. Apache:: modules don't work from

Re: Where is the source for APache::Session

2003-10-20 Thread Perrin Harkins
On Mon, 2003-10-20 at 18:15, [EMAIL PROTECTED] wrote: > I'm looking for the download of Apache::Session. > There is a lot of docs on it but where is the download? It's on CPAN. If you don't know what CPAN is, man perlmodlib and look for "CPAN". - Perrin

Re: Where is the source for APache::Session

2003-10-20 Thread Perrin Harkins
On Mon, 2003-10-20 at 18:15, [EMAIL PROTECTED] wrote: > I'm looking for the download of Apache::Session. > There is a lot of docs on it but where is the download? It's on CPAN. If you don't know what CPAN is, man perlmodlib and look for "CPAN". - Perrin

mod_perl/mod_ssl: fine in isolation, install woes when together

2003-10-20 Thread Bryn Dyment
I've isolated this pretty well... hope someone has some insight: After a fresh* install of FreeBSD 4.8, I can build Apache alone with mod_ssl, and Apache alone with mod_perl (static). However, I'm getting errors when trying to install both together. Here are my steps: tar -xzf apache_1.

Where is the source for APache::Session

2003-10-20 Thread perl
I'm looking for the download of Apache::Session. There is a lot of docs on it but where is the download? thanks - eMail solutions by http://www.swanmail.com

Looks like someone's using mp2 in production already....

2003-10-20 Thread Issac Goldstand
Just got this error message and thought I'd share: Not Found The requested URL /adi/theregister.co.uk/webhome;area=webhome;tile=5;sz=336x280;ord=8311782482 617662 was not found on this server. Apache/2.0.47 (Win32

Re: Apache::Scoreboard trouble on Mac OS X

2003-10-20 Thread Ray Zimmerman
At 12:03 PM -0700 10/20/03, Stas Bekman wrote: Stas Bekman wrote: [...] No ... I haven't gotten that far ... I'm just trying to run a script from the command line. The following works just fine on my Linux box ... Hehe, that's your problem. Apache:: modules don't work from the command line, si

Re: Apache::Scoreboard trouble on Mac OS X

2003-10-20 Thread Stas Bekman
Stas Bekman wrote: [...] No ... I haven't gotten that far ... I'm just trying to run a script from the command line. The following works just fine on my Linux box ... Hehe, that's your problem. Apache:: modules don't work from the command line, since the modperl/apache runtime environment is no

Re: Apache::Scoreboard trouble on Mac OS X

2003-10-20 Thread Stas Bekman
Ray Zimmerman wrote: At 11:12 AM -0700 10/20/03, Stas Bekman wrote: Ray Zimmerman wrote: I have perl-5.8.0 installed on Mac OS X 10.2.8 in /usr/local with no problems. The other day I installed Apache::Scoreboard but when I try running ... #!/usr/bin/perl -w use strict; use Apache::Scoreboard;

Re: Apache::Scoreboard trouble on Mac OS X

2003-10-20 Thread Ray Zimmerman
At 11:12 AM -0700 10/20/03, Stas Bekman wrote: Ray Zimmerman wrote: I have perl-5.8.0 installed on Mac OS X 10.2.8 in /usr/local with no problems. The other day I installed Apache::Scoreboard but when I try running ... #!/usr/bin/perl -w use strict; use Apache::Scoreboard; 1; ... I get ... dyld

[Fwd: Re: Stupid question of the day...] Apache-AuthenNIS

2003-10-20 Thread Shannon Eric Peevey
Original Message Subject:Re: Stupid question of the day... Date: Mon, 20 Oct 2003 18:28:04 - From: Randy Trahan <[EMAIL PROTECTED]> To: Shannon Eric Peevey <[EMAIL PROTECTED]> Hi Shannon, I was reading your post from June 25 concerning authenNIS. I am on

Re: Apache::Scoreboard trouble on Mac OS X

2003-10-20 Thread Stas Bekman
Ray Zimmerman wrote: I have perl-5.8.0 installed on Mac OS X 10.2.8 in /usr/local with no problems. The other day I installed Apache::Scoreboard but when I try running ... #!/usr/bin/perl -w use strict; use Apache::Scoreboard; 1; ... I get ... dyld: perl Undefined symbols: _ap_rwrite _ap_send_h

Re: PATCH porting.pod "First Mystery"

2003-10-20 Thread Stas Bekman
Following our discussion of what kind 'our'-declared vars are, it's interesting that today on p5p there is this thread where all kind of /(package|file) scope (lexical)? variable/ are discussed. http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2003-10/msg00912.html ___

Apache::Scoreboard trouble on Mac OS X

2003-10-20 Thread Ray Zimmerman
I have perl-5.8.0 installed on Mac OS X 10.2.8 in /usr/local with no problems. The other day I installed Apache::Scoreboard but when I try running ... #!/usr/bin/perl -w use strict; use Apache::Scoreboard; 1; ... I get ... dyld: perl Undefined symbols: _ap_rwrite _ap_send_http_header _ap_set_con