Apache::DBI startup failure

2004-03-16 Thread Ethan Joffe
I am trying to use Apache::DBI with RH9.0 defaults (apache2.0.40-21.9, modperl1.99_05-5, DBI 1.32-5) I put the following line in my startup.pl: PerlModule Apache::DBI; and get the following error when starting apache: Starting httpd: [Tue Mar 16 05:45:24 2004] [error] Can't locate object meth

Re: Apache::DBI startup failure

2004-03-16 Thread Jean-Michel Hiver
Ethan Joffe wrote: I am trying to use Apache::DBI with RH9.0 defaults (apache2.0.40-21.9, modperl1.99_05-5, DBI 1.32-5) I put the following line in my startup.pl: PerlModule Apache::DBI; PerlModule is for apache config files. startup.pl is just a regular perl script so you should use a plain o

[mp2] make test fails in t/apache/util.t

2004-03-16 Thread Ruslan U. Zakirov
Apache-2 form CVS as mp2. Some locale/UTF issues? I think it's not critical issue and I could force make install. Verbose make test output: t/apache/util1..4 # Running under perl version 5.008003 for linux # Current time local: Tue Mar 16 18:33:54 2004 # Current time GMT: Tue Mar 16 15:33:54

Question: $r->log_error quotation

2004-03-16 Thread Sebastian Podjasek
Hello everyone, sorry for bothering but something changed from my previous mod_perl version. Now I'm using 1.29.0.2-4 from Debian package, previosly I've used 'log_error' to dump some variables via Data::Dumper for debugging. Currently it is almost impossible to read the output because text isn't q

Re: [mp2] make test fails in t/apache/util.t

2004-03-16 Thread Stas Bekman
Ruslan U. Zakirov wrote: Apache-2 form CVS as mp2. Some locale/UTF issues? I think it's not critical issue and I could force make install. Verbose make test output: t/apache/util1..4 # Running under perl version 5.008003 for linux # Current time local: Tue Mar 16 18:33:54 2004 # Current time GM

Re: # of threads needed to run winnt mpm correlates to # of vhosts

2004-03-16 Thread Steve Hay
Stas Bekman wrote: >Stas Bekman wrote: > > >>Steve Hay wrote: >> >> >> >>>Bill Stoddard wrote: >>> >>> >>> >>> Just committed a fix (please test) to Apache HTTPD 2.1. Patch is here (it should apply to 2.0): http://cvs.apache.org/viewcvs.cgi/httpd-2.0/server/mpm/winnt/

FYI: Apache 1.3 and 2.0.x now escape \n in error_log (was: Re: Question: $r->log_error quotation)

2004-03-16 Thread Stas Bekman
Sebastian Podjasek wrote: Hello everyone, sorry for bothering but something changed from my previous mod_perl version. Now I'm using 1.29.0.2-4 from Debian package, previosly I've used 'log_error' to dump some variables via Data::Dumper for debugging. Currently it is almost impossible to read the o

Re: FYI: Apache 1.3 and 2.0.x now escape \n in error_log

2004-03-16 Thread Sebastian Podjasek
Yes, both Apache generations now escape almost everything that goes to the error_log. Please read about the new -DAP_UNSAFE_ERROR_LOG_UNESCAPED compile time option. Apache 1.3: http://perl.apache.org/docs/1.0/guide/install.html#Unescaping_F_error_log_ Apache 2.0: http://perl.apache.org/docs/2.0/

Re: CGI header mod_perl 1.99_13 : OK

2004-03-16 Thread Arnaud Blancher
*** Packages of interest status: Apache::Request: - CGI: 3.04 LWP: 5.65 mod_perl : 1.9912, 1.9912, 1.9913 You have a bunch of older mp2 installs lingering around. I won't be surprised if you get the wrong libraries loaded. I'd suggest to nuke any previous mod_perl

Re: # of threads needed to run winnt mpm correlates to # of vhosts

