Re: using a module to contain settings.

2000-06-24 Thread Ged Haywood
Hi all, On Thu, 22 Jun 2000, Frank Wiles wrote: Where I work we store them as PerlSetVar's in the Apache config, we store all implementation specific things in there such as the page title, the URL to the module we are using, database user and password, etc, etc. Like Frank I've used

Re: stripping CRLF on the way out?

2000-06-24 Thread Ged Haywood
Hi all, On Thu, 22 Jun 2000, Paul Lindner wrote: I read somewhere that 5 bytes is equivalent to 1ms on a 28.8 connection, so these types of optimizations are generally worth the effort. Don't forget that modems can be clever too. Most do their own data compression on the fly, so you may

Re: [OT]SegFaults, not PerlFreshRestart or module related

2000-06-24 Thread Ged Haywood
Hi all, On Mon, 19 Jun 2000, Paul wrote: I'm running out of ideas. PerlFreshRestart was completely unused, then explicitly set Off. I have two handlers, which seem to work well. My logs report nothing amiss aside from the stream of segmentation faults killing off my server children

RE: Pages stopping and not loading completely...

2000-06-24 Thread Ged Haywood
Hi all, On Mon, 19 Jun 2000, Farley, Scott wrote: I know the "rwrite returned -1" is a long fixed bug but what about the pages not completely loading? What version? I was going to ask you the same question... 73, Ged.

Re: Installation of mod_perl

2000-06-24 Thread Ged Haywood
Hi there, On Tue, 20 Jun 2000, Kiran Banoor wrote: when I Make Test, I get the following error:- letting apache warm up...Syntax error on line 3 of /web/apache/src/modules/mod_perl-1.22/t/conf/srm.conf: Invalid command 'PerlTransHandler', perhaps mis-spelled or defined by a module not

Re: Bizarre munging of form data

2000-06-24 Thread Ged Haywood
Hi there On Tue, 20 Jun 2000, Eamon Daly wrote: I've just run into the strangest problem I've ever had the misfortune of coming across. I have a form containing a number of various fields, including two radio buttons named "WHO_REGISTERED". Well it's a bit off-the wall, but the letters

Re: [advocacy] FUD spreading by velocigen fan

2000-06-24 Thread Stas Bekman
On Fri, 23 Jun 2000, Matt Sergeant wrote: On Fri, 23 Jun 2000, Stas Bekman wrote: In the article "Up to Speed with VelociGen" located http://www.webtechniques.com/archives/2000/05/infrrevu/ Brian Wilson tries to compare Velocigen with mod_perl, unfortunately gives lots of FUD for

Re: Footer.pm

2000-06-24 Thread G.W. Haywood
Hi there, On Sat, 24 Jun 2000, My Alias wrote: Location /cgi-bin SetHandler perl-script PerlHandler Apache::Footer /Location and restarted the server. Now, what used to be sent out as html is sent out looking like: #!/usr/bin/perl -w use strict; blah, blah,

Re: Apache::Request and memory

2000-06-24 Thread Jim Winstead
Okay, I think I tracked this down to a one-byte buffer overflow. Try the attached patch to see if that fixes it (it fixes things in my testing). Unfortunately, the overflow seemed to sneak through with no problems on FreeBSD, and on Linux if you compile with -g. Jim On Jun 24, dorian wrote:

ANNOUNCE: Apache::Filter 1.011

2000-06-24 Thread Ken Williams
Hi, The URL http://forum.swarthmore.edu/~ken/modules/archive/Apache-Filter-1.011.tar.gz has entered CPAN as file: $CPAN/authors/id/K/KW/KWILLIAMS/Apache-Filter-1.011.tar.gz size: 15549 bytes md5: a760324b56c4f09e559512fda1e6baf5 Changes since 1.010: Version: 1.011 Date:

Re: Apache::Request and memory

2000-06-24 Thread Jeremy Howard
...Problem with patch to fix memory blow-out with file uploads... Okay, I think I tracked this down to a one-byte buffer overflow. Try the attached patch to see if that fixes it (it fixes things in my testing). Thanks--certainly an improvement. I tried a 25k file, which worked fine. However

Re: Apache::Request and memory

2000-06-24 Thread Jeremy Howard
Okay, I think I tracked this down to a one-byte buffer overflow. Try the attached patch to see if that fixes it (it fixes things in my testing). Oops. Please ignore my last message. Your fix works just fine... I had some code to automatically kill my process after it got an upload 1MB, in