[DIGEST] mod_perl digest 03/31/01

2001-04-02 Thread Geoffrey Young
-- mod_perl digest March 25, 2001 - March 31, 2001 -- Recent happenings in the mod_perl world... Features

Re: mod_parrot

2001-04-02 Thread Rod Butcher
Does this mean Perl 6 is dogmeat ? Rod On Monday 02 April 2001 12:20, Bill Moseley wrote: I assume everyone saw this... ;) http://www.oreilly.com/parrot/ Bill Moseley mailto:[EMAIL PROTECTED]

Re: mirroring data across a server cluster

2001-04-02 Thread Paul Cotter
[OT] - but... Do not throw out database replication as a solution. Trying to maintain synchronicity across multiple databases is not a trivial task. You have to cope with single point failure at the transaction level, (eg the server 'one' update works, but server 'two' fails) clashes (same

Long waits on SQL Stored Procs. Should I use chained content handlers?

2001-04-02 Thread tls
I need to run some stored procedures that take upwards of a minute to generate result sets. Ok, thats grand but I dont want the browser to sit there and twiddle. I'd like to display an animated gif. Simple. Right? I hope. I'm looking into chained handlers in my mod_perl code, but I'm not sure

Re: Long waits on SQL Stored Procs. Should I use chained contenthandlers?

2001-04-02 Thread Ken Y. Clark
On Mon, 2 Apr 2001 [EMAIL PROTECTED] wrote: Date: Mon, 2 Apr 2001 14:06:40 GMT From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Long waits on SQL Stored Procs. Should I use chained content handlers? I need to run some stored procedures that take upwards of a minute to generate

Re: Long waits on SQL Stored Procs. Should I use chained content

2001-04-02 Thread tls
Could you make the page displaying the animated gif have a "refresh" tag of maybe 30 (or fewer) seconds, at the end of which it could redirect to a page that could see if the query has finished? If not, it would return to the animated gif page again and wait some more. Thank you for the

Re: mod_parrot

2001-04-02 Thread Sean C. Brady
Very interesting... thanks for sharing! ~Sean On Sun, 1 Apr 2001, Bill Moseley wrote: I assume everyone saw this... ;) http://www.oreilly.com/parrot/ Bill Moseley mailto:[EMAIL PROTECTED]

ASP Win32 problems

2001-04-02 Thread George A. Fitch III
Hi, I installed mod_perl and Apache::ASP on WinNT, and the sample .htm files work fine. I can't seem to get the sample .asp files to work, though. I checked the error log and saw these errors: [Mon Apr 02 15:52:04 2001] [error] [asp] [174] [error] can't create group dir /tmp/asp_demo: No such

Re: mod_parrot

2001-04-02 Thread Tom Mornini
Hmmm. What was the date that this was announced? :-) On Monday, April 2, 2001, at 06:48 AM, Rod Butcher wrote: Does this mean Perl 6 is dogmeat ? Rod On Monday 02 April 2001 12:20, Bill Moseley wrote: I assume everyone saw this... ;) http://www.oreilly.com/parrot/ Bill Moseley

Re: ASP Win32 problems

2001-04-02 Thread Joshua Chamas
You probably solved the particular problem below by changing: PerlSetVar StateDir /tmp/asp_demo to a real directory on your system. On win32 platforms /temp/asp_demo should work pretty well too. Now that you changed that setting what does your error log give you? --Josh "George A. Fitch

Re: mirroring data across a server cluster [OT]

2001-04-02 Thread Todd Finney
Wouldn't it be easier to just buy an external RAID enclosure with dual scsi ports, and connect it both machines to the same disk backend? Your replication problem goes away, and you have half as many disks available for failure. Some models even allow for connection among three or more

RE: ASP Win32 problems

2001-04-02 Thread George A. Fitch III
It works fine. I had assigned setting in the httpd.conf file, but I failed to notice the .htaccess file in the eg/ directory. So no matter what I set in httpd.conf, the .htaccess file overrid everything. I figured this out when I did a file containing text search for PerlSetVar StateDir

RE: Changes to BOF schedule..!

2001-04-02 Thread Geoffrey Young
hi ken... the mod_perl BOF (BOF09) should not go up against any mod_perl session if it can be avoided as it stands now, this means it could fit in late afternoon/evening on thursday, nearly any time on friday, or wherever you decide it should go after the rearrangement... thanks for

Re: Long waits on SQL Stored Procs. Should I use chained contenthandlers?

2001-04-02 Thread Cees Hek
On Mon, 2 Apr 2001 [EMAIL PROTECTED] wrote: I need to run some stored procedures that take upwards of a minute to generate result sets. Ok, thats grand but I dont want the browser to sit there and twiddle. I'd like to display an animated gif. Simple. Right? I hope. Why can't you just