2004-03-16 Thread Stas Bekman
Steve Hay wrote: [...] Steve, Randy, you haven't confirmed whether you want this patch to be in or not. Take your time to respond, of course. Sorry, Stas - in the excitement over Bill's patch to fix Apache I completely forgot about your fix for mp2 running on unfixed Apache's. I've tried it out

Re: [mp2] make test fails in t/apache/util.t

2004-03-16 Thread Ruslan U. Zakirov
Stas Bekman wrote: Ruslan U. Zakirov wrote: Apache-2 form CVS as mp2. Some locale/UTF issues? I think it's not critical issue and I could force make install. Verbose make test output: t/apache/util1..4 # Running under perl version 5.008003 for linux # Current time local: Tue Mar 16 18:33:54 20

Re: [mp2] make test fails in t/apache/util.t

2004-03-16 Thread Stas Bekman
Ruslan U. Zakirov wrote: Stas Bekman wrote: Ruslan U. Zakirov wrote: Apache-2 form CVS as mp2. Some locale/UTF issues? I think it's not critical issue and I could force make install. Verbose make test output: t/apache/util1..4 # Running under perl version 5.008003 for linux # Current time loc

Re: [mp2] make test fails in t/apache/util.t

2004-03-16 Thread Ruslan U. Zakirov
Stas Bekman wrote: Ruslan U. Zakirov wrote: Stas Bekman wrote: Ruslan U. Zakirov wrote: Apache-2 form CVS as mp2. Some locale/UTF issues? I think it's not critical issue and I could force make install. Verbose make test output: t/apache/util1..4 # Running under perl version 5.008003 for linu

Re: [mp2] make test fails in t/apache/util.t

2004-03-16 Thread Stas Bekman
Ruslan U. Zakirov wrote: [...] What's the transparent way to accomplish that? 'use locale' should have done that I believe. See the perllocale manpage. This experiment say that 'locale' is working fine: perl -Mlocale -e 'print +(sort grep /\w/, map { chr } 0..255), "\n";' Â_0123456789aAbBcCdDeEfFg

Re: [mp2] make test fails in t/apache/util.t

2004-03-16 Thread Ruslan U. Zakirov
Stas Bekman wrote: Ruslan U. Zakirov wrote: [...] What's the transparent way to accomplish that? 'use locale' should have done that I believe. See the perllocale manpage. This experiment say that 'locale' is working fine: perl -Mlocale -e 'print +(sort grep /\w/, map { chr } 0..255), "\n";' Â_01

Re: [mp2] make test fails in t/apache/util.t

2004-03-16 Thread Stas Bekman
Ruslan U. Zakirov wrote: I found solution. I've placed 'use locale' in package scope instead of sub scope and test goes fine. Perl "bug/feature"? No, my mistake. Please try this one: Nop. Only attached one. So may be it is a bug in perl then. If you can reproduce it outside of mod_perl with

Trouble with AuthenSmb

