Re: Working directory of script is "/" !

2003-08-07 Thread Ed Grimm
n chdir then they can use Modperl::Registry > and the code will work everywhere. What's wrong with having the chdir code check for the threaded mpm, and, if it detects it, generate a warning that describes the situation? Admittedly, I have a difficult time understanding someone who tests under one mpm, and then releases under another mpm without testing. I realize there are people who do this sort of thing; I'm merely stating that I have difficulty understanding them. Ed

Re: [error] Can't locate CGI.pm in @INC

2003-05-30 Thread Ed
On Thu, May 29, 2003 at 04:12:51PM +1000, Stas Bekman wrote: > Brown, Jeffrey wrote: > >Problem solved! > > > >You all are a fantastic resource to newbies! > > > >Jeff > > > >-Original Message- > >From: Ed [mailto:[EMAIL PROTECTED] &g

Re: [error] Can't locate CGI.pm in @INC

2003-05-29 Thread Ed
On Wed, May 28, 2003 at 09:11:06PM -0700, Brown, Jeffrey wrote: > Here are the results from the log file: > > [Wed May 28 20:50:21 2003] [error] No such file or directory at > /htdocs/perl/first.pl line 6 during global destruction. openbsd's httpd is chrooted. Ed.

[Http-webtest-general] [ANNOUNCE] HTTP-WebTest-Plugin-TagAttTest-1.00

2003-03-14 Thread Ed Fancher
age=_javascript_", url   => $webpage, tag_forbid => [{tag=>"script",attr=>"language",attr_text=>"_javascript_"}]}) ; my [EMAIL PROTECTED];       my $params = {     plugins => ["::FileRequest","HTTP::WebTest::Plugin::TagAttTest"] };my $webtest= HTTP::WebTest->new;#4check_webtest(webtest =>$webtest, tests=>  $tests,opts=>$params, check_file=>'t/test.out/1.out');#$webtest->run_tests(  $tests,$params);   Ed FancherEthercube Solutionshttp://www.ethercube.netPHP, Perl, MySQL, _javascript_ solutions.

Re: Determining when a cached item is out of date

2003-01-16 Thread Ed
the cache on its own disk spindle, ie. not on the same physical disk as your sql database etc. Makes a big difference ... you can see w/ vmstat, systat etc. The only trouble is cleaning up the ever growing stale cache. So, I use this simple script in my /etc/daily.local file, or a guy could us

Re: More Segfaultage - FreeBSD, building apache, ssl, mod_perl from ports

2002-11-12 Thread Ed
d it in one go. > > How??? > > I'm sure that the BSD users amoungst you have all done it 101 times. > > Help please? Attached is a port i use for OpenBSD. (It needs cleaning, but works for me) There are a bunch of "customizations" but some key points to th

Re: Random broken images when generating dynamic images

2002-10-23 Thread Ed
. Be sure all the required http/1.1 components/headers are sent to maintain a keep-alive. I'm interested in what you finally work out. thanks, Ed

Re: Random broken images when generating dynamic images

2002-10-23 Thread Ed
. Be sure all the required http/1.1 components/headers are sent to maintain a keep-alive. I'm interested in what you finally work out. thanks, Ed

Re: code evaluation in regexp failing intermittantly

2002-10-23 Thread Ed
On Wed, Oct 23, 2002 at 02:24:48PM -0500, Rodney Hampton wrote: > > Can any of you gurus please help! > A wise guru would help by directing you to: http://perl.apache.org/docs/tutorials/tmpl/comparison/comparison.html

Re: repost: [mp1.0] recurring segfaults on mod_perl-1.27/apache-1.3.26

2002-10-18 Thread Ed
On Fri, Oct 18, 2002 at 03:54:22PM -0400, Perrin Harkins wrote: > Ed wrote: > >Could be bad hardware. Search google for Signal 11. > > That's actually pretty rare. Segfaults are usually just a result of > memory-handling bugs in C programs. I saw the problem when s

Re: repost: [mp1.0] recurring segfaults on mod_perl-1.27/apache-1.3.26

2002-10-18 Thread Ed
Daniel, Could be bad hardware. Search google for Signal 11. Probably your memory (usual cause I've seen). good luck. Ed On Tue, Oct 08, 2002 at 09:46:16AM -0700, [EMAIL PROTECTED] wrote: > Sorry for the repost, but no responses so far, and I need some help with > this one. >

Re: Apache Hello World Benchmarks Updated

2002-10-14 Thread Ed
ipOutput. So, I reran hello/bench.pl w/ AxGzipOutput On and sped axkit up quite a bit. attached are some diffs and a couple of 1 sec bench.pl runs. Would be interesting to see how axkit compares now? Thanks, Ed On Mon, Oct 14, 2002 at 12:26:06AM -0700, Josh Chamas wrote: > Hey, > >

RE: Compiled-in but not recognized

2002-08-11 Thread Ed Grimm
suggesting you might have multiple httpd binaries on your system, and was suggesting that you verify you're running the binary you think you're running. It's really annoying when you're trying to debug a program, and the program you're running is not the one you're add

Re: PerlChildInitHandler doesn't work inside VirtualHost?

2002-08-10 Thread Ed Grimm
ual host... It would fail to work in all cases if Apache does not recognize what triggered the child until after child init. Looking over pages 59 through 61, 72 and 73, this appears to me to be the case. Yes, it does explicitly say that it's ok in virtual host blocks, but it doesn't say it works. Ed

Re: mod perl load average too high

2002-08-08 Thread Ed Grimm
ch at what point the load suddenly starts rising, and check what pages were accessed around that time. They're where you should start looking. Note that you should probably focus on the access and error log lines that correspond with processes that are using excessive amounts of cpu. Ed On

Re: E-commerce payment systems for apache/mod_perl

2002-07-03 Thread Ed
wide (1-2 days continential us @ $6) (3-4 days door2door to pakistan from indianapolis @ $21) ... much, much cheaper than even the cheapest ups-residential-ground - ups has well developed xml API's, dhl dosn't Ed

Re: [Templates] Re: Separating Aspects (Re: separating C from V in MVC)

2002-06-07 Thread Ed
ript, ruby, mozilla, ieexplorer ... kde apps, gnome apps ... etc Imagine having your templates and data supported and interoperable ... Aren't we trying to rid the world of proprietary (only works here) things? Ed (an axkit lover)

Re: [RFC] Dynamic image generator handler

2002-05-10 Thread Ed
and use it as the filename and the Cache::Cache key. The cache is easily invalidated if the source image file failes a -e test. I also use cron to delete stale image files. The generated now static image is redirected-to or referenced in the html. I found that it is important to complete the processing of the images before the referencing html document gets served, ... rather than having the html document initiate dynamic imbeded links to create the image. Letting apache serve images as static image-files has proved rock solid for me ... (note keep-alives). There is nothing worse than to pull a page and have to wait for each of the images to show up. Browsers, proxies and users are all real pains to deal w/ when the uri has a query string. Digest's are ugly but they play much better w/ everybody. 014d1c89fc3da6e15e0069000dfa381e44239af71021057594.png Ed

Re: [RFC] Dynamic image generator handler

2002-05-10 Thread Ed
ger, imagemagic, ... There are may good reasons to be able to 'just drop in' a driver ... just look at why the unified interface 'DBI' was developed for RDBM's . Ed

Re: [announce] mod_perl-1.99_01

2002-04-10 Thread Ed Grimm
xit code, and reported 'done.' or 'failed.' as appropriate. Admittedly, I wouldn't have minded too much, except that I'd gotten the latter answer. Ed

Re: proxy front to modperl back with 1.3.24

2002-04-06 Thread Ed
FYI, There is a patch this morning from the mod_proxy maintainer. http://marc.theaimsgroup.com/?l=apache-httpd-dev&m=101810478231242&w=2 Ed On Fri, Apr 05, 2002 at 02:33:35PM -0800, ___cliff rayman___ wrote: > i had trouble using a proxy front end to both > a mod_perl and mo

Re: Apache::DBI or What ?

2002-03-25 Thread Ed Grimm
the security in the DB instead of coding ones own - more eyes have looked over it. We're talking about a fairly small unit of time; it may very well be better to throw money if you are near your performance limit. Ed

Re: Performace...

2002-03-24 Thread Ed Grimm
ly obviously web overload, and two the week after (those two being very obviously associated with other services the boxes are running.) Ed

Re: 'Pinning' the root apache process in memory with mlockall

2002-03-22 Thread Ed Grimm
the > C<$CHECK_EVERY_N_REQUESTS> is set to one). This is a very bad > situation which will eventually lead to a state where the system won't > respond at all, as it'll be heavily engaged in swapping process. Yes, this is why we want to lock the memory. Ed

Re: Berkeley DB 4.0.14 not releasing lockers under mod_perl

2002-03-21 Thread Ed Grimm
Does shutting down apache free up your locks? (As an aside, I'm not sure I'll ever get over undef being proper closing of a database connection; it seems so synonomous to free([23]). I expect something like $db->db_close() or something.) Ed On Thu, 21 Mar 2002, Dan Wilga wrote:

RE: loss of shared memory in parent httpd

2002-03-16 Thread Ed Grimm
hat was swapped out to be swapped back in. It will not fix those processes that have been sired after the shared memory loss, as of Linux 2.2.15 and Solaris 2.6. (I have not checked since then for behavior in this regard, nor have I checked on other OSes.) Ed On Thu, 14 Mar 2002, Bill Marrs wrote

Re: Image Magick Alternatives?

2002-02-18 Thread Ed
o would be > willing to help me install Perl Magick properly? Imager can do what you want. many formats, antialias, freetype, etc. Ed

Re: [OT] RE: modperl growth

2002-02-05 Thread Ed Grimm
ults. I agree; while I frequently leave unimportant considerations alone (note my main docroot above), I tend to have very poor luck with the "works with the typical case out of the box, and then provides hooks which change with every bloo^W^W^W^W^Wfor installing it in custom places". I won't go into speculations why. Ed

Re: performance coding project? (was: Re: When to cache)

2002-01-26 Thread Ed Grimm
chedule, before the release) to improve speed after a release. It's quite rare, though, and I've never seen it for a mod_perl project. Ed

