Re: Apache is exiting....

2003-03-03 Thread Paolo Campanella
On Fri, 28 Feb 2003 12:15:32 -0800 Kyle Oppenheim [EMAIL PROTECTED] wrote: It looks like the parent server will exit if one of its children exits with APEXIT_CHILDFATAL. Unfortunately, if you grep for that in the Apache source, it comes up more than a few times. A stacktrace would be

Re: Override Authentication for one sub directory

2003-03-03 Thread Geoffrey Young
Scott Alexander wrote: Hi, I'm using Apache-AuthCookie-3.04 for authentication I have a protected directory with 10 sub directories, one directory needs to be open to any user. I could write 10 Directory /usr/local/systems/work/directory_1 or use a PERL section in the conf file to create the 10

Re: Apache is exiting....

2003-03-03 Thread Paolo Campanella
On Fri, 28 Feb 2003 12:12:48 -0500 Perrin Harkins [EMAIL PROTECTED] wrote: Exception 415: UnableToReadFont (@/usr/X11R6/lib/X11/fonts/ttf/Ritalin.ttf) at /path/to/script line 584.[Fri Feb 28 14:31:49 2003] [alert] Child 1216 returned a Fatal error... Apache is exiting! That's bad.

Re: Apache is exiting....

2003-03-03 Thread Ged Haywood
Hi there, On Mon, 3 Mar 2003, Paolo Campanella wrote: gdb reports that clean_child_exit is not defined - perhaps you are looking at newer sources than mine (1.3.22). Is there a reason why you don't want to upgrade to 1.3.27? 73, Ged.

Problem with PHP install: Invalid MySQL directory

2003-03-03 Thread mel awaisi
hi i downloaded Apache-1.3.27 on my Red hat machine and it all worked perfectly. now i am tryin to set PHP but i got a error saying configure: error: Invalid MySQL directory - unable to find libmysqlclient.a or libmysqlclient.so. any ideas. Mel

Re: Problem with PHP install: Invalid MySQL directory

2003-03-03 Thread mel awaisi
hi its ok i have solved it. i needed to add in the configuration command where mysql was, hence --with-mysql=/usr/local/mysql/ Mel _ Express yourself with cool emoticons http://messenger.msn.co.uk

Problem with PHP install: Invalid MySQL directory

2003-03-03 Thread mel awaisi
hi i downloaded Apache-1.3.27 on my Red hat machine and it all worked perfectly. now i am tryin to set PHP but i got a error saying configure: error: Invalid MySQL directory - unable to find libmysqlclient.a or libmysqlclient.so. I downloaded MySQL automatically with Red Hat 8, but when i type

Re: Override Authentication for one sub directory

2003-03-03 Thread Jean-Michel Hiver
This might be a bit OT, but since I've read somewhere on apache.org that Apache2 was using the same regex engine as Perl 5's... So I'm under the impression that with Apache2 you could do something like: DirectoryMatch ^/usr/local/systems/works/(?!open/) # your auth handler goes here

Re: Problems installing mod_perl2 on Apache2 on Win200

2003-03-03 Thread Richard Heintze
Apache HTTPD seems to be running fine. Do I have the right version of apache and mod_perl? I'm unpacking mod_perl2.tar. perl mpinstall does not seem to be giving me any errors. Apache installed itself in the directory program files/apache group/apache2 so I think this means I'm running apache2.

Re: mod_perl headers

2003-03-03 Thread Cure
Ged Haywood wrote: Hi there, On Sun, 2 Mar 2003, Cure wrote: Does Apache submit headers when a error occurs ? Trying to display an error message to the browser. I use mason for the web, so if I have die() statement in my code mason will display the error to the browser. If I

Apache::DBI on mp2

2003-03-03 Thread Haroon Rafique
My setup is as follows: Apache/2.0.44 (Gentoo/Linux) mod_perl/1.99_08 Perl/v5.8.0 mod_perl was built from CVS. I was interested in getting Apache::DBI to run under mp2. I did read Ask's message at http://marc.theaimsgroup.com/?l=apache-modperlm=104225578207460w=2 which leads me to my

prompting for secure data during startup.pl