2004-03-16 Thread Lehman, Jason (Registrar's Office)
I am getting the error below in my apache logs when someone can’t be authenticated.  If they are authenticated there are no problems.   Can't locate object method "log_reason" via package "Apache::RequestRec" at /usr/lib/perl5/site_perl/5 .8.0/Apache/AuthenSmb.pm line 99.!    This box

Re: Trouble with AuthenSmb

2004-03-16 Thread William McKee
On Tue, Mar 16, 2004 at 04:56:36PM -0500, Lehman, Jason (Registrar's Office) wrote: > I am getting the error below in my apache logs when someone can't be > authenticated. If they are authenticated there are no problems. > > Can't locate object method "log_reason" via package "Apache::RequestRec"

compilation errors

2004-03-16 Thread paul
Hi all! I have problems running/compiling mod_perl First I tried mod_perl-1.99 which compiled fine, but make test gave me errors. The logs didn't tell anything! Now I try to compile the latest sources on openbsd 3.3 with apache 2.0.48 which gives me the following errors: Global symbol "$dversi

Re: compilation errors

2004-03-16 Thread Stas Bekman
paul wrote: Hi all! I have problems running/compiling mod_perl First I tried mod_perl-1.99 which compiled fine, but make test gave me errors. The logs didn't tell anything! Now I try to compile the latest sources on openbsd 3.3 with apache 2.0.48 which gives me the following errors: Global symb

Installation / Configuration Questions

2004-03-16 Thread Mr. Egomaniac
Greetings, I realize that this might be a newbie/already answered question, but I've looked all over and can't seem to find anything that will help. So here goes: I am trying to install an apache 1.3.29 server with mod_perl 1.29. I've configured and tested both, and all seem to be working as

Re: Trouble with AuthenSmb

2004-03-16 Thread Shannon Eric Peevey
Lehman, Jason (Registrar's Office) wrote: I am getting the error below in my apache logs when someone can’t be authenticated. If they are authenticated there are no problems. Can't locate object method "log_reason" via package "Apache::RequestRec" at /usr/lib/perl5/site_perl/5 .8.0/Apache/Auth

Re: Apache::AuthenNTLM v2.04 - Apache hangs on authentication

2004-03-16 Thread Shannon Eric Peevey
[EMAIL PROTECTED] wrote: Hi, Hope I am emailing the right people - appologies if not :) We have been using modperl & Apache::AuthenNTLM on HP-UX for a few months now, and it works just peachy most of the time. However, every now and then we get a problem with the web server hanging when trying t

RE: Trouble with AuthenSmb

2004-03-16 Thread Lehman, Jason (Registrar's Office)
Title: Re: Trouble with AuthenSmb Actually I am not sure that I am using mp2.  Forgive my ignorance but my version is listed as 1.90 as I remember.  -Original Message- From: Shannon Eric Peevey [mailto:[EMAIL PROTECTED] Sent: Tue 3/16/2004 7:12 PM To: Lehman, Jason (Registra

Groups, Multiple Domains, and AuthenSmb

2004-03-16 Thread Lehman, Jason (Registrar's Office)
Can you refer to windows groups with AuthenSmb on a linux machine and can you refer to multiple domains?  And how do you do it if you can do either.  I know about NTLM but I need it to work in both Netscape and IE since I have both from users.  Thanks for any help.

RE: Trouble with AuthenSmb

2004-03-16 Thread Lehman, Jason (Registrar's Office)
Title: Re: Trouble with AuthenSmb My version of MP is 1.99_9-10.  I am using a Red Hat Enterprise AS 3.0 Education Version (so no support) and have been trying to stick with their rpm packages because I am new to Linux Administration.  I haven't seen a mod_perl2 rpm for AS 3 yet.  Any sugg

Re: Groups, Multiple Domains, and AuthenSmb

2004-03-16 Thread Carlos Ramirez
Lehman, Jason (Registrar's Office) wrote: Can you refer to windows groups with AuthenSmb on a linux machine and can you refer to multiple domains? And how do you do it if you can do either. I know about NTLM but I need it toÂwork in bothÂNetscape and IE sinceÂI have both from users. Th

Re: Trouble with AuthenSmb

2004-03-16 Thread William McKee
On Tue, Mar 16, 2004 at 10:19:33PM -0500, Lehman, Jason (Registrar's Office) wrote: > My version of MP is 1.99_9-10. I am using a Red Hat Enterprise AS 3.0 > Education Version (so no support) and have been trying to stick with > their rpm packages because I am new to Linux Administration. You've

Images and Auth

2004-03-16 Thread Batara Kesuma
Hi, I am running a web site where users can upload their pictures. The problem is, I don't want to let users view the pictures while they are not logged in. I am thinking about using AuthName, AuthType on httpd.conf, but I don't wan't to display the grey pop up box, because I already have my own l