Re: Apache::Request

2000-04-12 Thread John S. Evans
I'm using Solaris (SunOS 5.7, according to uname). The number of files varies, and I can control this if I know what the limits are. Is the 256 limit per process or for the entire machine? For instance, if I have 10 apache children going full bore, is the practical limit 25 per child, or 256

Re: Apache::Request

2000-04-12 Thread Michael hall
On Tue, Apr 11, 2000 at 11:52:44PM -0700, John S. Evans wrote: I saw (in the code) that there's one open file per uploaded file. That should be fine. I just need to find out if they're getting closed correctly. What is "lsof"? 'LiSt Open Files', its really a handy tool for diagnosing.

Re: missing modules/perl/libperl.a

2000-04-12 Thread Stas Bekman
In file included from mod_perl.h:41, from mod_perl.c:60: /usr/lib/perl5/5.00503/i686-linux/CORE/perl.h:2546: redefinition of `union semun' /usr/lib/perl5/5.00503/i686-linux/CORE/patchlevel.h:41: warning: `local_patches' defined but not use what kernel/distribution

[OT] Killing off children

2000-04-12 Thread Bill Moseley
Hello, I noticed on the Apache server-status report a child that is stuck in "G" (Gracefully finishing) after a SIGUSR1 today. Twelve hours ago. I don't have root access on this machine, but I thought I'd run a CGI script to run as "nobody" and kill off the child. (I've done this once before

Re: [OT] Killing off children

2000-04-12 Thread Stas Bekman
On Wed, 12 Apr 2000, Bill Moseley wrote: Hello, I noticed on the Apache server-status report a child that is stuck in "G" (Gracefully finishing) after a SIGUSR1 today. Twelve hours ago. I don't have root access on this machine, but I thought I'd run a CGI script to run as "nobody" and

Re: A better patch for Registry.pm

2000-04-12 Thread Tom Mornini
On Tue, 11 Apr 2000, Doug MacEachern wrote: I missed an opportunity to set $r-notes('error-notes') if there was an error at compile-time. This patch includes both run-time and compile-time patches. thanks tom. the patch below will set error-notes for all Perl*Handlers. $@ is also

[article] Installing and Securing the Apache Webserver with SSL

2000-04-12 Thread Stas Bekman
Installing and Securing the Apache Webserver with SSL http://www.securityfocus.com/focus/sun/articles/apache-inst.html?_ref=1653102939 The article includes info on mod_perl among other things Enjoy! __ Stas Bekman

everything seems to be installed ok....

2000-04-12 Thread James Gosnell
mod_perl is installed and in the httpd just fine. My CGI scripts aren't using it though (at least I can't tell). How can I tell if my CGI PERL scripts are running under mod_perl or not? They still seem to be using CGI. thanks -- James Gosnell [EMAIL PROTECTED] ICQ#1727569

RE: everything seems to be installed ok....

2000-04-12 Thread Geoffrey Young
http://perl.apache.org/guide/install.html#How_can_I_tell_whether_mod_perl_ let the Guide be your guide :) --Geoff -Original Message- From: James Gosnell [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 12, 2000 8:04 AM To: [EMAIL PROTECTED] Subject: everything seems to be

RE: everything seems to be installed ok....