Re: UI Regression Testing

2002-01-25 Thread Ed Grimm
and therefore refering to functional testing. (At least, this is the way I distinguish between them.) Admittedly, we are a bit lacking in our rules, last I checked. Ed

Re: Single login/sign-on for different web apps?

2002-01-20 Thread Ed Grimm
like the other would if you didn't enter a pin. I know of several companies that use these; they tend to work fairly well. (I had one break on me, but I gave it a lot of abuse first; it lasted almost half of its battery span in spite of not being taken care of.) Ed

Re: Single login/sign-on for different web apps?

2002-01-20 Thread Ed Grimm
the same login between servers run by the same group, but beyond that, security concerns outweigh user convinience.) Ed > Aaron Johnson wrote: > >> We are working on/with a similar system right now. >> >> We have an application that is written in Perl, but the people >&

Re: Single login/sign-on for different web apps?

2002-01-20 Thread Ed Grimm
RSYNC_RSH=ssh). However, that's still a bit on the unsecure side, unless you really do trust everyone who is running one of these web servers. Ed On Wed, 16 Jan 2002, Medi Montaseri wrote: > I wonder if one could change the HTTP Server's behavior to process a > distributed version

RE: mod_perl beginners list

2002-01-20 Thread Ed Grimm
disagree. True programmers know no fear. True programmers know no fear of computers. However, any programmer who knows fear of RTFM would likely not post to any perl mailing list that didn't have beginner or newbie in the name, due to having experience with such lists before ever hearing about mod_perl. Count me as someone who would be interested in being on the list, though not necessarily very active. Ed

