Re: How to tell if scripts are mod_perl ?

2001-04-20 Thread Sean C. Brady
On 20 Apr 2001, Wayne Pascoe wrote: Hi there, I'm trying to roll out some software by one of our 3rd party developers. I'm trying to find out if the scripts will actually be run through mod_perl and not as cgi's. The only config changes that they have specified to my Apache config is

Re: Java.pm

2001-04-10 Thread Sean C. Brady
On Tue, 10 Apr 2001, Brett W. McCoy wrote: On Tue, 10 Apr 2001, cbell wrote: Hello everyone, has anyone had any experience with Java.pm? There doesn't seem to be much info in the mail archives. I'm trying to access a JAR from within perl using the Java.pm, but I always receive the

Re: mod_parrot

2001-04-02 Thread Sean C. Brady
Very interesting... thanks for sharing! ~Sean On Sun, 1 Apr 2001, Bill Moseley wrote: I assume everyone saw this... ;) http://www.oreilly.com/parrot/ Bill Moseley mailto:[EMAIL PROTECTED]

Re: [OT] ApacheCon BOF

2001-03-19 Thread Sean C. Brady
42,539,693,877 to be exact... sorry Nick! :) ~Sean "Randal L. Schwartz" wrote: [ugh - next time, don't be a top-quoter - bleh] "Nick" == Nick Tonkin [EMAIL PROTECTED] writes: "mod_perl: 20 billion hits served" And turn the "m" into a stylized arch. :) Nick er, maybe 20

Re: [OT] ApacheCon BOF

2001-03-19 Thread Sean C. Brady
Ya, I know... I just love to give Nick some grief once in a while... :) ~Sean "Randal L. Schwartz" wrote: "Sean" == Sean C Brady [EMAIL PROTECTED] writes: Sean 42,539,693,877 to be exact... sorry Nick! :) 42 billion has the right sound to it. It's &qu

Re: Handler without handler()

2001-03-13 Thread Sean C. Brady
Gene Dascher wrote: I have a handler that I want to contain all of my methods for access control, authentication and authorization. I have created the file with 3 different methods named access($$), authentication($$) and authorization($$). I have these methods set up thusly in the

Re: Newbie Questions

2001-03-09 Thread Sean C. Brady
julie wang wrote: HI! I'm new to Modperl. I been programming as a perl programmer (not the best, but I'm trying to improve) and been told to try and code using mod_perl. I got ORA's book on Apache Modules and was reading about how to code using mod_perl. Am I right to assume mod_perl

Re: Forbidden access

2001-03-06 Thread Sean C. Brady
Hi. Looks like maybe a syntax error look below: "Wang, Pin-Chieh" wrote: Hi, I build Apache_1.3.14 with mod_perl-1.25 on RedHat Linux 7.0 with DSO. Initially both server-status and server-info works fine, but some how both of these pages denied my display request.(403 Forbidden ) I

Re: DBD::mysql memory leak!

2001-02-01 Thread Sean C. Brady
Hi Mark. On Thu, 1 Feb 2001, Mark Blythe wrote: I have been testing and troubleshooting this for days, and I can find no other answer to my problem except that DBD::mysql has a memory leak. I have narrowed it down to this small script running through Apache::Registry:

Re: [OT] Availability of Jobs -- was Re: [SOLICITATION] Programmer available for contracting..

2001-01-10 Thread Sean C. Brady
I think it's your second question... in my opinion. - Sean On Thu, 11 Jan 2001, Gunther Birznieks wrote: I notice that there have been many more job postings from employment seekers have occurred in the last few weeks versus jobs. Whereas it used to be many more jobs wanting mod_perl vs

Re: [OT] Availability of Jobs -- was Re: [SOLICITATION] Programmer available for contracting..

2001-01-10 Thread Sean C. Brady
I just want to thank Stas for the great link... very entertaining and informative! - Sean On Wed, 10 Jan 2001, Jeffrey W. Baker wrote: On Thu, 11 Jan 2001, Stas Bekman wrote: On Wed, 10 Jan 2001, mehryar wrote: Im not sure about the contract positions but this is traditionally the

Re: i need reload the scripts

2000-11-22 Thread Sean C. Brady
You can either restart the server... or, add PerlPostReadRequestHandler Apache::StatINC to your httpd.conf file. I think even with StatINC, you might have to restart your server once in a while - my own experience... - Sean On Wed, 22 Nov 2000, bari wrote: i have some modules already

Re: moidperl, OOP DBI

2000-11-21 Thread Sean C. Brady
Hi Ilya. Even though this isn't a mod_perl issue you should be able to open your database connection within your constructor. You also could maybe call an internal method from within your constructor that opens the db connection and checks for the existence of 'id'. - Sean On Tue, 21 Nov

Re: @INC and Apache::Registry scripts

2000-11-20 Thread Sean C. Brady
I've run into this same situation... you probably had children answering the request that still had the older (without use lib) version taking care of it It sounds like something that is normal... if a newly spawned child had answered the request, it probably would of worked fine... -