2000-04-12 Thread Geoffrey Young
-Original Message- From: James Gosnell [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 12, 2000 8:53 AM To: [EMAIL PROTECTED] Subject: Re: everything seems to be installed ok I meant mod_perl.c. in Location well, I don't really understand what that means... of course,

Send directly to me : Apache - Linux vs BSD

2000-04-12 Thread raptor
hi, Anyone with experience running Apache on both platforms any recomentation pluses, minuses. Send them directly to me not to the list. Not war's, I just need oppinions. You can include Solaris too. Thanx alot in advance = iVAN [EMAIL PROTECTED] =

Re: everything seems to be installed ok....

2000-04-12 Thread James Gosnell
Yeah, I read that and implemented it into a perl.conf file although I didn't know that I needed a whole new dir. I just used my cgi-bin. Is there another way I can modify that? Everything in my cgi-bin is a PERL script. I'll read the guide. It's just really big and there's got to be a quicker way

Re: everything seems to be installed ok....

2000-04-12 Thread James Gosnell
oh, and I had a line: alias /perl/ /usr/local/apache/cgi-bin/ -- James Gosnell [EMAIL PROTECTED] ICQ#1727569 http://premed.dhs.org

Re: everything seems to be installed ok....

2000-04-12 Thread James Gosnell
Got it guys! Thanks. It wasn't hard. Just didnt know it had to be a different dir. -- James Gosnell [EMAIL PROTECTED] ICQ#1727569 http://premed.dhs.org

Re: [OT] Killing off children

2000-04-12 Thread Bill Moseley
At 09:25 AM 04/12/00 +0200, Stas Bekman wrote: On Wed, 12 Apr 2000, Bill Moseley wrote: I noticed on the Apache server-status report a child that is stuck in "G" (Gracefully finishing) after a SIGUSR1 today. Twelve hours ago. Looks like a system problem, what do you see when you attach to a

Re: Error compiling mod_perl

2000-04-12 Thread Sam Carleton
Doug MacEachern wrote: On Tue, 11 Apr 2000, Sam Carleton wrote: This is the error message I got when I compiled mod_perl: Perl lib version (5.00503) doesn't match executable version (5.006) at /usr/lib/perl5/5.00503/i586-linux/Config.pm line 7. you either installed a new Perl after

Re: Apache::Registry error message?

2000-04-12 Thread Jason Terry
Server Version: Apache/1.3.12 (Unix) mod_perl/1.22 PHP/3.0.15 mod_ssl/2.6.2 OpenSSL/0.9.5a-beta1 Server Built: Apr 4 2000 15:57:17 It has only happened a to a dozen or so children. And it *seems* to only have happened to 1 child in the server. It has only happened once since I

Apache::ASP and gzip/inflate compression

2000-04-12 Thread Ime Smits
Hi, I would like to apply gzip or inflate compression on the response from Apache::ASP, because my application generates a lot low-entropy table-structures which can be compressed down to 90-95%. On a normal CGI script I would do something like: print "Content-type: text/html\n"; print "Pragma:

DougM: my hero and yours, too.

2000-04-12 Thread Jeffrey W. Baker
A lengthy introduction to mod_perl on wdvl.com casts Doug as the savior of website development. http://wdvl.com/Authoring/Languages/Perl/PerlfortheWeb/forks.html#hero :)

Re: $r-args troubles...

2000-04-12 Thread Jason Murphy
You would have guessed right. However, the problem was two fold in my case. First, I was not calling Apache::Request correctly. The proper method to call Apache was told to me by Doug Kyle (Giving credit where due!). Below is how it is done. --- Begin Example my $r = Apache-request; my $apr =

mod_perl virtual web hosting

2000-04-12 Thread Gagan Prakash
Hello, I have been looking for mod_perl virtual web hosting companies who have fast servers and good infrastructure but the two I have found so far have either had problems with their mod_perl setups (they installed the module, did not change apache configs or changed them incorrectly) or have

Re: mod_perl virtual web hosting

2000-04-12 Thread Ron Pero
I haven't used it, but a friend mentioned that iserver has virtual servers on which you can configure mod_perl. http://www.iserver.com/ At 01:26 PM 04/12/00 -0400, Gagan Prakash wrote: Hello, I have been looking for mod_perl virtual web hosting companies who have fast servers and good

Re: mod_perl virtual web hosting

2000-04-12 Thread Jesse Wolfe
I am working with www.superb.net to get their mod_perl up and working again. They have great infrastrucure, lots of great tools, and an amazing price. They had apache/mod_perl for awhile, and upgrades broke it. I expect they will have it in a week or two, if we can use all these dynamic/shared

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 walrus -- coo

Re: vcpan (Virtual CPAN) ?

2000-04-12 Thread Gerd Knops
[EMAIL PROTECTED] wrote: This site looks on top of it! To bad they are a Verio company. My recent experiences with Verio have been extremely poor, their customer support for leased lines is that it pretty much is non-existent. Gerd I noticed they were using a wrapper called vcpan for

Re: Apache::ASP and gzip/inflate compression

2000-04-12 Thread Joshua Chamas
Ime Smits wrote: Hi, I would like to apply gzip or inflate compression on the response from Apache::ASP, because my application generates a lot low-entropy table-structures which can be compressed down to 90-95%. On a normal CGI script I would do something like: print "Content-type:

UndefOnReload problems with Apache::INC

2000-04-12 Thread sguelich
I've run across a problem with UndefOnReload stomping on code in mod_perl/1.21, which I believe affects mod_perl/1.22 as well. I scanned through the mod_perl archives and found that others had similar problems a while back, leading to Apache::StatINC and Apache::Symbols::undef_function being

Re: UndefOnReload problems with Apache::StatINC

2000-04-12 Thread Scott Guelich
err... make that Apache::StatINC, not Apache::INC. - Scott

UndefOnReload problems with Apache::StatINC

2000-04-12 Thread Scott Guelich
I've run across a problem with UndefOnReload stomping on code in mod_perl/1.21, which I believe affects mod_perl/1.22 as well. I scanned through the mod_perl archives and found that others had similar problems a while back, leading to Apache::StatINC and Apache::Symbols::undef_function being

make test is bomming out

2000-04-12 Thread Sam Carleton
Doug MacEachern wrote: On Tue, 11 Apr 2000, Sam Carleton wrote: This is the error message I got when I compiled mod_perl: Perl lib version (5.00503) doesn't match executable version (5.006) at /usr/lib/perl5/5.00503/i586-linux/Config.pm line 7. you either installed a new Perl after

Re: mod_perl virtual web hosting

2000-04-12 Thread Peter J. Schoenster
On 12 Apr 2000, at 13:26, Gagan Prakash wrote: I have been looking for mod_perl virtual web hosting companies who have fast servers and good infrastructure but the two I have found so far have either had problems with their mod_perl setups (they installed the module, did not change apache

Re: Bug#61231: mod_perl segfaults child-processes in combination with XML::Parser::Expat

2000-04-12 Thread remco
On Tue, 11 Apr 2000, Ardo van Rangelrooij wrote: Hi! Hi, Steve Dunham (thanks!!!)provided a patch which should take care of this problem. I've made a package available as http://master.debian.org/~ardo/libxml-parser-perl_2.27-3_i386.deb Please try it out and let me know what's up.

UndefOnReload problems with Apache::INC

2000-04-12 Thread scott_guelich
I've run across a problem with UndefOnReload stomping on code in mod_perl/1.21, which I believe affects mod_perl/1.22 as well. I scanned through the mod_perl archives and found that others had similar problems a while back, leading to Apache::StatINC and Apache::Symbols::undef_function being

NT Installation

2000-04-12 Thread Paul McCumber
The final step, I thought, was to add LoadModule perl_module modules/ApacheModulePerl.dll to the conf/httpd.conf file. Prior to this line, Apache will start and act as a web server. After insertion of this line I get the error: _ap_table_add@12 could not be located in ApacheCore.dll I put

Re: Bug#61231: mod_perl segfaults child-processes in combination with XML::Parser::Expat

2000-04-12 Thread remco
On Tue, 11 Apr 2000, Ardo van Rangelrooij wrote: Hi! Steve Dunham (thanks!!!)provided a patch which should take care of this problem. I've made a package available as http://master.debian.org/~ardo/libxml-parser-perl_2.27-3_i386.deb Please try it out and let me know what's up. If no

[suggestion] *::GZip and chunked output

2000-04-12 Thread Stas Bekman
A few people have reported lately that they experience a problem with a chunked output from *::Gzip filters. I think that using DESTROY to Finalize Output technique as described at http://perl.apache.org/guide/snippets.html#Using_DESTROY_to_Finalize_Output will provide a nice workaround. If any

Re: front end proxy and virtual hosts

2000-04-12 Thread Ask Bjoern Hansen
On Mon, 10 Apr 2000, Eric Cholet wrote: Port based backend servers is the easiest. Use Port 80 Listen 127.0.0.1:8088 (or whatever) Listen 127.0.0.1:8089 ... in your backend setup to make sure it never reveals the real port and only listens on the loopback interface (if that's what you want).

Re: [newbie] diffs and cvs

2000-04-12 Thread Ask Bjoern Hansen
On Sun, 9 Apr 2000, Stas Bekman wrote: [snapshots] It's much easier than starting with a real CVS server if you do that for the first time. But it worth the hassle, if you want to use open source software and live on the cutting edge. but with the "real cvs" it's much easier to keep updated,

Re: front end proxy and virtual hosts

2000-04-12 Thread Vivek Khera
I just ran into a bit of a conflict with Alias and Rewrite on my front end. Given that I have multiple virtual hosts serving up the same content using a slightly different set of graphics and templates, the easy way is to "Alias /_pageparts /real/page/parts/directory" and make the alias

Re: A better patch for Registry.pm

2000-04-12 Thread Ask Bjoern Hansen
On Wed, 12 Apr 2000, Tom Mornini wrote: [...] I'm going to have to work harder at getting on that credits list, it would seem! Nah. Doug didn't commit it yet so except if it was because he didn't want it and will back it out again, then you're on the list now. It was your idea after all, so

Re: front end proxy and virtual hosts

2000-04-12 Thread Ask Bjoern Hansen
On Wed, 12 Apr 2000, Vivek Khera wrote: [...] Has this bitten anyone else? Stas, I think you should mention this in the guide somehow as something to watch out for when using the proxy front-end. The Rewrite rules are ignored when an Alias expands the URI, or so it seems from where I sit.

Re: [newbie] diffs and cvs

2000-04-12 Thread Stas Bekman
On Wed, 12 Apr 2000, Ask Bjoern Hansen wrote: On Sun, 9 Apr 2000, Stas Bekman wrote: [snapshots] It's much easier than starting with a real CVS server if you do that for the first time. But it worth the hassle, if you want to use open source software and live on the cutting edge.

Re: Apache::ASP and gzip/inflate compression

2000-04-12 Thread Ken Williams
[EMAIL PROTECTED] (Joshua Chamas) wrote: Ime Smits wrote: I would like to apply gzip or inflate compression on the response from Apache::ASP, because my application generates a lot low-entropy table-structures which can be compressed down to 90-95%. First note that Apache::ASP is

Re: mod_perl virtual web hosting

2000-04-12 Thread Tom Brown
On Wed, 12 Apr 2000, Jesse Wolfe wrote: I am working with www.superb.net to get their mod_perl up and working again. They have great infrastrucure, lots of great tools, and an amazing price. They had apache/mod_perl for awhile, and upgrades broke it. I expect they will have it in a week or

Re: front end proxy and virtual hosts

2000-04-12 Thread Vivek Khera
"ABH" == Ask Bjoern Hansen [EMAIL PROTECTED] writes: ABH mod_alias does - (except for ScriptAlias which is not really relevant on Duh. Ya know, sometimes you stare and stare and stare and it doesn't come to you. I don't even need mod_alias at all... Thanks!

Re: [suggestion] *::GZip and chunked output

2000-04-12 Thread Honza Pazdziora
On Wed, Apr 12, 2000 at 10:58:47PM +0200, Stas Bekman wrote: Files *.html SetHandler perl-script PerlHandler Apache::OutputChain Apache::GzipChain \ Apache::Buffer Apache::PassFile /Files This will solve two problems: 1) chunked gzipped

How do I make proxy server not to buffer o/p of mod_perl server?

2000-04-12 Thread Sheth, Niraj
Hi All, How do configure front end proxy server NOT to buffer o/p of mod_perl server? ProxyReceiveBufferSize doesn't help. I read thru Eric Cholet's post, he pointed out HUGE_STRING_LEN (8k) is the buffer size. Is it configurable, may be in latest 1.3.12 or i have to change manually and

Problem with Apache::SIG

2000-04-12 Thread modperl-return-2783-archive=jab . org
Hi All, Recently I installed Apache-1.3.12 with mod_perl-1.22. Standard installation. Everything seemed to work great. I'm using the directive PerlFixupHandler Apache::SIG because you have some 'alive' scripts that need to be killed if the user closes his browser. Well, everything seems to

Re: mod_perl virtual web hosting

2000-04-12 Thread Gagan Prakash
Thanks everyone. I did check the listing at perl.apache.org but many fo the organization appear to be resellers. I have the unique situation of setting up a site for India and thus need the host to be as close as possible to a central internet node. I will check out iserver and use them if it

Re: mod_perl virtual web hosting

2000-04-12 Thread Gunther Birznieks
Yeah, this was officially announced at iserver 3-4 weeks ago. It's been in beta testing for months. I would say that the only weird thing about it is that they only give you one server config so a lot of the lightweight front-end, heavyweight-perl back-end stuff in the guide is a bit useless for

Re: mod_perl virtual web hosting

2000-04-12 Thread Tom Brown
I'm reading between the lines here, but it sounds like you are trying to have _one_ parent apache daemon that services _everything_ on the machine (likely _more_ than one website), which would imply that you are going to have an _extremely_ low hit ratio on your mod_perl scripts. nahh,

Re: vcpan (Virtual CPAN) ?

2000-04-12 Thread Gunther Birznieks
On the main topic at hand: I am under the impression vcpan and other iserver tools like it are proprietary and it is how they manage their virtual UNIX boxes so that you can have almost root-like access to your virtual web server machine without being a true separate physical box that you have

Problems with custom configuration handlers

2000-04-12 Thread Kevin Murphy
I've written an access handler which takes some custom configuration directives based on the instructions in chaper 8 of the Eagle book. Everything makes and installs fine, and I am able to load the module with a PerlModule directive, but when I try to use the directives defined in my module I

ANNOUNCE: Apache::Filter 1.008

2000-04-12 Thread Ken Williams
Here's the long-awaited module that lets you run Registry scripts in an Apache::Filter chain. Now that I've done it, it seems embarassingly simple, and I should have looked at it earlier. The URL http://mathforum.com/~ken/modules/archive/Apache-Filter-1.008.tar.gz has entered CPAN as

Re: Can't locate object method BINMODE via package Apache

2000-04-12 Thread Ken Williams
[EMAIL PROTECTED] (Doug MacEachern) wrote: On Tue, 11 Apr 2000, Ken Williams wrote: Change that to binmode(STDOUT) and it should work. Since STDOUT is tied, I think Perl is interpreting that as STDOUT-binmode. that's not the problem, see my reply to Roca. Oops, I should have looked before I

Re: mod_perl virtual web hosting

2000-04-12 Thread Mike Lambert
This is my first post on the list, hopefully it's helpful. ;) We've had great success with InfoBoard. We have four mod_perl accounts set up with them, and we are currently moving to a colocated server that they are hosting for us. They have good experience with mod_perl, and can easily get you

RedHat 6.1 apache 1.3.12 modperl 1.22 Makefile.pl errors and failed make test

2000-04-12 Thread Adam Joffe
Hi all, trying to set up a new linux box. real vanilla using apaci, everything=1, do_httpd=1, etc... "perl Makefile.PL" gives a bunch of "which: no apxs found" errors. Saw some threads about this in the list but none explained why the errors occur and how to get rid of them when doing a fresh

defunct procs...

2000-04-12 Thread James Gosnell
Should I be conscerned about httpd defunct processes? -- James Gosnell [EMAIL PROTECTED] ICQ#1727569 http://premed.dhs.org

Re: NT Installation

2000-04-12 Thread Randy Kobes
On Wed, 12 Apr 2000, Paul McCumber wrote: The final step, I thought, was to add LoadModule perl_module modules/ApacheModulePerl.dll to the conf/httpd.conf file. Prior to this line, Apache will start and act as a web server. After insertion of this line I get the error:

PLEASE HELP!!!!! I cannot get mod_perl/apache compiled

2000-04-12 Thread Sam Carleton
I simply cannot get mod_perl/apache to compile. My understanding is that I configure .makepl_args.mod_perl to compile both mod_perl. Then I do the following: perl Makefile.PL make make test make install Assuming there where no problems, all should be installed and ready to go. But all is not

Re: PLEASE HELP!!!!! I cannot get mod_perl/apache compiled

2000-04-12 Thread Robert Monical
Shared pain! Have just been through this. Sequencing is a little arcane. Make mod_perl Install mod_perl Make Apache Install Apche Make test mod_perl. Mod_perl needs a perl aware Apache. The additions to the http.conf are stripped out by a perl aware Apache. I may not have addressed your

Re: A better patch for Registry.pm

2000-04-12 Thread Tom Mornini
On Wed, 12 Apr 2000, Ask Bjoern Hansen wrote: On Wed, 12 Apr 2000, Tom Mornini wrote: [...] I'm going to have to work harder at getting on that credits list, it would seem! Nah. Doug didn't commit it yet so except if it was because he didn't want it and will back it out again, then

Re: missing modules/perl/libperl.a

2000-04-12 Thread Doug MacEachern
USE-APACI=1 \ as stas mentioned, USE_APACI is the correct name, USE-APACI is ignored. it could be that stronghold does not support apaci.

Re: Apache::Request

2000-04-12 Thread Doug MacEachern
On Tue, 11 Apr 2000, John S. Evans wrote: I'm using Solaris (SunOS 5.7, according to uname). The number of files varies, and I can control this if I know what the limits are. Is the 256 limit per process or for the entire machine? For instance, if I have 10 apache children going full

Re: [OT] Killing off children

2000-04-12 Thread Doug MacEachern
On Wed, 12 Apr 2000, Bill Moseley wrote: Hello, I noticed on the Apache server-status report a child that is stuck in "G" (Gracefully finishing) after a SIGUSR1 today. Twelve hours ago. this could be perl_destruct() hanging while trying to cleanup. this normally isn't a requirement, you

Re: UndefOnReload problems with Apache::StatINC

2000-04-12 Thread Doug MacEachern
On Wed, 12 Apr 2000, Scott Guelich wrote: I've run across a problem with UndefOnReload stomping on code in mod_perl/1.21, which I believe affects mod_perl/1.22 as well. I scanned through the mod_perl archives and found that others had similar problems a while back, leading to

Re: [newbie] diffs and cvs

2000-04-12 Thread Doug MacEachern
If you don't want all that, you probably don't want the unreleased version in the first place. (assuming Doug will start releasing a little more often now :-) ) i thought i already start doing that :) =item 1.22 - March 22, 2000 =item 1.21_03 - March 15, 2000 =item 1.21_02 - March 6, 2000

Re: A better patch for Registry.pm

2000-04-12 Thread Doug MacEachern
On Wed, 12 Apr 2000, Ask Bjoern Hansen wrote: On Wed, 12 Apr 2000, Tom Mornini wrote: [...] I'm going to have to work harder at getting on that credits list, it would seem! Nah. Doug didn't commit it yet so except if it was because he didn't want it and will back it out again, then

Re: PLEASE HELP!!!!! I cannot get mod_perl/apache compiled

2000-04-12 Thread Doug MacEachern
perl Makefile.PL make make test make install APACHE_SRC=/usr/src/apache_1.3.12/src APACHE_PREFIX=/data01/apache DO_HTTPD=1 with that config, mod_perl will build httpd for you and install with 'make install'. that's all you need. $ROOT_DIR/apache_1.3.12/configure \

Re: RedHat 6.1 apache 1.3.12 modperl 1.22 Makefile.pl errors and failed make test

2000-04-12 Thread Doug MacEachern
On Wed, 12 Apr 2000, Adam Joffe wrote: Hi all, trying to set up a new linux box. real vanilla using apaci, everything=1, do_httpd=1, etc... "perl Makefile.PL" gives a bunch of "which: no apxs found" errors. Saw some threads about this in the list but none explained why the errors occur

Re: Problems with custom configuration handlers

2000-04-12 Thread Doug MacEachern
On Wed, 12 Apr 2000, Kevin Murphy wrote: I've written an access handler which takes some custom configuration directives based on the instructions in chaper 8 of the Eagle book. Everything makes and installs fine, and I am able to load the module with a PerlModule directive, but when I

cvs commit: modperl INSTALL.raven Changes MANIFEST

2000-04-12 Thread dougm
dougm 00/04/12 09:13:11 Modified:.Changes MANIFEST Added: .INSTALL.raven Log: added INSTALL.raven Revision ChangesPath 1.465 +3 -0 modperl/Changes Index: Changes

Re: cvs commit: modperl/src/modules/perl Connection.xs

2000-04-12 Thread Ask Bjoern Hansen
On 11 Apr 2000 [EMAIL PROTECTED] wrote: Log: $c-remote_ip($ip) now also sets conn-remote_addr to make IP-based access control work correctly ahfdkjah! Thanks. That have driven me nuts. It never occured to me that it was a bug and not me being clueless though. :) You're my hero of the

cvs commit: modperl/src/modules/perl mod_perl.c

2000-04-12 Thread ask
ask 00/04/12 14:23:19 Modified:.Changes src/modules/perl mod_perl.c Log: set r-notes("error-notes") to $@ when there is an eval error. Revision ChangesPath 1.466 +3 -0 modperl/Changes Index: Changes