RE: Long waits on SQL Stored Procs. Should I use chained content handlers?

2001-04-02 Thread David Harris
One could handle this all in one request with an HTML layer controlled by JavaScript that performs counting for the user. This is better that multiple requests because you don't have to try starting processing in one HTTP request and giving the result to another HTTP request. Run everything in

internal_redirect

2001-04-02 Thread Jim Lambert
Hi, I'm trying to handle an exception using an internal_redirect. I can get it to work by redirecting to a static page, but when I try to redirect to a modperl handler, I'm run into problems. Here are the two versions of code (BTW, the handler works fine when I access it directly via the

repeated mySQL connections

2001-04-02 Thread Steven Wren
Hey I have been trying to optimize my mod-perl scripts, by following some of the instructions at http://perl.apache.org/guide/performance.html. I have added my mod-perl modules to my startup.pl file for Apache - along with usual stuff and CGI, Apache::DBI and DBI-install_driver("mysql"); When

cvs commit: modperl-2.0/Apache-Test/lib/Apache - New directory

2001-04-02 Thread dougm
dougm 01/04/02 01:49:36 modperl-2.0/Apache-Test/lib/Apache - New directory

cvs commit: modperl-2.0/Apache-Test/t - New directory

2001-04-02 Thread dougm
dougm 01/04/02 01:51:22 modperl-2.0/Apache-Test/t - New directory

cvs commit: modperl-2.0/Apache-Test/lib/Apache Test.pm

2001-04-02 Thread dougm
dougm 01/04/02 01:53:06 Added: Apache-Test/lib/Apache Test.pm Log: Test.pm wrapper to run under mod_perl Revision ChangesPath 1.1 modperl-2.0/Apache-Test/lib/Apache/Test.pm Index: Test.pm

cvs commit: modperl-2.0/Apache-Test/lib/Apache TestRequest.pm

2001-04-02 Thread dougm
dougm 01/04/02 01:55:43 Added: Apache-Test/lib/Apache TestRequest.pm Log: lwp wrappers / fallback for no lwp Revision ChangesPath 1.1 modperl-2.0/Apache-Test/lib/Apache/TestRequest.pm Index: TestRequest.pm

cvs commit: modperl-2.0/Apache-Test/lib/Apache TestConfigPerl.pm

2001-04-02 Thread dougm
dougm 01/04/02 01:57:34 Added: Apache-Test/lib/Apache TestConfigPerl.pm Log: test config stuff specific to modperl Revision ChangesPath 1.1 modperl-2.0/Apache-Test/lib/Apache/TestConfigPerl.pm Index: TestConfigPerl.pm

cvs commit: modperl-2.0/Apache-Test/lib/Apache TestConfig.pm

2001-04-02 Thread dougm
dougm 01/04/02 01:58:08 Added: Apache-Test/lib/Apache TestConfig.pm Log: base test config generator Revision ChangesPath 1.1 modperl-2.0/Apache-Test/lib/Apache/TestConfig.pm Index: TestConfig.pm

cvs commit: modperl-2.0/Apache-Test/lib/Apache TestServer.pm

2001-04-02 Thread dougm
dougm 01/04/02 01:58:38 Added: Apache-Test/lib/Apache TestServer.pm Log: methods to configure/control test server Revision ChangesPath 1.1 modperl-2.0/Apache-Test/lib/Apache/TestServer.pm Index: TestServer.pm

cvs commit: modperl-2.0/Apache-Test/lib/Apache TestRun.pm

2001-04-02 Thread dougm
dougm 01/04/02 01:59:56 Added: Apache-Test/lib/Apache TestRun.pm Log: methods to drive the tests Revision ChangesPath 1.1 modperl-2.0/Apache-Test/lib/Apache/TestRun.pm Index: TestRun.pm

cvs commit: modperl-2.0/Apache-Test/lib/Apache TestHandler.pm

2001-04-02 Thread dougm
dougm 01/04/02 02:00:29 Added: Apache-Test/lib/Apache TestHandler.pm Log: Perl*Handler utilities Revision ChangesPath 1.1 modperl-2.0/Apache-Test/lib/Apache/TestHandler.pm Index: TestHandler.pm

cvs commit: modperl-2.0/Apache-Test/t TEST ping.t request.t

2001-04-02 Thread dougm
dougm 01/04/02 02:01:25 Added: Apache-Test/t TEST ping.t request.t Log: test test files Revision ChangesPath 1.1 modperl-2.0/Apache-Test/t/TEST Index: TEST === #!perl use

cvs commit: modperl-2.0/t - New directory

2001-04-02 Thread dougm
dougm 01/04/02 02:03:17 modperl-2.0/t - New directory

cvs commit: modperl-2.0/t/conf - New directory

2001-04-02 Thread dougm
dougm 01/04/02 02:03:25 modperl-2.0/t/conf - New directory

cvs commit: modperl-2.0/t/response/TestAPR - New directory

2001-04-02 Thread dougm
dougm 01/04/02 02:03:57 modperl-2.0/t/response/TestAPR - New directory

cvs commit: modperl-2.0/t/response/TestApache - New directory

2001-04-02 Thread dougm
dougm 01/04/02 02:03:59 modperl-2.0/t/response/TestApache - New directory

cvs commit: modperl-2.0/t/response/TestApache post.pm

2001-04-02 Thread dougm
dougm 01/04/02 02:06:07 Added: t/response/TestApache post.pm Log: start of extended apache test Revision ChangesPath 1.1 modperl-2.0/t/response/TestApache/post.pm Index: post.pm

cvs commit: modperl-2.0/t/hooks/TestHooks - New directory

2001-04-02 Thread dougm
dougm 01/04/02 02:09:04 modperl-2.0/t/hooks/TestHooks - New directory

cvs commit: modperl-2.0/t/hooks/TestHooks authen.pm

2001-04-02 Thread dougm
dougm 01/04/02 02:09:40 Added: t/hooks authen.t t/hooks/TestHooks authen.pm Log: start of hooks tests Revision ChangesPath 1.1 modperl-2.0/t/hooks/authen.t Index: authen.t

cvs commit: modperl-2.0/t TEST.PL

2001-04-02 Thread dougm
dougm 01/04/02 02:11:18 Added: tTEST.PL Log: the TEST template Revision ChangesPath 1.1 modperl-2.0/t/TEST.PL Index: TEST.PL === #!perl use strict; use warnings

cvs commit: modperl-2.0 Makefile.PL

2001-04-02 Thread dougm
dougm 01/04/02 02:17:41 Modified:.Makefile.PL Log: hook into test stuff Revision ChangesPath 1.30 +23 -1 modperl-2.0/Makefile.PL Index: Makefile.PL === RCS file:

cvs commit: modperl-2.0/t/filter/TestFilter - New directory

2001-04-02 Thread dougm
dougm 01/04/02 11:16:33 modperl-2.0/t/filter/TestFilter - New directory

cvs commit: modperl-2.0/t/filter reverse.t

2001-04-02 Thread dougm
dougm 01/04/02 11:36:31 Modified:Apache-Test/lib/Apache TestConfig.pm TestConfigPerl.pm TestServer.pm Added: t/filter reverse.t Log: put a warning inside files that are generated Revision ChangesPath 1.2 +17 -5

cvs commit: modperl-2.0/t/filter .cvsignore reverse.t

2001-04-02 Thread dougm
dougm 01/04/02 11:55:00 Added: t/filter .cvsignore Removed: t/filter reverse.t Log: whoops Revision ChangesPath 1.1 modperl-2.0/t/filter/.cvsignore Index: .cvsignore ===

cvs commit: modperl-2.0/xs/Apache/Access - New directory

2001-04-02 Thread dougm
dougm 01/04/02 12:25:23 modperl-2.0/xs/Apache/Access - New directory

cvs commit: modperl-2.0/xs/maps apache_functions.map

2001-04-02 Thread dougm
dougm 01/04/02 12:30:40 Modified:t/hooks authen.t t/hooks/TestHooks authen.pm xs modperl_xs_util.h xs/maps apache_functions.map Added: xs/Apache/Access Apache__Access.h Log: add get_basic_auth_pw() wrapper and tests

cvs commit: modperl-2.0/Apache-Test/lib/Apache TestConfig.pm TestConfigPerl.pm

2001-04-02 Thread dougm
dougm 01/04/02 17:27:02 Modified:Apache-Test/lib/Apache TestConfig.pm TestConfigPerl.pm Log: shift certain .pm __DATA__ config directives outside its container, e.g. Alias allow containers inside .pm __DATA__ config Revision ChangesPath 1.4 +1 -1

cvs commit: modperl-2.0/t/filter/TestFilter lc.pm

2001-04-02 Thread dougm
dougm 01/04/02 17:28:27 Added: t/filter lc.t t/filter/TestFilter lc.pm Log: add another filter test (lowercase filter) Revision ChangesPath 1.1 modperl-2.0/t/filter/lc.t Index: lc.t

cvs commit: modperl-2.0/Apache-Test/t/conf - New directory

2001-04-02 Thread dougm
dougm 01/04/02 21:26:23 modperl-2.0/Apache-Test/t/conf - New directory

cvs commit: modperl-2.0/src/modules/perl modperl_callback.c

2001-04-02 Thread dougm
dougm 01/04/02 22:23:47 Modified:src/modules/perl modperl_callback.c Log: if handler is resolved at request time and not duped (prefork-mpm case), need to use s-process-pconf pool Revision ChangesPath 1.37 +12 -2