Re: Perl 6 + mod_perl

2003-06-27 Thread Kevin Falcone
on mod_perl2 instead for now ;-) Agreed, but that won't keep me from playing. -kevin

Re: How do I force a 'Save Window?'

2002-11-19 Thread Kevin Berggren
to do and establish a framework within which it must be done. Then they let people on the front lines, who know best, figure out how to get it done. ~ General H. Norman Schwarzkopf -- Kevin Berggren

Re: asynchronous downloads

2002-10-03 Thread Kevin Berggren
I think many sites use the meta refresh html tag. i.e. htmlhead ... META HTTP-EQUIV=Refresh CONTENT=2;URL=file_i_want_to_download.gz ... Netscape has a complete reference on this at http://developer.netscape.com/docs/manuals/htmlguid/tags3.htm#1697602 You could probably also set a refresh

Another Great Article by Stas!

2002-07-31 Thread Kevin A. McGrail
I just wanted to give Kudos to Stas for his latest Mod Perl installment at Perl.com! http://www.perl.com/pub/a/2002/07/30/mod_perl.html Regards, KAM

Challenging things to do: SIGSEGV catcher and backtrace extractor

2002-04-11 Thread Kevin A. McGrail
Date: Fri, 12 Apr 2002 00:24:11 +0800 To: [EMAIL PROTECTED] From: Stas Bekman [EMAIL PROTECTED] Subject: Challenging things to do: SIGSEGV catcher and backtrace extractor Message-ID: [EMAIL PROTECTED] A few moons ago we have discussed on the dev list a tool for automatic segfault

Re: Help Requested: Segfault 11 7 MONTHS after compilation on multiple servers all compiled the same running different code and different Redhat Released all on the same day [BUG]

