cvs commit: modperl-2.0/src/modules/perl mod_perl.c

2002-09-04 Thread dougm
dougm 2002/09/04 10:56:51 Modified:src/modules/perl mod_perl.c Log: make sure MP_init_done is reset when we teardown. (should only matter for static linkage, but doesn't hurt with dso) Revision ChangesPath 1.137 +4 -2 modperl-2.0/src/modules/perl/mod_perl.c

cvs commit: modperl-2.0/xs/maps modperl_functions.map

2002-09-04 Thread dougm
dougm 2002/09/04 18:48:40 Modified:xs/maps modperl_functions.map Log: Apache::Directive-insert is replaced by Apache::Server-add_config add $r-add_config method Revision ChangesPath 1.45 +3 -1 modperl-2.0/xs/maps/modperl_functions.map Index:

cvs commit: modperl-2.0/t/conf modperl_extra.pl

2002-09-04 Thread dougm
dougm 2002/09/04 18:49:32 Modified:t/conf modperl_extra.pl Log: test $r-add_config Revision ChangesPath 1.19 +14 -5 modperl-2.0/t/conf/modperl_extra.pl Index: modperl_extra.pl === RCS

cvs commit: modperl-2.0 Changes STATUS

2002-09-04 Thread dougm
dougm 2002/09/04 18:50:45 Modified:.Changes STATUS Log: update Revision ChangesPath 1.43 +4 -1 modperl-2.0/Changes Index: Changes === RCS file: /home/cvs/modperl-2.0/Changes,v

cvs commit: modperl-2.0/src/modules/perl modperl_tipool.c

2002-09-04 Thread dougm
dougm 2002/09/04 21:44:23 Modified:src/modules/perl modperl_tipool.c Log: plug memory leak in tipools Revision ChangesPath 1.9 +5 -1 modperl-2.0/src/modules/perl/modperl_tipool.c Index: modperl_tipool.c

Re: Apache::DBI new connects in error_log...

2002-09-04 Thread Enrico Sorcinelli
On Tue, 3 Sep 2002 10:36:30 -0700 (PDT) Anthony E. [EMAIL PROTECTED] wrote: --- Enrico Sorcinelli [EMAIL PROTECTED] wrote: On Tue, 3 Sep 2002 09:05:45 -0700 (PDT) Anthony E. [EMAIL PROTECTED] wrote: Hello, I'm getting an awful lot of these error statements in my error_log

Re: User process ownership

2002-09-04 Thread Nico Erfurth
John Stauffacher wrote: All, I've run into an interesting problem which I can't seem to figure out. Here it is: I have created a web form/perl script that sets up a users vacation file and .forward for them. Which works. The only problem is, I cannot write to their home directory (because

[ANNOUNCE] Apache::SessionManager 0.02

2002-09-04 Thread Enrico Sorcinelli
A new version 0.02 of Apache::SessionManager is now available via CPAN Download site for Apache::SessionManager http://www.cpan.org/authors/id/E/EN/ENRYS/Apache-SessionManager-0.02.tar.gz Description --- This package contains an Apache mod_perl module to manage HTTP sessions.

Compilation error doing 'make' in the apache 1.3.26 directory

2002-09-04 Thread Matt Harris
I'm trying to build mod_perl statically with apache 1.3.26. I just downloaded mod_perl last night (1.27). When compiling apache itself (no errors doing anything in mod_perl itself, as per the instructions), I'm getting a *lot* of symbol referencing errors in libperl.a. I can't find anything

Re: User process ownership

2002-09-04 Thread WC -Sx- Jones
In-Reply-To: 015501c25393$c8bd6af0$[EMAIL PROTECTED] With your current understanding of Perl/Apache - you cannot do this; however EXPECT (written by Don Libes at expect.nist.gov) can do it -- if you are willing to get a better grip on security issues. Once you see how the expect language works

Re: Compilation error doing 'make' in the apache 1.3.26directory

2002-09-04 Thread Matt Harris
This apache will be packaged for use on multiple systems. Most are using perl5.6.1 from sunfreeware, some are using a home-compiled 5.8.0 to support some stuff we're running. Narins, Josh wrote: Hey, off list, quick question. Which perl are you using? You might want to tell the list,

Found a fix... but it's ugly

2002-09-04 Thread Matt Harris
Here's the trouble I had to go through to fix this (I got it to work, but I'm still searching for a better way - this is ugly as sin). Re-ran my apache configure with a -L in my LIBS for /usr/local/lib/perl5/5.6.1/sun4-solaris/CORE This got rid of all of the errors but one - something about

Seg Fault with PHP and Perl together

2002-09-04 Thread Jon Harris
Hi I inherited a very happy cobalt raq3 with 2 sites using embedded Perl which work very well. There are about 20 sites on the box. I needed to get PHP running on the same box, so I made the module, added it into the httpd.conf and PHP was working fine - Except that it broke the perl sites.

make tests fail

2002-09-04 Thread Robert D. Napiza
Hello, I already had an Apache 1.3.29 installed, and am trying to install modperl_1.27. Running make goes fine but when I run make test I get the following messages in the logs: Prototype mismatch: sub Socket::INADDR_ANY vs () at /usr/lib/perl5/5.6.0/i386-linux/Socket.pm line 328.

Re: Seg Fault with PHP and Perl together

2002-09-04 Thread wsheldah
Check the mail archives for this list, there was a thread about using perl and php together not that long ago. I think that one suggestion was to compile mod_perl statically with apache, and to load php as a module. Also, you may want to upgrade your perl to at least 5.6.1, if not 5.8.0. Are

Re: Seg Fault with PHP and Perl together

2002-09-04 Thread WC -Sx- Jones
# mod_perl - perl Makefile.PL \ USE_APXS=1 \ WITH_APXS=/usr/local/apache/bin/apxs \ EVERYTHING=1 \ USE_DSO=1 # PHP - ./configure --with-apxs=/usr/local/apache/bin/apxs \   --enable-force-cgi-redirect \   --enable-discard-path \   --with-pear \   --enable-safe-mode \   --with-openssl \  

Memory problem

2002-09-04 Thread Udlei Nattis
hi, i have one big problem i'm using modperl 2.0 (last cvs), httpd 2.0 (last cvs), perl 5.8.0 using apache mpm = worker when i start apache, size: 17277 nobody 8 0 13964 13M 13152 S 0.0 3.6 0:00 httpd DBI.pm have problem, when i execute my script, DBI.pm open memorya but don't

Re: Seg Fault with PHP and Perl together

2002-09-04 Thread Ged Haywood
Hi there, On Wed, 4 Sep 2002, Jon Harris wrote: I inherited a very happy cobalt raq3 with 2 sites using embedded Perl which work very well. There are about 20 sites on the box. I needed to get PHP running on the same box, so I made the module, added it into the httpd.conf and PHP was

ANNOUNCE: Apache::OpenIndex 1.05

2002-09-04 Thread George Sanderson
Apache::OpenIndex version 1.05 was uploaded to CPAN on 02 Sep 02. New features include: A UserDir directive was added to support user home directories. (Thank Noam Solomon for the spot.) A UserSite directive was added to allow multiple users to share a common GID and site

Re: User process ownership

2002-09-04 Thread simran
How about using sudo so that you can run a system command that can su up to the correct account and do it. Alternatively, you can write a daemon that runs as root that you can connect to that can do this... On Wed, 2002-09-04 at 20:09, Nico Erfurth wrote: John Stauffacher wrote: All,

Re: ANNOUNCE: Apache-AuthenNTLM 0.21

2002-09-04 Thread Gerald Richter
The URL ftp://ftp.dev.ecos.de/pub/perl/ntlm/Apache-AuthenNTLM-0.21.tar.gz has entered CPAN as file: $CPAN/authors/id/G/GR/GRICHTER/Apache-AuthenNTLM-0.21.tar.gz size: 49239 bytes md5: 292ec3e15bdb8c407b2b45704a147b09 This release mainly fixes bugs in the communication with the smb