Re: can't build with 1.3.14 apache?

2000-10-14 Thread Jeff Beard
FWIW, I compiled it on Linux with mod_perl 1.24_01 with no problems. I use the method descibed in INSTALL.apaci under the heading "The flexible way". --Jeff On Sat, 14 Oct 2000, Jeremy Hansen wrote: > > For some reason mod_perl-1.24 is failing to configure with apache 1.3.14

RE: open(FH,'|qmail-inject') fails

2000-09-26 Thread Jeff Warner
ct is significantly faster than straight sendmail on Linux. Jeff -Original Message- From: Doug MacEachern [mailto:[EMAIL PROTECTED]] Sent: Monday, September 25, 2000 5:21 PM To: Stas Bekman Cc: Bill Moseley; Modperl Subject: Re: open(FH,'|qmail-inject') fails On Mon, 25 Sep 2000, St

Re: mm-1.0.12

2000-09-24 Thread jeff
Thanks for the help Armand, I really appreciate the effort. Unfortunately, I've seen Ray's faq before, it does have quite a few wholes in it. I still have the problem mentioned before. Jeff - Original Message - From: Armand <[EMAIL PROTECTED]> To: jeff <[EMAIL PROTE

mm-1.0.12

2000-09-24 Thread jeff
is working or not.   Anyhelp would be most appreciated.  In fact if you could even point me to where I may get some help on mm that would be great too.  I have not found anyplace.  Thankyou for taking the time to help me, I appreciate it.    Regards, Jeff

mod_auth_mysql DSO apxs

2000-09-18 Thread jeff
hared object file: No such file or directory/usr/local/apache/bin/apachectl startssl: httpd could not be started[root@impalla mod_auth_mysql-2.20]#   ANY HELP???  It's like apache doesn't know where to look for the mysql libs even though i specified where it is in the apxs command?  I'm confused.   Jeff Gelina

Re: Auto rollback using Apache::DBI

2000-09-08 Thread Jeff Horn
d why I was not getting rollbacks when sessions ended without commits. I too think that the cleanup handler should ALWAYS be pushed and that the handler itself should check for the AutoCommit status before issuing a rollback. Should be easy enough to implement. -- Jeff - Original Message ---

Re: Poor man's connection pooling

2000-09-06 Thread Jeff Horn
te' DBD function all configurable from apache config files. I'd be interested in any input on this course of action! -- Jeff Horn > - Original Message - > From: "Michael Peppler" <[EMAIL PROTECTED]> > To: "Barrie Slaymaker" <[EMAIL PROTECTED]&

Re: [OT] Language Question...

2000-09-01 Thread Jeff Jones
I began teaching myself C using the following book: "A Book on C" by Al Kelley, Ira Pohl ISBN# 0201183994 It will turn up if you do a search at amazon. Hope this helps. Jeff Jones On Fri, 1 Sep 2000, David Hajoglou wrote: > I would like to be able to read the

Re: Migrating from CGI.pm to (...?), was Re: CGI.pm problem

2000-08-30 Thread Jeff Beard
h I don't use any of the HTML generation features. --Jeff At 10:32 AM 8/30/00 +0400, Alexei V. Barantsev wrote: >Jeff Beard <[EMAIL PROTECTED]> writes: > > > There isn't a Vars() function in CGI.pm. If you're looking for the query > > string try param().

Re: CGI.pm problem

2000-08-29 Thread Jeff Beard
There isn't a Vars() function in CGI.pm. If you're looking for the query string try param(). Or if you want to make it a mod_perl program (which is what you would normally discuss on this list) Apache::Request::param(). --Jeff At 04:11 PM 8/29/00 +0400, Alexei V. Baran

Re: Getting data from external URL

2000-08-28 Thread Jeff Beard
n't connect to $rhost:$rport : $!\n"; print $socket "GET /programname?$query_string\n"; my $response; while ( <$socket> ) { $response .= $_ } close($socket); return \$answer; } --Jeff At 06:58 AM 8/28/00 -0400, Steve Reppucci wrote: >Just a

Cookies

2000-08-25 Thread Jeff Smelser
m('username'); $Response->{Cookies}{'password'} = $Request->Form('password'); Jeff

Building mod_perl and mod_jserv into same apache

2000-08-21 Thread Jeff Warner
would be appreciated. Jeff

New Version of Apache::DBI which uses 'reauthenticate' instead of caching all connections

2000-08-12 Thread Jeff Horn
n the future as Apache::DBIReauth or somehow meld this with the existing Apache::DBI with some configuration options as to which kind of caching to use.   Please let me know what you think!   -- Jeff Horn DBI.pm

Fw: Apache::DBI using 'reauthenticate' instead of caching

2000-08-11 Thread Jeff Horn
From: Jeff Horn To: [EMAIL PROTECTED] ; [EMAIL PROTECTED] ; [EMAIL PROTECTED] Sent: Tuesday, June 20, 2000 7:50 PM Subject: RFC: Apache::DBI using 'reauthenticate' instead of caching Gentlemen:   John Groenveld suggested that I run this by each of you.  I have made a hack to Apache:

RE: Help Embperl

2000-08-05 Thread Jeff Smelser
No problem: Jeff's Stock Page [$ if $ENV{REQUEST_METHOD} eq 'GET' $] This is a GET request [$ elsif $ENV{REQUEST_METHOD} eq 'POST' $] This is a POST request [$ else $] This is not GET and not POST [$ endif $] Thanks, Jeff On Sat, 5 Aug

Help Embperl

2000-08-05 Thread Jeff Smelser
I got EMbperl to compile. It when I did make test, everything went great. OK's down the line. I set up apache with: SetHandler perl-script PerlHandler HTML::Embperl This is what apache says when I restarted it: [10843]ERR: 25: Line 1: Error [Sat Aug 5 16:10:00 2000] [notice] Apache/1.3.9 (

Re: (Fwd) Problem with Authen::Krb4 under mod_perl (fwd)

2000-08-02 Thread Jeff Horwitz
[forwarded just in case anyone else is having similar problems] -- Forwarded message -- Date: Wed, 2 Aug 2000 10:45:35 -0400 (EDT) From: Jeff Horwitz <[EMAIL PROTECTED]> To: Dave Edsall - The Tauminator <[EMAIL PROTECTED]> Subject: Re: (Fwd) Problem with Authen

Re: (Fwd) Problem with Authen::Krb4 under mod_perl

2000-08-01 Thread Jeff Horwitz
are you using mod_ssl or SSL of any kind? there are name clashes between the kerberos DES libraries and the SSL DES libraries that can cause kerberos to fail. --- Jeff Horwitz E-mail: [EMAIL

Re: Caching data from db

2000-07-28 Thread Jeff Beard
Thanks gentlemen. I thought I was correct about the behavior of my code. However, Informix uses system authentication routines and we won't allow root (the user running httpd at that point) to login remotely. Time for an expedient hack I guess. Regards, Jeff On 28 Jul 2000,

Caching data from db

2000-07-27 Thread Jeff Beard
x27;ve specified username and password. Anybody have some advice or techniques? FYI: RH Linux 6.2 Apache 1.3.12 mod_perl 1.24 DBD::Informix 1.00 Informix 9.20 TIA, Jeff

Re: Is there a module for getting / setting a Session-ID

2000-07-26 Thread jeff
The mod_perl eagle book has a good section on saving state information using session ids. And it's not necessarily mod_perl based. -- Jeff Saenz [EMAIL PROTECTED]

Re: [OT] mod_rewrite

2000-07-22 Thread Jeff Jones
. Jeff Jones On Fri, 21 Jul 2000, Gunther Birznieks wrote: > If it has to do with your setup of mod_perl, why dont you just post your > config here..I can't believe it would be more than 10-15 lines long..? > > At 03:11 PM 7/20/00 -0500, Jeff Jones wrote: > >It's th

[OT] mod_rewrite

2000-07-20 Thread Jeff Jones
It's the mod_rewrite guy again. Is there anyone who would be willing to provide some off list assistance? I just want to run a configuration by someone who knows more about this than I do and see if I am doing it right. Thanks again, Jeff Jones

Re: [OT] mod_rewrite

2000-07-20 Thread Jeff Jones
Unfortuantely, that is the same doc that is at apache's site. Thanks anyways though. On Fri, 21 Jul 2000, Kenneth Lee wrote: > http://www.engelschall.com/pw/apache/rewriteguide/ > > Jeff Jones wrote: > > > > I know this is off the topic of modperl but if anyone >

[OT] mod_rewrite

2000-07-20 Thread Jeff Jones
. Thanks, Jeff Jones

RE: Help needed for using Apache::DBI

2000-07-18 Thread Jeff Beard
Perhaps sending your startup.pl might help. Then only time I had problems with Apache::DBI, I loaded Apache.pm in a BEGIN{} block then everything else after and outside the block in my startup.pl. That was to deal with an error when Apache::DBI was loaded. --Jeff At 10:28 AM 7/18/00 +0530

Re: Segmentation Fault [was: The Eagle has Landed!]

2000-07-15 Thread jeff
eshRestart On > > > SetHandler perl-script > PerlHandler Apache::Hello > > > --- > > and startup.pl looks like this: > --- > #!/usr/local/bin/perl > > print "\n\tstartup.pl is attempting to modify the include path...\n\n"; > > BEGIN { > use Apache(); > use lib Apache->server_root_relative('lib/perl'); > } > > use Apache::Registry > use Apache::Constants > use CGI qw(-compile :all); > use CGI::Carp; > > 1; > -- -- Jeff Saenz [EMAIL PROTECTED]

Re: Script that stays on the same page

2000-07-09 Thread jeff
x27;smart selectors'... every time you select a menu > option, the number of items 'found' by the /server/ scripts, based on > the users' new parameters, pop up into a text box. very slick. > > -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- > Their is five errers in this sentance. -- Jeff Saenz [EMAIL PROTECTED]

FreeBSD: semwai state Help..

2000-06-27 Thread Jeff Gleixner
imit has already been modified.) Not swapping, not heavily loaded.. Roughly only 30 connections to any specific machine at one time. Has anyone seen this or better yet what's the cause or some suggested things to look at or fix? Thanks -- Jeff Gleixner Steven Wright Saying of the moment:

Re: ErrorDocument, logging and error-notes question

2000-06-26 Thread Jeff Macdonald
Ooops, sorry, that was suppose to go someone, not the list. Jeff Macdonald wrote: > > Paul, > Below is an email I sent to the mod_perl list. It seems that the lastest > version of mod_perl does indeed do this correctly. I was wondering since > you have the latest mod_perl/apa

ErrorDocument, logging and error-notes question

2000-06-26 Thread Jeff Macdonald
Paul, Below is an email I sent to the mod_perl list. It seems that the lastest version of mod_perl does indeed do this correctly. I was wondering since you have the latest mod_perl/apache/perl, could you try this out? If you don't have time, that's ok, as I will be compiling all the latest stuff t

Re: ErrorDocument, logging and error-notes question

2000-06-23 Thread Jeff Macdonald
Embedded Perl version 5.00503 for Stronghold/2.4.2 Apache/1.3.6 C2NetEU/2412 (Unix) mod_perl/1.21 Tom Mornini wrote: > > On Thu, 22 Jun 2000, Jeff Macdonald wrote: > > > My thinking is that $error would contain the error recorded in the > > error_log file. > >

ErrorDocument, logging and error-notes question

2000-06-22 Thread Jeff Macdonald
Hi, I found this interesting tidbit from the Eagle book on page 460: ... In addition, the message will be saved in the request's notes table, under a key named error-notes. ... And on page 454: ... For example, the logging API saves error messages under a key named error-notes, wh

Enough about etoys!

2000-06-21 Thread Jeff Gleixner
Ed Phillips wrote: > > It is interesting and and somewhat ironic that the Engineering > dep at eToys [...] >Paul Singh wrote: Enough already! Please stop posting non-mod_perl related drivel to this list! It is neither ironic nor interesting and it's not why people have signed-up for this list.

RE: [ANNOUNCE] HTML::StickyForms 0.01

2000-06-15 Thread Jeff Stuart
ng for but if there's no description of what it does I may not know that. :) -- Jeff (FurBall) WebOverdrive Newbie Tech Board http://www.topniche.com/tech/ [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 15, 2000 9:5

problem with apache-1.3.12, perl-5.6, and mod-perl-1.22 DSO

2000-06-09 Thread Jeff Garner
hi folks, i'm having what i'm sure is a simple problem. when i build mod_perl for use with dso, apache will start and then end. a truss doesn't indicate any easily identified problems. any help would be appreciated. jeff garner

Re: [performance/benchmark] printing techniques

2000-06-07 Thread Jeff Norman
Frequently, it's hard to build up an entire output segment without code in-between the different additions to the output. I guess you could call this the "append, append, append... output" technique. I think it would be an interesting addition to the benchmark: sub gather_print{ my $b

RE: Bugs 5.6.0 modperl use?

2000-05-25 Thread Jeff Stuart
Ok, follow up question if I may. :) Are any of you using it with DBI and DBD::mysql? I see on the Mason list that people are using it with HTML::Mason so that module is safe. :) Looks like I'm gonna have to pull out that old Linux box and do a test on it. :) -- Jeff (FurBall) WebOver

