Re: @INC startup under Win32

2000-10-11 Thread siberian.org
from at startup.. Thanks though :( John- At 03:27 PM 10/11/00 -0700, Carlos Ramirez wrote: Update your PATH evironment variable to include C:\Perl\lib -Carlos "siberian.org" wrote: Caveat : I have built modperl on a gazillion unix boxes. This win32 is black magic to me so I have no i

Re: @INC startup under Win32

2000-10-11 Thread Carlos Ramirez
e gives me the same error. @INC is only consisting of C:\winnt\system32\lib which isn't even in my Path environment variable. I have no idea where Apache is getting its @INC from at startup.. Thanks though :( John- At 03:27 PM 10/11/00 -0700, Carlos Ramirez wrote: >Update your PATH eviron

Re: @INC startup under Win32

2000-10-11 Thread siberian.org
th no luck : set PATH=C:\Perl;C:\Perl\lib;C:\Perl\bin;C:\WINNT;C:\WINNT\system32 but apache gives me the same error. @INC is only consisting of C:\winnt\system32\lib which isn't even in my Path environment variable. I have no idea where Apache is getting its @INC from at startup.. Thanks though :( Jo

Re: Resurrection of startup SIGSEGV with latest CVS snapshot?

2000-10-03 Thread Doug MacEachern
On Tue, 3 Oct 2000, Bruce W. Hoylman wrote: Ciao! With the latest modperl from CVS, all tests pass during build/test phase. However it coredumps when used with my http.conf/startup.pl files. An earlier CVS release of modperl (modperl_2911162240) functions as expected. Both

Re: Resurrection of startup SIGSEGV with latest CVS snapshot?

2000-10-03 Thread Bruce W. Hoylman
Hello, Doug -- Thanks for the reply. I have already applied this patch. The backtrace I provided was producted by an httpd executable with the perl_util.c patch already applied. The perl 5.6 patch from p5p was also in effect. The combined patches worked for the earlier CVS snapshot of

Resurrection of startup SIGSEGV with latest CVS snapshot?

2000-10-03 Thread Bruce W. Hoylman
Ciao! With the latest modperl from CVS, all tests pass during build/test phase. However it coredumps when used with my http.conf/startup.pl files. An earlier CVS release of modperl (modperl_2911162240) functions as expected. Both modperl revisions have the perl_util.c patch applied and

Re: modperl startup dumps core; trace included

2000-09-12 Thread Doug MacEachern
On Mon, 11 Sep 2000, Bruce W. Hoylman wrote: I have a peculiar problem with a modperl module I have written. When migrating to the following configuration: perl, v5.6.0 built for sun4-solaris modperl_2911162240 (1.2401) apache-1.3_2911161201 If

Re: modperl startup dumps core; trace included

2000-09-12 Thread Bruce W. Hoylman
"Doug" == Doug MacEachern [EMAIL PROTECTED] writes: Doug looks like one of the 5.6.0 bugs, the Perl patch has been Doug posted here (don't have it handy), here's one that has also Doug helped on the mod_perl side, does it fix the problem for you? Applying the perl_util.c patch you

Re: modperl startup dumps core; trace included

2000-09-12 Thread Bruce W. Hoylman
Rebuilding perl 5.6.0 with the p5p patch solved the SIGSEGV problem. Thanks for the 'point'. Peace.

[JOB] mod_perl eng. cool startup

2000-08-25 Thread Peter Richards
Hey there! I am sending this one note to this group to see if I can get some great perl developers interested in joining our team. Perl is the language of choice on Linux for our development and we foster a flexible, friendly environment. Thanks in advance for your time. Zack Network is a

Re: Aborting Apache startup during PerlInitHandler

2000-08-15 Thread Doug MacEachern
ing config parsing. (As it is happing when something is wrong with the Apache Config (httpd.cfg ...)) How can this be done? PerlInitHandler? that happens at request time, not startup time. assuming you mean PerlRequire or PerlModule, just do something like so: warn "config failed"; CORE::exit(1);

RE: Problem loading dynamic libraries at startup

2000-07-28 Thread Kee Hinckley
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 At 9:01 AM +0200 7/28/00, Gerald Richter wrote: This behaviour was normal for all mod_perl versions before 1.22. Starting with 1.22 it has gone away (at least for me and serveral other people I know). If you still get it with mod_perl 1.24, that very

RE: Problem loading dynamic libraries at startup

2000-07-28 Thread Gerald Richter
Sometimes loading dynamic libraries at startup in Apache crashes the server with a segfault immediately after it loads the library (according to an strace). RedHat 6.1 apache_1.3.12 (and earlier) mod_perl-1.24 (and earlier) This behaviour was normal for all mod_perl versions before 1.22

Re: startup file

2000-07-24 Thread David Hodgkinson
. If I list the main program in my startup file, so it is loaded on server startup, does it load the external libraries as well? Yes. But you need to use Apache::RegistryLoader to load the script. -- Dave Hodgkinson, http://www.hodgkinson.org Editor-in-chief

Aborting Apache startup during PerlInitHandler

2000-07-23 Thread Thomas Klausner
Hi! I have got a PerlInitHandler that does some config parsing etc. I would like Apache to stop starting up and to print out some error message ("Config Directive blabla missing" or something like that) if an error occures during config parsing. (As it is happing when something is wrong with

startup file

2000-07-23 Thread Paul Phillips
Hello, all, I'm quite noew to modperl. I've written a cgi, using cgi.pm that I am moving to modperl. The cgi is written as one main program, with a number of subroutines spread across three libraries that are required into the main program. If I list the main program in my startup file, so

Startup file problem

2000-07-20 Thread Elie Nacache
Hi, [1] When I run apache server I see in a log file that my startup file is required much than one time. Why ?? [2] I try to print the process id ($$) and it's always constant but not appeared from process status. Why ?? [3] Through startup file I am initialize some data. It's seem

Re: Subroutine redefined errors at startup

2000-07-19 Thread Carl Hansen
On Tue, Jul 18, 2000 at 07:10:07PM -0700, Jim Serio wrote: I'm running Perl 5.6 and recently re-compiled Apache 1.3.12 and mod_perl 1.24 and I'm not getting various redefined errors at startup that I never got before. I've also made no changes to my startup file or httpd.conf. Here's a few

Startup file and process size

2000-07-18 Thread Suresh
Hi all, I am trying use a startup file to load all the used modules in my web application, but when i use the startup file, the size of all the process becomes big. I excpected that only the apache's parent process size becomes become. Also when i ran the example given in the mod_perl guide

Re: Startup file and process size

2000-07-18 Thread David Hodgkinson
Suresh [EMAIL PROTECTED] writes: Hi all, I am trying use a startup file to load all the used modules in my web application, but when i use the startup file, the size of all the process becomes big. I excpected that only the apache's parent process size becomes become. Also when i ran

Re: Startup file and process size

2000-07-18 Thread Ajit Deshpande
On Tue, Jul 18, 2000 at 08:45:30AM -0700, Suresh wrote: the startup file, the size of all the process becomes big. I excpected that only the apache's parent process size becomes become. Also when i ran the example given in the mod_perl guide , to see the difference in the shared memory

Re: Subroutine redefined errors at startup

2000-07-18 Thread Ken Williams
all of them in the startup file? Right. The 'use' statements and 'PerlModule' directives are doing the same thing, so you only need one or the other. But it strikes me as odd anyway that it's actually loading it twice though, because Perl should see that it's in %INC and not try to load it again

Re: [RFC: performance] Preloading Perl Modules at Server Startup

2000-06-05 Thread Vivek Khera
"SB" == Stas Bekman [EMAIL PROTECTED] writes: SB But an even better approach is to create a separate startup file SB (where you code in plain perl) and put there things like: SB use DBI; SB use Carp; SB Then you Crequire() this startup file in Ihttpd.conf with the SB CP

RE: [RFC: performance] Preloading Perl Modules at Server Startup

2000-06-05 Thread Geoffrey Young
-Original Message- From: Vivek Khera [mailto:[EMAIL PROTECTED]] Sent: Monday, June 05, 2000 10:09 AM To: mod_perl list Subject: Re: [RFC: performance] Preloading Perl Modules at Server Startup "SB" == Stas Bekman [EMAIL PROTECTED] writes: SB But an even bette

RE: [RFC: performance] Preloading Perl Modules at Server Startup

2000-06-05 Thread Geoffrey Young
[snip] Also, I'd recommend using libapreq's Apache::Request if you don't need the content generating parts of CGI.pm... which leads to an enhancement I'd like to see Doug add to libapreq's functionality: Currently, you need to do a call like this if you're using Apache::Request

RE: [RFC: performance] Preloading Perl Modules at Server Startup

2000-06-05 Thread Geoffrey Young
-Original Message- From: Geoffrey Young [mailto:[EMAIL PROTECTED]] Sent: Monday, June 05, 2000 10:30 AM To: 'Vivek Khera'; mod_perl list Subject: RE: [RFC: performance] Preloading Perl Modules at Server Startup [snip] Also, I'd recommend using libapreq's Apache

Re: [RFC: performance] Preloading Perl Modules at Server Startup

2000-06-05 Thread Stas Bekman
On Mon, 5 Jun 2000, Vivek Khera wrote: "SB" == Stas Bekman [EMAIL PROTECTED] writes: SB But an even better approach is to create a separate startup file SB (where you code in plain perl) and put there things like: SB use DBI; SB use Carp; SB Then you Crequire() this st

[RFC: performance] Preloading Perl Modules at Server Startup

2000-06-02 Thread Stas Bekman
into Ihttpd.conf: PerlModule CGI PerlModule DBI But an even better approach is to create a separate startup file (where you code in plain perl) and put there things like: use DBI; use Carp; Then you Crequire() this startup file in Ihttpd.conf with the CPerlRequire directive, placing

Re: Core dump on startup

2000-04-11 Thread Doug MacEachern
On Sun, 9 Apr 2000, Robert Jenks wrote: I'm having problems with httpd core dumping during startup and have been completely unable to track it down. Sometimes it will start up fine and other times it will core dump. Any ideas, hints, etc.. would be GREATLY appreciated. i see a mention

Core dump on startup

2000-04-09 Thread Robert Jenks
Title: Core dump on startup I'm having problems with httpd core dumping during startup and have been completely unable to track it down. Sometimes it will start up fine and other times it will core dump. Any ideas, hints, etc.. would be GREATLY appreciated. I'm running: VALinux/RedHat 6.0

Re: Apache startup problem with module DBI

2000-02-09 Thread Stas Bekman
I just set up mod_perl_.1.21 with apache_1.3.11 andperl 5.005_03. When trying to start the httpd server, my httpd.conf is calling a perlstartup.pl script where I get the following error. I looked in the file itself and says when finding that error it means an install error with DBI. I

Apache startup problem with module DBI

2000-02-08 Thread gnielson
Hi, I just set up mod_perl_.1.21 with apache_1.3.11 andperl 5.005_03. When trying to start the httpd server, my httpd.conf is calling a perlstartup.pl script where I get the following error. I looked in the file itself and says when finding that error it means an install error with DBI. I

PerlChildInitHandler called twice on startup?

1999-12-18 Thread Owen Stenseth
How many times is PerlChildInitHandler suposed to be called on child startup? On my server startup (under httpd -X as well) I see two calls to it. I have wrapped my code so it does not do the initailization twice now but this kind of caught me by suprise. With a carp in my anonymous handler I

JOB: need talented mod_perl programmers for startup

1999-12-11 Thread Jeffrey W. Baker
Hi gang, I need to find some great mod_perl programmers to fill positions at a new startup company. Vivaldi Networks, Inc., In Menlo Park, CA needs to fill several programmer positions ASAP. About us: Vivaldi Networks is a very young startup company with big ambitions. Our product is super

Re: Modperl core dump on startup

1999-12-05 Thread Stas Bekman
RH supplied RPMs suck, please read the mailing list archive it was discussed many time already. Grab the statically built RPM from perl.apache.org. Hi all. I just installed modperl 1.21 with apache 1.3.9, both are custom RPMs that are basically based on the Red Hat RPMs (we just changed

Modperl core dump on startup

1999-12-01 Thread Sam Phillips
Hi all. I just installed modperl 1.21 with apache 1.3.9, both are custom RPMs that are basically based on the Red Hat RPMs (we just changed the paths.) So we load modperl dynamically using Load and AddModule. When I just do a plain old 'apachectl start' it looks like it is starting but ps

Re: Problem at startup (Apache.pm)

1999-10-31 Thread Doug MacEachern
install I have the perl modules in /usr/local/apache+mod_perl/lib/site_perl/5.005/alpha-dec_osf put server startup fails with Apache.pm failed to load! Looks like I am missing sometimes, but I cannot find what, probabily because it's my firtst mod_perl build. Apache 1.3.9, mod_perl 1.21

Re: preload scripts at startup?

1999-10-30 Thread panpipi
Hi, How are you doing recently? I think I found a bug in Embperl.pm about file upload. When I used HTML input type=file name=... tag to upload a file, Embperl crashed with error message like this: "Cannot modify read-only value ... in Embperl.pm line 774.", IF the uploaded filename starts with

RE: weird mod_perl startup problems

1999-10-08 Thread Young, Geoffrey S.
(and I'm on Linux), but maybe that will help if you were getting the startup script to work before? As to other associated weirdness, I dunno... hope this helps some --Geoff -Original Message- From: Eugene Miretskiy [SMTP:[EMAIL PROTECTED]] Sent: Thursday, October 07, 1999 3:33 PM

Re: weird mod_perl startup problems

1999-10-08 Thread Eugene Miretskiy
r, they re-compile all their modules. I haven't gone through that yet (and I'm on Linux), but maybe that will help if you were getting the startup script to work before? That script was working fine before... As to other associated weirdness, I dunno... hope this helps some Thank

weird mod_perl startup problems

1999-10-07 Thread Eugene Miretskiy
Hello, After upgrading my machine to FreeBSD3.3, I ran into the problems loading modules at startup time... I would like to load the following modules at start up (I have them in startup.perl file loaded from httpd.conf): use Apache::Registry; use Apache::Request; use Apache::DBI

RE: preload scripts at startup?

1999-10-05 Thread Gerald Richter
Embperl is compiling my scripts again (for the new forked httpd). It was suggested that I should preload my scripts all at once in server startup script, eg startup.pl. But then i found several 'fat' httpds are there occupying tens of Mbytes, all carrying several compiled scripts

<    1   2