Re: Single login/sign-on for different web apps?

2002-01-20 Thread Ed Grimm
sfer money. > Of course, the best authentication system for banking I've seen is > from UBS. They send you a scratchlist of around 100 numbers. Every > time you login you use one of the numbers and cross it off. Very > slick. All I need to do is find where you left the list. Written passwords are not anywhere near as secure as memorized passwords, unless the person carrying them around is really conscious about security concerns. Ed

Re: load balancing on apache

2001-12-14 Thread ed phillips
IP's? Which are the more promising opensource projects in this area? It would be nice to use an open source solution, or at least be able to offer it as an option, and I'd like to track the progress of some of the more promising projects. Ed Ed

Re: Defeating mod_perl Persistence

2001-12-11 Thread ed phillips
n make your app wait for your SMTP server to send an email before you free it to handle the next request. This is analagous to using a proxy server to handle slowish clients. See the guide, archives. Ed

Re: Shutdown

2001-11-01 Thread ed phillips
"Khachaturov, Vassilii" wrote: > > Hi Matt, do you have any news on planned re-appearance of > current axkit docs and mailing list archives online? The net people > memory is short, if you don't come back noone will know what AxKit is :-( > Or did you abandon it in favor of smth better? > Just

Re: [OT] Off Topic?

2001-10-12 Thread ed phillips
Can you remember what the guide was like a couple of years ago? Put it up. Ed