RE: Bugs 5.6.0 modperl use?

2000-05-25 Thread Jeff Stuart
That's a GOOD question. Is there anyone at the moment using perl 5.6.0 in production? Is it ready for production yet? -- Jeff (FurBall) WebOverdrive Newbie Tech Board http://www.topniche.com/tech/ [EMAIL PROTECTED] -Original Message- From: Jeffrey W. Baker [mailto:[EMAIL PROT

Re: Header Sending Bug?

2000-05-14 Thread Jeff Beard
I don't see a problem with this but maybe I'm missing your point. :) If PerlSendHeader is set to "On", you don't have to send a header in your program. If you want to retain control of when the header is sent, set PerlSendHeader to "Off" and do it yours

Re: Apache::DBI->connect_on_init in BEGIN?

2000-05-14 Thread Jeff Beard
I guess I don't know enough about your specific case. :) On the systems I work on, I use "PerlRequire startup.pl" prior to loading anything else so that I can use the connection in subsequent code. Seems to work out fine for what I'm doing. --Jeff At 05:30 PM 5/14/00,

Re: Apache::DBI->connect_on_init in BEGIN?

2000-05-14 Thread Jeff Beard
Checkout the sample startup.pl that comes with Apache::DBI. --Jeff At 05:08 PM 5/14/00, svante sörmark wrote: >hi all, > >what i'd like to do is "pre-initialize" my DBI connections from whithin >my PerlHandler's BEGIN block. > >something like this: >