2003-03-03 Thread Aaron J Mackey
I need to make some secure data available to mod_perl handlers, without having it physically stored in a file, database, or named shared memory (since if someone can read the handlers' code, then they could read the sensitive data as well). So I need to prompt for it during server (re)start-up,

Re: prompting for secure data during startup.pl

2003-03-03 Thread Perrin Harkins
Aaron J Mackey wrote: I need to make some secure data available to mod_perl handlers, without having it physically stored in a file, database, or named shared memory (since if someone can read the handlers' code, then they could read the sensitive data as well). So I need to prompt for it during

Re: mod_perl headers

2003-03-03 Thread Perrin Harkins
Cure wrote: Does Apache submit headers when a error occurs ? No. You sent the headers with your send_http_header command. Mason doesn't have this issue because it waits and builds up the entire output in a string before it sends any headers out. You can do the same in your script if you want

Re: mod_perl headers

2003-03-03 Thread Cure
Perrin Harkins wrote: Cure wrote: Does Apache submit headers when a error occurs ? No. You sent the headers with your send_http_header command. Mason doesn't have this issue because it waits and builds up the entire output in a string before it sends any headers out. You can do the same

Re: mod_perl headers

2003-03-03 Thread Cure
and I used use CGI::Carp qw(fatalsToBrowser) in my script. It still didn't print the error to the browser Cure Perrin Harkins wrote: Cure wrote: Does Apache submit headers when a error occurs ? No. You sent the headers with your send_http_header command. Mason doesn't have this issue

ANNOUNCE: Apache::SessionX 2.00b5

2003-03-03 Thread Gerald Richter
The URL ftp://ftp.dev.ecos.de/pub/perl/session/Apache-SessionX-2.00b5.tar.gz has entered CPAN as file: $CPAN/authors/id/G/GR/GRICHTER/Apache-SessionX-2.00b5.tar.gz size: 11981 bytes md5: d9bb7317e8ffed14ebdb276cd3b729b4 Apache::SessionX extents Apache::Session. It was initialy

Re: WEb hosting..

2003-03-03 Thread Stas Bekman
Fco. Valladolid wrote: I'am introductory o newbie user of mod_perl.. so what book or tutorial recommend for me.. Please always reply to the list! Online docs: http://perl.apache.org/docs/index.html Books: http://perl.apache.org/docs/offsite/books.html

Re: mod_perl headers

2003-03-03 Thread Perrin Harkins
Cure wrote: I know -- I submit the headers but why does it show the headers on the browser, doesn't that mean the headers wre submitted twice ? Why don't you take a look at the raw output (with LWP's GET script or something) and see? I misread your question before -- apache does send a

Re: mod_perl headers

2003-03-03 Thread Cure
Perrin Harkins wrote: Cure wrote: I know -- I submit the headers but why does it show the headers on the browser, doesn't that mean the headers wre submitted twice ? Why don't you take a look at the raw output (with LWP's GET script or something) and see? I misread your question before --

Re: WEb hosting..

2003-03-03 Thread Stas Bekman
Fco. Valladolid wrote: http://www.upnix.com David Emery wrote: http://www.mediatemple.net please specify where the companies are based, since our list is sorted by country. Thanks. __ Stas BekmanJAm_pH -- Just

Re: WEb hosting..

2003-03-03 Thread Fco. Valladolid
Stas Bekman wrote: Fco. Valladolid wrote: http://www.upnix.com David Emery wrote: http://www.mediatemple.net please specify where the companies are based, since our list is sorted by country. Thanks. __ Stas Bekman

Re: Apache::DBI on mp2

2003-03-03 Thread Stas Bekman
FWIW, we are discussing the internal DBI pooling mechanism at the dbi-dev list and having already a sort-of-working prototype. So hopefully there will be no need for Apache::DBI in the near future, as DBI will be able to handle pooling internally. However it may take some time, as the drivers

Re: WEb hosting..

2003-03-03 Thread David Emery
On 2003.Mar.4, at 08:36 Asia/Tokyo, Stas Bekman wrote: Fco. Valladolid wrote: http://www.upnix.com David Emery wrote: http://www.mediatemple.net mediatemple.net is located in Los Angeles please specify where the companies are based, since our list is sorted by country. Thanks.

getting at http.conf from startup.pl

2003-03-03 Thread Aaron J Mackey
I need to access some of the information in http.conf during startup.pl (more than what Apache::Server and/or dir_config can tell me). It seems that there are at least 3 httpd.conf parsing Apache::* modules out there, so: a) which one is recommended by gurus? b) can I find out the path to

[mp2] disabling a perl handler within a specific location

2003-03-03 Thread Matt Avitable
Hi list :-) Does anyone know how one goes about disabling a particular handler within a specific location? For example, consider the following: Location / PerlInitHandler config PerlOutputFilterHandler filter /Location LocationMatch /(images|gfx)/ ## what can

Re: [mp2] disabling a perl handler within a specific location

2003-03-03 Thread Stas Bekman
Matt Avitable wrote: Hi list :-) Does anyone know how one goes about disabling a particular handler within a specific location? For example, consider the following: Location / PerlInitHandler config PerlOutputFilterHandler filter /Location LocationMatch /(images|gfx)/