[OT]Re: The DEFINITIVE answer to: How much should I charge?

2001-10-10 Thread ed phillips
el the need to justify, then you merely say, "I charge the market rate." No tenured radical would begrudge you. They know on what side their bread is buttered. ;-) ed

Re: [OT] Re: What hourly rate to charge for programming?

2001-10-03 Thread ed phillips
your rate with new clients, and that you try and see what your market will bear. Your target should be $100+ in the U.S. for basic consulting and more for mod_perl specific work, again if your market will bear it. Good Luck, Ed

Re: [ANNOUNCE] TicketMaster.com sponsors mod_perl development

2001-09-20 Thread ed phillips
"Aaron E. Ross" wrote: > > On Fri, Sep 21, 2001 at 02:01:31AM +0800, Gunther Birznieks wrote: > > "You can reach your goals. > > > > I'm living proof. > > > > beefcake. > > > > BEEFCAKE!!" > > > > -- Eric Cartman > > LOL! sounds like a great project stas! thanks ticketmaster! Yeah. Kudos to

Re: [ANNOUNCE] TicketMaster.com sponsors mod_perl development

2001-09-20 Thread ed phillips
Congratulations to Stas, mod_perl, and the guide. Excellent! Ed Stas Bekman wrote: > > If you remember back in the end of April, I've posted to the list an > unusual job seek request [1], where I was saying that I want some > company to sponsor me to work full tim

Re: mod_proxy and mod_perl in guide

2001-09-17 Thread ed phillips
Thanks Vivek, Andrei, use the front end to directly handle any binaries, static files, etc. I doubt they are generating of these on the fly. Vivek Khera wrote: > > > "AAV" == Andrei A Voropaev <[EMAIL PROTECTED]> writes: > > AAV> In our system we have to pass large PDF files thru mod_pe

Re: AxKit configuration question

2001-09-02 Thread Ed Loehr
Robin Berjon wrote: > > On Saturday 01 September 2001 08:02, Ed Loehr wrote: > > There's also a note (in AxKit 1.4 change log, I think) that says that > > problem is fixed in 1.4. Also, from 'perldoc AxKit': > > > >If you have a recent mod_p

AxKit.org/axkit.apache.org timing?

2001-09-01 Thread Ed Loehr
I recently read that AxKit was in the process of becoming an ASF xml project. Does anyone have a sense of the timing for when this might happen and when axkit.org/axkit.apache.org will return/arrive? Also, does anyone know of a mirror site for axkit.org? Regards, Ed Loehr

Re: AxKit configuration question

2001-08-31 Thread Ed Loehr
Randy Kobes wrote: > > On Fri, 31 Aug 2001, Ed Loehr wrote: > > > More data: there is no core file created, and the mere presence of this > > one line in my httpd.conf ... > > > > PerlModule AxKit > > > > ...with no other AxKit directives an

Re: AxKit configuration question

2001-08-31 Thread Ed Loehr
Ed Loehr wrote: > > I'm attempting to install AxKit 1.4 (and 10 or so other pre-requisite > modules) on my modperl/modssl server, and I'm trying to get the > ultra-basic AxKit manpage example to work ('perldoc AxKit'). > > The first sign of trouble has ari