Re: Best approach for loading several modules

2000-05-11 Thread Jeff Beard
Checkout Apache::RegistryLoader. --Jeff At 02:23 PM 5/11/00, Martin Wood wrote: >Hi there, > >Our Apache::Registry CGIs need access to a dozen or so core modules - is >there an elegant solution to loading these without seeing a dozen or so use >statements at the head of the s

Re: growing processes

2000-05-09 Thread Jeff Beard
ing it. Just remember that you can use Apache::DBI to fire up a connection to the dB when Apache starts. Any time you make a DBI->connect() call, Apache::DBI will intercede and use it's cached handle. Beyond these points what's here seems reasonable. HTH. --Jeff >#!/usr/bin/perl

Re: growing processes

2000-05-08 Thread Jeff Beard
Not strange, a memory leak. You've got some bad code. If you have a program that you've been twiddling with recently, that would be the place to start looking. --Jeff At 09:34 AM 5/8/00, Wim Kerkhoff wrote: >I'm running into something kind of strange... > >On a fre

Re: apache1.3.12, modperl1.23, perl5.6, ApacheJServ1.1, OpenSSL0.9.4, modssl

2000-05-08 Thread Jeff . Bulley
CN=Jeff [EMAIL PROTECTED] on 05/08/2000 03:43:00 PM Sent by: [EMAIL PROTECTED] Sent From the mail file of: Jeff Bulley To: [EMAIL PROTECTED] cc: Subject: Re: apache1.3.12, modperl1.23, perl5.6, ApacheJServ1.1, OpenSSL0.9.4, modssl >Hmm. >We've had ver