2002-04-09 Thread Kevin A. McGrail
`Inline::END': Thoughts? Something special with mod_perl? I didn't add the Bad::Segv to the startup.pl or anything at all. Regards, Kevin A. McGrail * http://perl.apache.org/preview/modperl-docs/dst_html/docs/2.0/devel/debug_c/ debug_c.html#Getting_the_core_File_Dumped Bad-Segv-0.20.tar.gz

Help Requested: Segfault 11 7 MONTHS after compilation on multiple servers all compiled the same running different code and different Redhat Released all on the same day [BUG]

2002-04-08 Thread Kevin A. McGrail
Synopsis: My servers, installed per instructions at http://www.peregrinehw.com/downloads/apached/devel, were originally compiled in July of Last year. On February 6th of this year, without warning or change, we began segfault 11'ing for the first time in years on multiple servers with enough

Re: Apache::DBI or What ?

2002-03-22 Thread Kevin Berggren
know enough yet to see there is not a grey area :) Thanks, Eric http://www.kwinternet.com/eric (250) 655 - 9513 (PST Time Zone) -- Kevin Berggren 760-480-1828 System Maker, Inc 3913

Problem on modperl-1.26

2001-09-07 Thread Kevin LEE
\ ./configure \ --prefix=/usr/local/apache \ --enable-module=ssl \ --activate-module=src/modules/perl/libperl.a \ --enable-module=perl \ --activate-module=src/modules/php4/libphp4.a \ --enable-module=php4 make Any idea why the error occurrs. I am really stuck Cheers, Kevin

mod_perl forgetting values

2001-08-09 Thread Kevin Schroeder
for this problem rather than a simple workaround like restarting Apache from cron every few hours. Does anyone here know the reason or a solid fix for this problem? Does it have something to do with the older versions of Apache and mod_perl? Thanks, Kevin

Child Interprocess Data

2001-07-23 Thread Kevin Schroeder
be somewhat needless, I would like to have a certain amount of data stored within the server and accessable to all the Apache processes. Could someone point me in the right direction to start? Kevin

CGI module or Apache

2001-07-09 Thread Kevin Schroeder
, cookies and the like? You'll have to forgive me, I've been learning mod_perl off of the cheat sheet at refcards.com. Kevin Schroeder

Re: CGI module or Apache

2001-07-09 Thread Kevin Schroeder
that using a mod_perl based alternative to CGI.pm might be a good way to coax a little extra out of the server. It would only be used once per request from the browser. Would this make a difference since it will be used multiple times on a process, but only once per request? Kevin - Original

Re: ssl encryption

2001-06-15 Thread Kevin Schroeder
as absolute security, only probable security. Oh well. Kevin - Original Message - From: Vivek Khera [EMAIL PROTECTED] Newsgroups: ml.apache.modperl To: [EMAIL PROTECTED] Sent: Friday, June 15, 2001 2:23 PM Subject: Re: ssl encryption KS == Kevin Schroeder [EMAIL PROTECTED] writes: KS

Re: ssl encryption

2001-06-14 Thread Kevin Schroeder
This would make an interesting discussion because I've had the same question come up in my mind. How do you encrypt things on your server without giving out the passphrase? Is it even possible to keep the key in the same location as the program using it and still maintain security? Kevin

Apache Processes hanging

2001-05-03 Thread Kevin Slean
OS: Solaris 5.7 patch level 106541-12 Apache: Apache/1.3.11 (Unix) ApacheJServ/1.1.2 mod_perl/1.24 secured_by_Raven/1.4.2 Any ideas, thoughts, and comments are welcome. Thanks. Kevin

New CPAN module to assist with Perl Sections

2001-03-16 Thread Kevin . Ruscoe
archive at http://www.geocrawler.com/archives/3/182/2000/2/0/3371477/ For more information, see the module's POD. Hope this helps you. Any feedback gratefully accepted. Regards Kevin $"="";print"@{[{sub{($i,$j,@_)=(1,1,split//,'hrP kc eeatenltarohsr u,J'); while(@_){foreach(1..$i

Re: Errors

2001-01-23 Thread Kevin Beckford
Neil Powers wrote: Hello I am running red hat 7.0 with apache version apache_1.3.14 trying to compile mod_perl-1.24 and keep getting the following error Are you using the gcc "2.96" that shipped with RedHat 7? If so try using gcc 2.95.

Finding out what has been enabled on a mod perl server

2001-01-16 Thread Kevin Beckford
Hello all, I need to find out what has been enabled on my production server. I want to use method handlers, but I am unsure if that has been compiled in. How would I do this? I don't have the access to install mod-status - so the easy way is not for me...

Re: Finding out what has been enabled on a mod perl server

2001-01-16 Thread Kevin Beckford
That will tell me if mod_perl.c is has been installed. I know that. What I want to find out is if during the installation, did the installer (Was not me!) set PerlMethodHandlers on and other flags of that kind during the install. How would I do that? Apachedir/bin/httpd -l

using a handler in a module file

2001-01-16 Thread Kevin Beckford
I want to use an apache module in an .htaccess file. What would be the syntax with that? I'm assuming that it will be along the lines of PerlModule Goofy::Nav Files goofy.nav SetHandler perl-script PerlHandler Goofy::Nav /Files but I can't seem to get that to work. Any ideas?

RE: Certification

2000-12-07 Thread kevin montuori
the drug test of course. cheers, k. -- kevin montuori support independent booksellers -- http://www.booksense.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Smart installing (Re: mod_perl advocacy project resurrection)

2000-12-06 Thread kevin montuori
is of questionable value -- when you need it, you need it; there's no substitute. (unless you consider reconciling databases by hand a substitute.) cheers, k. -- kevin montuori support independent booksellers -- http://www.booksense.com

Re: RFC: mod_perl advocacy project resurrection

2000-12-05 Thread kevin montuori
components together and driving the configuration/build from a single script? i don't know. cheers, k. -- kevin montuori support independent booksellers -- http://www.booksense.com - To unsubscribe, e-mail: [EMAIL

Re: RFC: mod_perl advocacy project resurrection

2000-12-05 Thread kevin montuori
chnical manager" might get nervous. personally, i have no issues with how it works now; i'm just trying to contribute what i've heard the problems are. cheers, k. -- kevin montuori support independent booksellers -- http

Re: mod_perl advocacy project resurrection

2000-12-05 Thread kevin montuori
ave been weeks if it had to be written in C. cheers, k. -- kevin montuori support independent booksellers -- http://www.booksense.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Use of .htaccess files

2000-11-17 Thread Kevin Beckford
Hello all, I'm a newbie to mod_perl, and I have a question. We have mod_perl on our server, but it is a standard out of the box install (Only PerlHandler is enabled.) Now, I'd like to use .htaccess files to test some stuff out (no dev server either) and I don't want to be

RE: Apache Modules in General

2000-10-30 Thread Kevin Huang
Title: RE: Apache Modules in General What's your problem ?! http://perl.apache.org Check the site before you say anything. Kevin Huang\\ -Original Message- From: Jimi Thompson [mailto:[EMAIL PROTECTED]] Sent: Monday, October 30, 2000 4:01 PM To: [EMAIL PROTECTED] Subject

Apache::Filter/::RegistryFilter/::Compress problem.

2000-10-02 Thread kevin montuori
perhaps 3 requests in every 50k. - apache v1.3.9 on solaris 2.6 modperl 1.21 Apache::Filter 1.011 Apache::Compress 1.002 thanks for any suggestions, i appreciate your time. cheers, k. -- kevin montuori

Re: Apache::Filter/::RegistryFilter/::Compress problem.

2000-10-02 Thread kevin montuori
Matt Sergeant writes: ms On Mon, 2 Oct 2000, kevin montuori wrote: i'm wondering if anyone else has seen the following behaviour, and, if you have, how you dealt with it. [...] ms Do you have StatINC in that mix anywhere? i do not. should i? k. -- kevin

Re: Apache::Filter/::RegistryFilter/::Compress problem.

2000-10-02 Thread kevin montuori
help. cheers, k. -- kevin montuori support independent booksellers -- http://www.booksense.com

Re: Where are mod_perl coders?

2000-07-20 Thread Kevin Reichard
any that have real skills. Where do all the > mod_perl coders hang out? Try McGarrets above Taco Bell in Monterey, watching Stas' dancing skills (hidden talents), and Doug's pulling skills (not so hidden talents) ;-) Matt. -- Kevin Reichard Managing Editor, Linux/Open-Source Channel internet.com

Re: Where are mod_perl coders?

2000-07-20 Thread Kevin Reichard
Stas may have been the most photographed person at the show. Ken Coar took some group shots of our dinner as well. Sadly, Stas did not dance on that occasion. --K. Matt Sergeant wrote: On Thu, 20 Jul 2000, Kevin Reichard wrote: > Stas' dancing skills? Any pix? ;) God I hope so! I think

Anyone know a good perl mailing list?

2000-07-19 Thread kevin
Hello, Whilst I am subscribed to modperl mailing list does anyone know a good general perl mailing list preferably from perl.org or .com I tried subscribing to a few but links where outdated. Any help appreciatted KS

Re: [advocacy] writing articles

2000-06-23 Thread Kevin Reichard
To follow up: Feel free to contact me at Apache Today (http://www.apachetoday.com) with any article ideas. Stas has contributed to the site, and we're always looking for more articles from the community. Plus, we do pay $. ;) --Kevin Reichard Stas Bekman wrote: Folks, if you think that you can

Re: HTML::Mason and path_info

2000-04-24 Thread Kevin Murphy
is /hello/. This is a known bug - check out http://www.masonhq.com/bugs/#_r_path_info_no_longer_s -- Kevin | "I don't want the universe broken up just yet," drawled the Murphy | Marquis. "I want to do a lot of beastly things before I die. | I thought of one yesterday i

Re: Problems with custom configuration handlers

2000-04-13 Thread Kevin Murphy
configuration options together. Any chance of a work-around? -- Kevin | "Though there are ... few restrictions on the vote nowadays ... Murphy | some standards are still upheld ... at last report, the votes | from the entire God-forsaken state of Texas are still t

Problems with custom configuration handlers

2000-04-12 Thread Kevin Murphy
w foo.com WhiteListDenyURI http://www.foo.com/bar/baz.html /Directory I'm stumped. For the most part, I copied and pasted my code directly from the book. Has anyone else hit this problem? -- Kevin | "Though there are ... few restrictions on the vote nowadays ... Murphy | some standards a

Re: [admin] [OT] NO HTML posts please!

2000-03-30 Thread kevin montuori
ntent" unless /mod_perl/' `mhpath curr` cheers, k. -- kevin montuori

Signal Abort

2000-03-28 Thread kevin . luo
in startup_children () #51 0x7fb5c in standalone_main () #52 0x80a00 in httpd_main () #53 0x27aa8 in main () begin:vcard n:Luo;Kevin tel;cell:0937409397 tel;fax:886-02-23686172 tel;work:886-02-23686171 ext 395 x-mozilla-html:FALSE version:2.1 email;internet:[EMAIL PROTECTED] title:brh2a href

Problem using POD/mod-perl to document configuration files

2000-02-11 Thread Kevin . Ruscoe
(I scanned the archive for similar questions. Many apologies if I missed one.) Regards Kevin This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Plea

RE: Don't run the modules mod_perl

2000-02-09 Thread Kevin Huang
And you should create a perl.conf and startup.pl files in conf/ as well. Anyway, check the eagle book chapter 2 for details. Thanks Kevin Huang\\ -Original Message- From: Diego Gomez [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 08, 2000 4:55 AM To: [EMAIL PROTECTED] Subject: Don't

ApacheModulePerl.dll location on apache.org

2000-02-09 Thread kevin carothers
Could someone please tell me where ApacheModulePerl.dll is? Hate to sound so clueless, but I am... Did a search at apache.org with "ApacheModulePerl.dll" and it wasn't there... thanks kevin carothers

Re: Apache::Request weirdness

2000-02-08 Thread Kevin Murphy
(If you're addicted to CGI.pm, you can use the hash reference as the argument to CGI-new in your content handler and get the same results as if CGI handled the parameter parsing itself.) Good luck, -- Kevin | "Though there are ... few restrictions on the vote nowadays ... Murphy |

HELP! Core dumps using $r-pnotes().

2000-02-05 Thread Kevin Murphy
i686-linux /usr/lib/perl5/5.00503 /usr/lib/perl5/site_perl/5.005/i686-linux /usr/lib/perl5/site_perl/5.005 . -- -- Kevin | "Though there are ... few restrictions on the vote nowadays ... Murphy |

Transaction handler weirdness

2000-01-19 Thread Kevin Glass
$self-init($initializer); return $self;} Any ideas as to where theproblem lies? Thanks Kevin

Byteserving, Range: headers and assorted foo.

1999-11-17 Thread Kevin Murphy
documentation on this portion of the request object. -- Kevin |"'I was drunk' is a polite way of saying 'I shed my inhibitions | and did exactly what I wanted to do, and if you provoke me, | I'll | do it again.' This gives people fair warning and tells | them tactfully to mind their own business." - P.J. O'Rourke

Re: Byteserving, Range: headers and assorted foo.

1999-01-16 Thread Kevin Murphy
. That was the problem. I was setting a content-length header with $r-headers_out but not calling $r-set_content_length. -- Kevin |"'I was drunk' is a polite way of saying 'I shed my inhibitions | and did exactly what I wanted to do, and if you provoke me, | I'll do it

confining hash changes to individual httpd child

1999-01-03 Thread Kevin Ward
? Is there a way to make this hash local to the individual child process which serves up the specific page? Is there a better way to go about this? Kevin Kevin Ward, SSAI Earth Observatory Technical Manager NASA Goddard Space Flight Center Code 910.4, Greenbelt, MD