AxKit configuration question

2001-08-31 Thread Ed Loehr
i386-linux/mod_perl.pm line 65535. Thanks in advance for any clues/pointers. Ed Loehr

Re: [ModPerl] missing POST args mystery

2001-07-10 Thread Ed Loehr
Ed Loehr wrote: > > > >I'm stumped ... > > >In a nutshell, my problem is that POSTed form key-value pairs are > > >intermittently not showing up in the request object inside my handler > > >subroutine. As I was puzzling over this, I saw this error m

[ModPerl] missing POST args mystery

2001-07-06 Thread Ed Loehr
to some of you. This is running Apache/1.3.19 (Unix) mod_perl/1.25 mod_ssl/2.8.3 OpenSSL/0.9.6a. Regards, Ed Loehr

Re: modperl/ASP and MVC design pattern

2001-04-25 Thread ed phillips
[EMAIL PROTECTED] wrote: > > Francesco, I believe that Ian was joking, hence the yikes before the name, > > so the above post is the documentation! > > > > Ed > > > > .. so the best environment for the MVC++ design pattern is parrot/mod_parrot :) > http:

Re: modperl/ASP and MVC design pattern

2001-04-24 Thread ed phillips
ing to these needs in my own engineering discussions > > as (yikes) MVC++ :) > > ... this is really interesting, can you point me to documentation about > "MVC++" > thanks > Francesco Francesco, I believe that Ian was joking, hence the yikes before the name, so the above post is the documentation! Ed

Re: Can AxKit be used as a Template Engine?

2001-04-23 Thread ed phillips
bout "other devices"---so I don't exactly regret > getting you to clarify things. > > Could I suggest that a better tagline would be that AxKit is superior > when creating easily (re-)targetable sites with mostly static content? > It might stave off more ignorant comments. > > Mike. Matt, I've also found your use of "static" to describe "transformable" or "re-targetable"(unfortunate word)" content to be confusing. This discussion helps clarify things, a little. ;-) Ed

Re: Fast DB access

2001-04-18 Thread ed phillips
re someone with some expertise installing and administering, and tuning your database of choice on your platform of choice or do the research thoroughly yourself. Ed

Re: Varaible scope & memory under mod_perl

2001-03-14 Thread ed phillips
agh! check the headers! Steven Zhu wrote: > How could I unsubscribe from [EMAIL PROTECTED] you so > much.Steven. > > -Original Message- >

Re: Not even beginning - INSTALL HELP

2001-02-27 Thread ed phillips
If you are going to upgrade gcc for RH 7.0, I reccomend the new source RPM for gcc to be found in the updates directory on any redhat mirror site. In fact, if you are sticking with RH you should see about updating a number of things. 23, Ed "G.W. Haywood" wrote: > Hi there, &

mod_perl + multiple Oracle schemas (was RE: Edmund Mergl)

2001-01-10 Thread Ed Park
d feature as of Oracle 8i. For details on what I did, see http://www.lifespree.com/modperl/ (which is still a total mess right now-- I'll get around to cleaning it up sometime soon, I promise!) cheers, Ed -Original Message- From: John D Groenveld [mailto:[EMAIL PROTECTED]] Sent: Wednesday

getting rid of multiple identical http requests (bad users double-clicking)

2001-01-04 Thread Ed Park
last 20 seconds. Has anyone else thought about this? cheers, Ed

RE: the edge of chaos

2001-01-04 Thread Ed Park
ommon NFS fileserver, sample every minute, and restart the webserver if db load is too high, which works OK. The best course of action, though, is to tune your database, homogenize your pages, and buy a bigger box, which we're doing. -Ed -Original Message- From: [EMAIL PROTECTE

Re: is morning bug still relevant?

2000-12-18 Thread ed phillips
Please use the MySQL modules list. Responses are timely. ;-) ed Subscribe: <mailto:[EMAIL PROTECTED]> Vivek Khera wrote: > >>>>> "SV" == Steven Vetzal <[EMAIL PROTECTED]> writes: > > SV> Greetings, > >> to say "ping doesn