Re: apache1.3.12, modperl1.23, perl5.6, ApacheJServ1.1, OpenSSL0.9.4, modssl

2000-05-08 Thread Jeff . Bulley
a flame war, just reporting it as I see it. IMHO Solaris(2.6)Perl(5.6) just isn't fully cooked yet. Jeff CN=Jeff [EMAIL PROTECTED]> on 05/08/2000 06:48:12 AM Sent by: Thomas Apsel <[EMAIL PROTECTED]> Sent From the mail file of: Jeff Bulley To: "'[EM

RE: Most nonesense I've ever read about mod_perl

2000-05-07 Thread Jeff Stuart
this be taught! I'm not sure if it's being taught now in school but in my day (GOD I sound old :)) (1987-1991) it wasn't. -- Jeff (FurBall) WebOverdrive Newbie Tech Board http://www.topniche.com/tech/ [EMAIL PROTECTED]

Re: perl.conf file

2000-05-05 Thread Jeff Beard
If you'll forgive a stupid question, did you include the perl.conf in the httpd.conf: Include perl.conf I've also done this: Include perl.conf --Jeff At 06:39 PM 5/5/00, James Xie wrote: >I was trying the "Hello World" sample provided by Lincoln &

Re: Apache 1.3.12+mod_perl + mod_ssl + FP extensions

2000-05-05 Thread Jeff Beard
The last time I included fp extensions (a while ago) I believe I applied that patch last. Not sure that it actually matters, though. --Jeff At 06:52 PM 5/5/00, Rafael Caceres wrote: >Hi, > >I'm getting ready to setup the following combination of packages for our >webserver: &g

[OT?] Problems making Net::Daemon on Solaris 2.6

2000-05-05 Thread Jeff . Bulley
Failed 5/5 tests, 0.00% okay t/forkm.Unexpected return from Bind(). Server died: Your vendor has not defined the Sys::Syslog macro _PATH_LOG at /usr/local/lib/perl5/5.6.0/sun4-solaris/Sys/Syslog.pm line 277. Client: Error Cannot connect: Connection refused at t/forkm.t line 64. Thanks in advance, Jeff Bulley

Re: Apache.pm failed to LOAD!

2000-05-03 Thread Jeff Beard
Did it pass 'make test'? And, not meaning to insult, did you run 'make install' in the mod_perl directory? --Jeff At 07:01 PM 5/3/00, Wang, Pin-Chieh wrote: >Hi, >I build the apache1.3.12 using mod_perl 1.23 on Solaris 2.6 machine, >everything looks fine and ins

Re: Can't use Apache::exit() in command-line scripts

2000-05-03 Thread Jeff Beard
You should post the code in question. Your message isn't very clear but if I was to guess, you're trying to run a regular ol' command line Perl script under Apache::Registry which has more than a few caveats. --Jeff At 04:00 PM 5/3/00, Franco Finstad wrote: >I have a large

Re: where to find info on the Apache request object

2000-04-30 Thread Jeff Beard
Or read chapter 9 in the Eagle book. --Jeff At 10:43 AM 4/30/00, Tobias Hoellrich wrote: >At 01:34 PM 4/30/00 -0400, Sam Carleton wrote: > >I am learning perl/mod_perl right now and have some questions. I would > >like to see all the functions that I can call on the Apache re

Re: Install probs.

2000-04-28 Thread Jeff Beard
Try this when you configure Apache: --activate-module=src/modules/perl/libperl.a But before that, read the mod_perl install doc INSTALL.apaci. --Jeff At 10:02 AM 4/28/00, Dominic Blythe wrote: >please reply to [EMAIL PROTECTED] as i'm not on the list... > >on Corel Linux (w

Re: newbie help installation problems modperl/apache

2000-04-26 Thread Jeff Beard
At 11:07 PM 4/25/00, [EMAIL PROTECTED] wrote: > On the various lists to which I tried to get help, the silence >was deafening. Probably 'cause I was the only one that didn't see that your work supports pornographers. Oh well. --Jeff Jeff Beard ___

Re: adding HTTP Headers

2000-04-24 Thread Jeff Beard
http://www.w3.org/TR/html4/struct/global.html#edef-META Checkout the subheading on META and HTTP headers. --Jeff At 05:18 PM 4/24/00, Jaime Teng wrote: >Hi, > >As I am developing WEB Applications with Apache and modperl, >it came to my attention that there are some pages that I

Re: Implementing security in CGI

2000-04-20 Thread Jeff Beard
nce standpoint, this would be preferable. You just have to be more disciplined in the way you code. And yes, Apache::Session works under regular CGI. --Jeff Jeff Beard ___ Web:www.cyberxape.com Phone: 303.443.9339 Location: Boulder, CO, USA

Re: Implementing security in CGI

2000-04-20 Thread Jeff Beard
gt; >Of course, on Apache it may be easier by using mod_rewrite to manipulate >the URL itself in cool ways. And then there's this cool technology called mod_perl that one could use to see if a cookie can be set and if not, then start twiddling PATH_INFO. :) --Jeff Jeff Beard

Re: Implementing security in CGI

2000-04-19 Thread Jeff Beard
e with the time value and periodically cull stale sessions on the server. --Jeff At 05:21 PM 4/19/00, Differentiated Software Solutions Pvt. Ltd. wrote: >Hi, > >My question is much more basic than that. I wanted to validate my design >ideas on a programmatic security. >I would l

RE: Modperl/Apache deficiencies... Memory usage.

2000-04-17 Thread Jeff Stuart
then again, I've pared down my httpd config so that I don't have things in that I don't need. I'm just curious as to what he has in there. -- Jeff Stuart [EMAIL PROTECTED] -Original Message- From: Gunther Birznieks [mailto:[EMAIL PROTECTED]] Sent: Tuesday, Apr

RE: Modperl/Apache deficiencies... Memory usage.

2000-04-17 Thread Jeff Stuart
d_perl, it takes up around 500 to 800 KB. Now on another server my mod_perl server uses about 13 Mb per but it's my devel machine so I've got a lot of stuff loaded that I wouldn't have in a production server. -- Jeff Stuart [EMAIL PROTECTED] -Original Message- From: [EMAIL