showing mod_perl execute time in access_log

2000-12-14 Thread Ed Park
calculate it from bandwidth, but I would expect the actual number to vary wildly throughout a given day due to Internet congestion. cheers, Ed --- package AccessTimer; # USAGE: # Just put the following line into your .conf file: # # PerlFixupHandler AccessTimer # # and use a custom Apache log (th

RE: Mod_perl tutorials

2000-12-13 Thread Ed Park
ially avoided PHP was that their _site_ was dog slow, and I associated that with PHP being dog slow. Anyways, take23 is very fast for now. cheers, Ed

RE: Article idea: mod_perl + JSP

2000-12-13 Thread Ed Park
logic so that different pieces run on different machines; or, you can write a component in Perl that is subsequently called by a Java component. OK, enough of my rambling... cheers, Ed -Original Message- From: Gunther Birznieks [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 12, 2000 1

Apache::Session benchmarks

2000-12-11 Thread Ed Park
es anyone know how to pre-specify the _session_id for the session, rather than allowing Apache::Session to set it and read it? I saw some posts about it a while back, but no code... cheers, Ed

[JOB] mod_perl folks wanted in Boston - athenahealth.com

2000-12-08 Thread Ed Park
of money and stock options to burn on good people and interesting toys. If you're interested, send me a private email & a resume and we'll talk. Unfortunately, you sort of have to be in the Boston area (or willing to move) to make this work. cheers, Ed

RE: [ANNOUNCE] new site: scaling mod_perl will be movin to the Guide

2000-12-08 Thread Ed Park
I've gotten in touch with Stas, and the 'scaling mod_perl' site will eventually be folded into the Guide. woohoo! I'm going to spend several weeks fleshing it out and cleaning it up before it goes in, though. -Ed -Original Message- From: Perrin Harkins [mailto:[EM

[ANNOUNCE] new site: scaling mod_perl (+tool: mod_perl + DBD::Oracle)

2000-12-08 Thread Ed Park
utes to swap war stories or tactical plans, I'd love to talk with you; send me a private email. cheers, Ed - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[OT] RE: Help needed with MAP expression

2000-12-07 Thread Ed Park
hat. But the author probably should have commented it. :) cheers, Ed -Original Message- From: bari [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 07, 2000 12:47 PM To: [EMAIL PROTECTED] Subject: Help needed with MAP expression Hi there, Can any one help me what this MAP function does.

RE: connect_cached, mod_perl && Oracle connection pooling

2000-12-07 Thread Ed Park
o production in the near future. If you use it, lemme know how it works for you. hope this helps, Ed -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Saturday, September 23, 2000 6:09 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: connect_cached, mod_pe

RE: eval statements in mod_perl

2000-12-07 Thread Ed Park
he library. Obviously, some functions in that library won't work, but you won't know that unless you actually use them. Someone else might be able to shed more light on this. good luck, Ed -Original Message- From: Gunther Birznieks [mailto:[EMAIL PROTECTED]] Sent: Thursday, Dec

[OT]Re: mod_perl advocacy project resurrection

2000-12-06 Thread ed phillips
Aristotle from the Ars Rhetorica on money: Money will not make you wise, but it will bring a wise man to your door. Robin Berjon wrote: > At 12:39 06/12/2000 -0800, brian moseley wrote: > >> ActiveState has built an Perl/Python IDE out of Mozilla: > >> http://www.activestate.com/Products/

enterprise mod_perl architectures

2000-12-05 Thread Ed Park
r should we do a combination of the two? 3) Is there anyone who'd like to volunteer virtual space to host this? e.g. ftp, web, creating a mailing list, etc. I am not yet interested in specifics about peoples' architectures; I think that we need to frame the general discussion and creat

Re: Apache::Registry() and strict

2000-11-07 Thread ed phillips
Ron, This is a greivous FAQ. Please read the guide at http://perl.apache.org/guide You'll find much more than this question answered. Ed Ron Rademaker wrote: > Hello, > > I'm just starting with mod_perl and I'm using Apache::Registry(). The > second line afte

Re: Apache trouble reading in large cookie contents

2000-10-20 Thread ed phillips
Explictly echoing Gunther, don't go there! Use cookies, think crumbs of info, as flyweights. Significant chunks of data need to be passed and stored in other ways. Ed Gunther Birznieks wrote: > Caveat: even if you modify apache to do larger cookies, it's possible that > the

Re: Forking in mod_perl?

2000-10-04 Thread ed phillips
;d have to know more specifics to answer that with any modicum of confidence. Cheers, Ed "David E. Wheeler" wrote: > ed phillips wrote: > > > > Hi David, > > > > Check out the guide at > > > > http://perl.apache.org/guide/performance.html#Forking_

Re: Forking in mod_perl?

2000-10-04 Thread ed phillips
Hi David, Check out the guide at http://perl.apache.org/guide/performance.html#Forking_and_Executing_Subprocess The Eagle book also covers the C API subprocess details on page 622-631. Let us know if the guide is unclear to you, so we can improve it. Ed "David E. Wheeler" wrote:

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

2000-10-02 Thread ed phillips
Greg Stark wrote: > A better plan for such systems is to have a queue in your database for > parameters for e-mails to send. Insert a record in the database and let your > web server continue processing. > > Have a separate process possibly on a separate machine or possibly on multiple > machines

Re: [OT] advice needed.

2000-09-29 Thread ed
ly read your written self-description. Ed Michael Dearman wrote: > Where the heck does trying to do the right thing by > GPL (or similar), in attempting to return some improved > OpenSource code to the community. Or however the license > phrases it. Shouldn't these contracts address

Re: tracking down why a module was loaded?;

2000-09-26 Thread ed
s. Not to mention the hardware that goes with Java by fiat! ed

Re: OT: Server-push client page reload

2000-09-21 Thread ed phillips
A very impressive 95 lines o' Perl Randal! Ed "Randal L. Schwartz" wrote: > >>>>> "Michael" == Michael Nachbaur <[EMAIL PROTECTED]> writes: > > Michael> This is off-topic, but I need an answer pretty quick, and I > Michael> *am*

RE: setting LD_LIBRARY_PATH via PerlSetEnv does not work

2000-08-21 Thread Ed Park
.org/manual/ld-2.9.1/html_mono/ld.html or an essay on LD_LIBRARY_PATH: http://www.visi.com/~barr/ldpath.html cheers, Ed -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED]] Sent: Monday, August 21, 2000 6:51 AM To: Richard Chen Cc: Yann Ramin; [EMAIL PROTECTED] Subject: Re: setting

Re: [OT] [JOB] mod_perl and Apache developers wanted

2000-06-21 Thread Ed Phillips
o function and the culture to flourish. If we had not protested the attempted eToys domain grab, and I was one who protested, they may have never recanted and Etoy might still be fighting at absurd personal cost. Cheers, Ed Paul Singh wrote: > Regardless of what eToys' intentions were

Re: [OT] Contract Language for free software

2000-06-14 Thread Ed Phillips
Please excuse the horrible formatting, The version below should be more readable. Ed Phillips wrote: > Hi All, > > This is very OT, but is related to mod_perl. I have a contract as yet > unsigned > with a Web Company to possibly rewrite their horrible perl 4 era CGI apps &

[OT] Contract Language for free software

2000-06-14 Thread Ed Phillips
ntracts that cover invention and they would like to share, I'd be grateful. Cheers, Ed

Re: [OT now] Re: Template techniques

2000-06-09 Thread Ed Phillips
f XML support, imo. I've taken a look at what Matt is up to and I'm intrigued, but don't have a need for it as yet. Joshua, what is the itch that you are scratching if you care to opine? Ed Drew Taylor wrote: > Joshua Chamas wrote: > > > > Perrin Harkins wrote: > >

Re: [benchmark] DBI/preload (was Re: [RFC] improving memory mappingthru code exercising)

2000-06-02 Thread Ed Phillips
Yes, very cool Stas! Perrin Harkins wrote: > On Sat, 3 Jun 2000, Stas Bekman wrote: > > > correction for the 3rd version (had the wrong startup), but it's almost > > the same. > > > > Version Size SharedDiff Test type > >

Re: was apache.org down

2000-06-02 Thread Ed Phillips
Replying to myself. It is back up, obviously. sorry for the noise Ed Phillips wrote: > Level 3 is broken. > > They know and are working on it. hmmm > > Ed

was apache.org down

2000-06-02 Thread Ed Phillips
Level 3 is broken. They know and are working on it. hmmm Ed

apache.org down

2000-06-02 Thread Ed Phillips
"Hughes, Ralph" wrote: > COOL! > I couldn't wait... > I built and installed mod_perl 1.24 and it fixed the problem! Now if I can > just get the CGI module > to recognize my domainname .. :-) > > -Original Message- > From: Hughes, Ralph > Sent: Friday, June 02, 2000 2:02 PM > To:

RE: :Oracle && Apache::DBI

2000-05-22 Thread Ed Park
s core. Again, this happens _very_ rarely. Hope this helps, Ed -Original Message- From: Ian Kallen [mailto:[EMAIL PROTECTED]] Sent: Monday, May 22, 2000 9:37 PM To: [EMAIL PROTECTED] Subject: DBD::Oracle && Apache::DBI I've done everything I can think of to shore up any D

pod and EmbPerl

2000-05-01 Thread Ed Park
Does anyone know whether it is possible to pod-ify an EmbPerl document? When embedding pod directives in my EmbPerl pages and then running pod2html on them, the pod2html interpreter returns a blank page. thanks, Ed

Re: Installation

2000-03-30 Thread Ed Loehr
tions line by line and still nothing. Is this > the right mailing list to ask this question? Where should I go if not? > Apache is up and running just fine. Any input would be appreciated. The essential can't-run-modperl-without-it guide: http://perl.apache.org/guide Regards, Ed Loehr

[RFI] URI escaping modules?

2000-03-28 Thread Ed Loehr
I just noticed that Apache::Util::escape_uri does not escape embedded '&' characters as I'd expected. What is the preferred module for escaping '&', '?', etc. when embedded in strings? Regards, Ed Loehr

Re: $r->print delay?

2000-02-12 Thread Ed Loehr
"G.W. Haywood" wrote: > > On Thu, 10 Feb 2000, Ed Loehr wrote: > > > Fairly certain it's waiting there. I cut my debug timestamps out for > > ease on your eyes in my earlier post, but here's one output (of many > > like it) when I had the prin

Can't upgrade that kind of scalar

2000-02-12 Thread Ed Loehr
Aside from gdb, any fishing tips on how to track this fatal problem down? Can't upgrade that kind of scalar at XXX line NN... Happens intermittently, often on a call to one of these (maybe the first access of $r?): $r->server->server_hostname() $r->connection->remote_ip(

Re: $r->print delay?

2000-02-10 Thread Ed Loehr
Greg Stark wrote: > > Ed Loehr <[EMAIL PROTECTED]> writes: > > > > [EMAIL PROTECTED] (Ed Loehr) wrote: > > > >Any ideas on why would this output statement takes 15-20 seconds to > > > >send a 120kb page to a browser on the same host? > > >

Re: $r->print delay?

2000-02-10 Thread Ed Loehr
t for ease on your eyes in my earlier post, but here's one output (of many like it) when I had the print sandwiched... Thu Feb 10 14:41:59.053 2000 [v1.3.7.1 2227:1 ed:1] INFO : Sending 120453 bytes to client... Thu Feb 10 14:42:14.463 2000 [v1.3.7.1 2227:1 ed:1] INFO : Send of 120453 bytes

$r->print delay?

2000-02-10 Thread Ed Loehr
Any ideas on why would this output statement takes 15-20 seconds to send a 120kb page to a browser on the same host? sub send_it { my ($r, $data) = @_; $| = 1; # Don't buffer anything...send it asap... $r->print( $data ); } modperl 1.21, apache/modssl 1.3.9-2.4.9...lightly l

Building Apache/modperl for SCO OS 5.05

2000-02-07 Thread ed hallda
Has anyone had any luck building Apache on SCO Open Server 5 with mod_perl? We have been unsuccessful, and am hoping to find a solution. r/ ed

  1   2   >