Re: Apache::Session beginner

2000-04-16 Thread Jeff Beard
Besides the pod docs there's another usage description in the guide: http://perl.apache.org/guide/modules.html#Apache_Session_Maintain_session If you're looking to use Apache::Session::DBI, then you'll need to run down the docs for you're database of choice. Cheers, Jeff

vcpan (Virtual CPAN) ?

2000-04-12 Thread Jeff . Bulley
This site looks on top of it! I noticed they were using a wrapper called vcpan for access to perls MCPAN. I was hoping this was something that was in the CPAN libraries but it's not. Has anyone seen or written such an animal? Jeff Bulley "I am the chicken, I am the egg, I am the wal

IPC::Semaphore permission denied question

2000-04-10 Thread Jeff Gleixner
;{sem}) { $self->{sem} = new IPC::Semaphore($self->{sem_key}, $self->{nsems}, IPC_CREAT | S_IRWXU) || die "$!"; # this is line 46 } I've changed the ownership of every file that was previously owned by nobody to www. Just wondering what I need

Re: [RFC] Exceptions addition for the guide.

2000-04-08 Thread Jeff Beard
Also, checkout Graham Barr's Error.pm for an OO styled "try, throw, catch" model. Really nice for a complete OO Perl design, IMHO. --Jeff The one I use is a customized version but it's basically the OO "try, throw, catch" model that I've seen in oth

RE: [slightly OT] Problem with cookies

2000-04-08 Thread Jeff Stuart
al opinion is that I go back only 2 versions. If someone is still (again IMHO) stupid enough to continue to use an old version of a browser when they can download the latest versions, then whatever they get, they deserve. -- Jeff Stuart [EMAIL PROTECTED] -Original Message- From: Jim Winst

Re: [OT][General Programming] Key Generator sub

2000-04-06 Thread Jeff . Bulley
Well as another self-made programmer the idea occurs to me to grab the modules Crypt::DES or Crypt::IDEA from CPAN might provide either a fix, or at least insite into possible resolutions. Jeff CN=Jeff [EMAIL PROTECTED]> on 04/06/2000 03:02:38 PM Sent by: "Martin A. Langhoff&

Re: [RFC] holding a mod_perl conference

2000-04-05 Thread Jeff D. 'Spud (Zeppelin)' Almeida
off to "Ask Tim" rather than posting it here... but in the context of how to organize a mod_perl event, it's a valid consideration. > Ok, I'm going to shut up now unless people actually ask me a question. > I'm sure you all think I'm some kind of O'Reilly stooge. Not at all. I should hope that people wouldn't think of you as an "O'Reilly stooge" any more than they would think of me as a "McGraw-Hill shill". :) Jeff D. "Spud (Zeppelin)" Almeida Windsor, CT [EMAIL PROTECTED]

Re: [RFC] holding a mod_perl conference

2000-04-05 Thread Jeff D. 'Spud (Zeppelin)' Almeida
tel. If ever there was something calling for the "KISS" mantra, it was this con. :) Would we appreciate logistial support from O'Reilly? Of course. Do we want this con to be large enough to have to worry about revenue models? Not particularly. **

RE: [RFC] holding a mod_perl conference

2000-04-05 Thread Jeff D. 'Spud (Zeppelin)' Almeida
experience (granted, this was eight years ago), I can say that the Hyatt Regency Bayshore, while a reasonably expensive facility, has beautiful conference facilities and is *VERY* convenient to SFO (as if SFO was particularly convenient in-and-of-itself?). **

Re: dumb beginner question

2000-04-04 Thread Jeff Beard
http://perl.apache.org/guide/performance.html#Persistent_DB_Connections The answers to most beginner questions are in the guide as well. --Jeff At 05:28 PM 4/4/00, Adam Gotheridge wrote: >I have been using zope for a while and while it is cool, I really like the >speed/power/ease-of-

Re: [Offtopic!] [RFC] holding a mod_perl conference

2000-04-03 Thread Jeff D. 'Spud (Zeppelin)' Almeida
from customs. Jeff D. "Spud (Zeppelin)" Almeida Windsor, CT [EMAIL PROTECTED]

Re: HTTP_USER_AGENT

2000-04-01 Thread Jeff D. 'Spud (Zeppelin)' Almeida
y easily, but I still wouldn't trust it. Incidentally, if you either use the (deprecated) Agent_Log directive or used the "combined" logfile format, you can extract a list of HTTP_USER_AGENT strings from your own server logs :) And now, you know not to be alarmed when you find your s

How do I modify the URI for standard access log?

2000-03-31 Thread Jeff Gleixner
ndler perl-script PerlHandler HTML::Mason PerlRequire /path/to/Apache/addToURI.pm PerlLogHandler Apache::addToURI Thanks -- Jeff Gleixner Seinfeldism of the moment : Can you be a closet claustrophobic?

Re: [RFC] holding a mod_perl conference

2000-03-31 Thread Jeff D. 'Spud (Zeppelin)' Almeida
physical act of attending the conference has little transfer value. Jeff D. "Spud (Zeppelin)" Almeida Windsor, CT [EMAIL PROTECTED]

RE: Perl 5.6 and mod_perl

2000-03-31 Thread Jeff Stuart
Well, as I mentioned to someone else, I've been off the list for a while. It would have been nice if it there were something similar to what the Apache and Perl sites do. IE current version is X.XX. That way, one can know at a glance what the current stable version of the software is. --

Re: [RFC] holding a mod_perl conference

2000-03-31 Thread Jeff . Bulley
of a cigarette quit might have influenced my tone. maybe I was a tad impulsive... hrmm. Sorry -- just a tad edgy today. Jeff<-- Backing away from the keyboard slowly hands above my head. . . > > CN=Jeff [EMAIL PROTECTED]> on 03/31/2000 10:30:02 AM > > Sent by: Gunther Birznieks <

Re: [RFC] holding a mod_perl conference

2000-03-31 Thread Jeff . Bulley
ldn't attend a mod_perl conference. There are plenty of conferences for that. I'd rather eat PB&J and develop open source while drawing unemployment, than to perfect my whoredom. IM(Inconsequential)HO, Jeff CN=Jeff [EMAIL PROTECTED]> on 03/31/2000 10:30:02 AM Sent by: Gun

Re: [RFC] holding a mod_perl conference

2000-03-31 Thread Jeff D. 'Spud (Zeppelin)' Almeida
ache::PerlConference ?? :) **** Jeff D. "Spud (Zeppelin)" Almeida Windsor, CT [EMAIL PROTECTED]

Re: [RFC] holding a mod_perl conference

2000-03-31 Thread Jeff D. 'Spud (Zeppelin)' Almeida
all attendance down, especially among rank-and-file developers. :) **** Jeff D. "Spud (Zeppelin)" Almeida Windsor, CT [EMAIL PROTECTED]

[OT] (just a bit) CPAN upgrade auto installation of 5.6

2000-03-31 Thread Jeff . Bulley
Just want to gripe and warn others about the fact that if you elect to upgrade CPAN.pm it also installs perl 5.6 Don't go and get coffee if you MCPAN the upgrade! grrr!

RE: Perl 5.6 and mod_perl

2000-03-31 Thread Jeff Stuart
ith it and see what's up. -- Jeff Stuart [EMAIL PROTECTED] -Original Message- From: Rodney Broom (OE) [mailto:[EMAIL PROTECTED]] Sent: Friday, March 31, 2000 1:47 AM To: Modperl Mailing List Subject: Re: Perl 5.6 and mod_perl - Original Message ----- From: "Jeff Stuart" &l

Perl 5.6 and mod_perl

2000-03-30 Thread Jeff Stuart
Has anyone tried to use mod_perl with perl 5.6 yet? If so, how did it go? Oh, are we still at 1.21 for mod_perl? If so, when's the next release? I hear that there are some important memory leak fixes in there. -- Jeff Stuart [EMAIL PROTECTED]

Re: Installation

2000-03-30 Thread Jeff Beard
./httpd -l will list all the mods built in. --Jeff At 08:00 PM 3/30/00, Annette wrote: >Thanks for such a quick response. I have been in the mod_perl guide before >asking the question. I learned from other mailing lists to always look in >as many documents to solve your problem befor

Re: www.modperl.com

2000-01-30 Thread Jeff Beard
7;d be the best. :) Cheers, Jeff At 09:15 PM 1/30/00 +, Gunther Birznieks wrote: >The problem with requests such as these is ... well... why isn't this stuff >going into the main mod_perl guide? It seems to me that if www.modperl.com is >focused around the book, then let it be. But I

Re: APACI_ARGS=' ... '

2000-01-30 Thread Jeff Beard
If you're trying for a static build, I use the method described in INSTALL.apaci under the heading "The flexible way". Just do "perldoc INSTALL.apaci" Cheers, Jeff At 02:44 PM 1/30/00 -0500, Bill Jones wrote: >Help! > >I tried many variations on: > >p

Re: make test fails

2000-01-30 Thread Jeff Beard
sting this to the list so it's get archived in case others miss this detail as well. Thanks again. --Jeff At 09:07 AM 1/28/00 +, G.W. Haywood wrote: >Hi there, > >On Thu, 27 Jan 2000, Jeff Beard wrote: > > > running make test fails and produces the errors listed a

Re: question, blessing objects, modifying them

2000-01-27 Thread Jeff Beard
Check out "perldoc perltoot" under Class interface. Cheers, Jeff At 01:43 PM 1/27/00 -0800, Etienne Pelaprat wrote: >hi all, > >i'm starting out doing some Object Oriented programming with mod_perl >and I define one object like this: > >sub new { >

make test fails

2000-01-27 Thread Jeff Beard
tools (ld, nm, ar, etc.) Perl 5.005_03 apache 1.3.11 mod_perl 1.21 Other "3rd party" mods I'm including: php 4.0b3 mod_ssl 2.5.0-1.3.11 Appended are perl -V output and the errors from make test Thanks for your help. --Jeff Perl Version: Summary of my perl5 (5.0 patchlevel 5 su

RE: oracle : The lowdown

2000-01-11 Thread Jeff Warner
valid considerations but for my money, I'll stick with Oracle. Jeff >>>>>>>>>>>>>>>>>> Original Message <<<<<<<<<<<<<<<<<< On 1/11/00, 3:54:18 PM, "David Harris" <

Re: oracle : The lowdown

2000-01-11 Thread Jeff Groves
Take a look at Frontbase www.frontbase.com From what I can see, it does everything that Oracle or Sybase can do and is much more reasonable in price. They're a small company and the support has been excellent. We've outgrown MySQL and are planning to use Frontbase to replace it. At 01:08 PM

Re: oracle : The lowdown

2000-01-11 Thread Jeff Warner
details of my project. Oracle is overkill for smaller task but you don't have to worry about outgrowing it. Jeff >>>>>>>>>>>>>>>>>> Original Message <<<<<<<<<<<<<<<<<< On 1/11/00, 1

mod_perl as a DSO and creating a developer environment questions

1999-12-28 Thread Jeff Macdonald
.apache.org/guide (good stuff), and the only difference I have is that each developer has his own perl too So, how are development shops configuring themselves, and what issues have you come across and how did you solve them? And what's the latest word on mod_perl as a DSO with th

Re: Intercepting CGI.pm Header

1999-12-06 Thread Jeff Beard
Do you have 'PerlSendHeader On' in your httpd.conf? --Jeff At 02:21 PM 12/6/99 +0100, Martin Holz wrote: >I am trying to catch the output of a CGI >script and put the body of the generated >HTML page in a template. > >Works fine unless the CGI script calls CGI::head

Re: DBI/Sessions/Embperl

1999-11-27 Thread Jeff Beard
How 'bout this: http://perl.apache.org/guide/performance.html#Persistent_DB_Connections --Jeff At 04:39 PM 11/27/99 -0500, Aaron Johnson wrote: >I am using HTML::Embperl in conjunction with Apache::Session to control >session information and create pages. I have started to crea

Re: HTMLEmbperl - manually setting %fdat during runtime...

1999-11-24 Thread Jeff Sheffield
I do the following http://172.17.30.38/Nactel/common/error.epl?application_id=[+ $fdat{'application_id'} +] then "error.epl will have the $fdat{'application_id'} = 'some value'; Jeff On Wed, Nov 24, 1999 at 09:41:08AM -0500, Erich L. Markert wrote: &

RE: syntax error parsing httpd.conf

1999-10-04 Thread Jeff Beard
rnered the process that was changing the perms on it, I had to remove it and mknod it again. --Jeff Jeff Beard Web Systems Engineer World Wide Web Associates Web: http://wwwa.com Phone: 303.545.2399 :-Original Message- :From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On :Behalf Of Dmitr

Re: using function prototypes w/ mod_perl and Apache::Registry

1999-01-16 Thread Jeff Elo
Tom Christiansen wrote: > > On Thu, 18 Nov 1999 12:12:16 -0800 > Jeff Elo <[EMAIL PROTECTED]> wrote > using Mozilla 4.7 [en] (X11; I; Linux 2.2.5-15 i686) > in <[EMAIL PROTECTED]>: > > >I am currently helping some friends convert their si

<    1   2   3   >