Re: ASP.NET Linux equivalent?

2001-12-06 Thread Dave Hodgkinson
Medi Montaseri [EMAIL PROTECTED] writes: You can also use the tie() feature of Perl to abstract read/write to database. In fact you can write a pretty flexible module to figure out many things, such as table name, col name, etc... I'm a HUGE fan of Tie::DBI for dealing with little lookup

ANNOUNCE: Log::Dispatch::Config 0.04

2001-12-06 Thread Tatsuhiko Miyagawa
Log::Dispatch::Config provides a way to configure Log::Dispatch with AppConfig style config file format. newest version 0.04 has done whole architecture redesign (subclassing, kickout messy closure), and now is on its way to CPAN. 0.04 Thu Dec 6 18:33:50 JST 2001 * --- API change

Re: ANNOUNCE: Log::Dispatch::Config 0.04

2001-12-06 Thread Tatsuhiko Miyagawa
0.04 has a problem in Makefile.PL (CVS replaces $Log: with his RCS keyword, Crap!). Now 0.05 is uploaded or can be fetched from: http://bulknews.net/lib/archives/Log-Dispatch-Config-0.05.tar.gz On Thu, 06 Dec 2001 19:01:34 +0900 Tatsuhiko Miyagawa [EMAIL PROTECTED] wrote:

have a memory leaking

2001-12-06 Thread [EMAIL PROTECTED]
Hello All, I have a problem with configuring Apache from mod_perl. Descriptions of all virtual host i've got from MySQL DB. And in cycle wrote: $VirtualHost{$row[0]:80} = { ServerName = $row[0], DocumentRoot = $root/www, ErrorLog = $root/logs/error_log, CustomLog =

CGI.pm 2.78 and mod_perl 1.26 troubles

2001-12-06 Thread David Shrewsbury
Hey gang, I just upgraded the CGI.pm perl module to 2.78 (don't know what the old version was) and now none of my scripts running under Apache::Registry are working. Instead of executing the scripts, I'm prompted to save the script. Here is a sample script: #!/usr/bin/perl use CGI

Re: a new modperl book: mod_perl Developer's Cookbook

2001-12-06 Thread Geoffrey Young
Stas Bekman wrote: SAMS will publish the new mod_perl Developer's Cookbook by Geoffrey Young, Paul Lindner and Randy Kobes in January, 2002. You can find more info at http://www.modperlcookbook.org/. Great work guys! thanks for the mention Stas - a bit ahead of schedule but appreciated

Creating an installable web site.

2001-12-06 Thread Chris Pizzo
Im looking for a way to create an installable version of my wesite to distribute to customers that don't have web access. The site basically shows the inventory I have and uses a postgres database and mod perl to show the product sorted in the manner that the user wants to see it. Can someone

Re: a new modperl book: mod_perl Developer's Cookbook

2001-12-06 Thread Robert Landrum
At 10:56 AM -0500 12/6/01, Geoffrey Young wrote: Stas Bekman wrote: SAMS will publish the new mod_perl Developer's Cookbook by Geoffrey Young, Paul Lindner and Randy Kobes in January, 2002. You can find more info at http://www.modperlcookbook.org/. Great work guys! thanks for the mention

Re: a new modperl book: mod_perl Developer's Cookbook

2001-12-06 Thread Geoffrey Young
Advance ordered via Amazon.com! Actually I did it awhile ago when I first found out that there was a new mod_perl. cool. BTW, if you do pre-order, following the amazon link from our homepage results in a little extra for us authors (which helps pay for things like domain registration fees

[RFC] Apache::CacheContent - Caching PerlFixupHandler

2001-12-06 Thread Paul Lindner
Hi, I would like to propose a new Apache module before I send it off to CPAN. The name chosen is Apache::CacheContent. It's pretty generic code, and is intended to be subclassed. It handles the gory details of caching a page to disk and serving it up until it expires. It's derived from

Re: ASP.NET Linux equivalent?

2001-12-06 Thread darren chamberlain
Dave Hodgkinson [EMAIL PROTECTED] said something to this effect on 12/06/2001: Whatever happened to the widget subproject that span out of the modperl list a few months ago? http://www.officevision.com/pub/Widget/ Not too active lately: http://sourceforge.net/project/stats/?group_id=27958

Re: Creating an installable web site.

2001-12-06 Thread Luciano Miguel Ferreira Rocha
On Thu, Dec 06, 2001 at 11:01:09AM -0500, Chris Pizzo wrote: Im looking for a way to create an installable version of my wesite to distribute to customers that don't have web access. The site basically shows the inventory I have and uses a postgres database and mod perl to show the product

Re: CGI.pm 2.78 and mod_perl 1.26 troubles

2001-12-06 Thread David Shrewsbury
Solved it... apparently, if you upgrade CGI.pm while your web server is running, a restart is not good enough. You have to shutdown completely and then start it back up. *Sigh* -David On Thu, 2001-12-06 at 10:43, David Shrewsbury wrote: Hey gang, I just upgraded the CGI.pm perl

[ANNOUNCE] OpenFrame 2.06

2001-12-06 Thread James A. Duncan
OpenFrame 2.06 has just been uploaded to CPAN. OpenFrame is a Perl Application framework that coexists nicely with mod_perl. We had lots of helpful feedback from the last release which has been bundled into this one, along with several other improvements. The OpenFrame website is running at

Re: have a memory leaking

2001-12-06 Thread Paul Lindner
On Thu, Dec 06, 2001 at 04:58:31PM +0300, alexis@kubic wrote: Hello All, I have a problem with configuring Apache from mod_perl. Descriptions of all virtual host i've got from MySQL DB. And in cycle wrote: [snip] And all well (all works!), but when rebooting an apache (apachectl

Re: [RFC] Apache::CacheContent - Caching PerlFixupHandler

2001-12-06 Thread Perrin Harkins
I would like to propose a new Apache module before I send it off to CPAN. The name chosen is Apache::CacheContent. This is very cool. I was planning to write one of these, and now I don't have to. Your implementation is short and interesting. I was planning to do it with a PerlFixupHandler

Re: Creating an installable web site.

2001-12-06 Thread Brett W. McCoy
On Thu, 6 Dec 2001, Luciano Miguel Ferreira Rocha wrote: * have on cd apache with mod_perl and postgresl in installable form with your data. Or have them already installed on the cd. The problem here is that the source for your entire site will have to be distributed too and available

Re: [RFC] Apache::CacheContent - Caching PerlFixupHandler

2001-12-06 Thread Bill Moseley
At 08:19 AM 12/06/01 -0800, Paul Lindner wrote: Ok, hit me over the head. Why wouldn't you want to use a caching proxy? BTW -- I think where the docs are cached should be configurable. I don't like the idea of the document root writable by the web process. Bill Moseley mailto:[EMAIL

Re: CGI.pm 2.78 and mod_perl 1.26 troubles

2001-12-06 Thread Brett W. McCoy
On 6 Dec 2001, David Shrewsbury wrote: Solved it... apparently, if you upgrade CGI.pm while your web server is running, a restart is not good enough. You have to shutdown completely and then start it back up. yeah, especially if you're using mod_perl and have pre-loaded modules at server

Re: [RFC] Apache::CacheContent - Caching PerlFixupHandler

2001-12-06 Thread Tatsuhiko Miyagawa
On Thu, 06 Dec 2001 10:04:26 -0800 Bill Moseley [EMAIL PROTECTED] wrote: BTW -- I think where the docs are cached should be configurable. I don't like the idea of the document root writable by the web process. Maybe: Alias /cached /tmp/cache -- Tatsuhiko Miyagawa [EMAIL PROTECTED]

Re: [RFC] Apache::CacheContent - Caching PerlFixupHandler

2001-12-06 Thread Tatsuhiko Miyagawa
On Thu, 6 Dec 2001 08:19:09 -0800 Paul Lindner [EMAIL PROTECTED] wrote: I've attached a README below. To download it go to http://www.modperlcookbook.org/code.html Nice one. here's a patch to make the sample code work :) --- CacheContent.pm~Thu Dec 6 22:11:35 2001 +++ CacheContent.pm

Re: [RFC] Apache::CacheContent - Caching PerlFixupHandler

2001-12-06 Thread Matt Sergeant
On Thu, 6 Dec 2001, Paul Lindner wrote: On Thu, Dec 06, 2001 at 10:04:26AM -0800, Bill Moseley wrote: At 08:19 AM 12/06/01 -0800, Paul Lindner wrote: Ok, hit me over the head. Why wouldn't you want to use a caching proxy? Apache::CacheContent gives you more control over the caching

Re: [RFC] Apache::CacheContent - Caching PerlFixupHandler

2001-12-06 Thread Bill Moseley
At 10:33 AM 12/06/01 -0800, Paul Lindner wrote: On Thu, Dec 06, 2001 at 10:04:26AM -0800, Bill Moseley wrote: At 08:19 AM 12/06/01 -0800, Paul Lindner wrote: Ok, hit me over the head. Why wouldn't you want to use a caching proxy? Apache::CacheContent gives you more control over the caching

Re: [RFC] Apache::CacheContent - Caching PerlFixupHandler

2001-12-06 Thread Paul Lindner
On Thu, Dec 06, 2001 at 10:47:35AM -0800, Bill Moseley wrote: Ok, hit me over the head. Why wouldn't you want to use a caching proxy? Apache::CacheContent gives you more control over the caching process and keeps the expiration headers from leaking to the browser. Ok, I see. Or maybe

Tie Database Manipulation

2001-12-06 Thread c . hauser
Basel, Donnerstag, 6. Dezember 2001, 20:39:06 . Hello I'm just in some considerations for data handling using mysql. I can not decide if I should work directly with sql statements near the displaylogic (as I like sql, simple and quick) or if I should build

Re: [RFC] Apache::CacheContent - Caching PerlFixupHandler

2001-12-06 Thread Igor Sysoev
On Thu, 6 Dec 2001, Paul Lindner wrote: On Thu, Dec 06, 2001 at 10:04:26AM -0800, Bill Moseley wrote: At 08:19 AM 12/06/01 -0800, Paul Lindner wrote: Ok, hit me over the head. Why wouldn't you want to use a caching proxy? Apache::CacheContent gives you more control over the caching

Re: [RFC] Apache::CacheContent - Caching PerlFixupHandler

2001-12-06 Thread Andrew Ho
Hello, PLThat's the price you pay for this functionality. Because we use PLApache's native file serving code we need a url-directory mapping PLsomewhere. PL PLOf course you don't need to make the entire docroot writable, just the PLdirectory corresponding to your script. Apologies if this is

Re: [RFC] Apache::CacheContent - Caching PerlFixupHandler

2001-12-06 Thread Paul Lindner
On Thu, Dec 06, 2001 at 12:55:25PM -0800, Andrew Ho wrote: Hello, PLThat's the price you pay for this functionality. Because we use PLApache's native file serving code we need a url-directory mapping PLsomewhere. PL PLOf course you don't need to make the entire docroot writable, just the

PerlWarn and syslog

2001-12-06 Thread Lance Uyehara
I am using apache+mod_perl and have: ErrorLog syslog PerlWarn On However the warning don't come out. If I change to ErrorLog /var/log/logfile or something similar then the warning start appearing. How do I get the warnings when syslog is used? Thanks, Lance

Re: PerlWarn and syslog

2001-12-06 Thread Paul Lindner
On Thu, Dec 06, 2001 at 02:11:28PM -0800, Lance Uyehara wrote: I am using apache+mod_perl and have: ErrorLog syslog PerlWarn On However the warning don't come out. If I change to ErrorLog /var/log/logfile or something similar then the warning start appearing. How do I get the warnings

Re: PerlWarn and syslog

2001-12-06 Thread Ged Haywood
Hi there, On Thu, 6 Dec 2001, Lance Uyehara wrote: ErrorLog syslog Are you sure you want to do this? How do I get the warnings when syslog is used? There are some tips in Stas Bekman's new book, not yet published (you'll have to become a reviwer:) and you will find some help in the guide

Re: PerlWarn and syslog

2001-12-06 Thread Stas Bekman
Ged Haywood wrote: Hi there, On Thu, 6 Dec 2001, Lance Uyehara wrote: ErrorLog syslog Are you sure you want to do this? How do I get the warnings when syslog is used? There are some tips in Stas Bekman's new book, not yet published (you'll have to become a reviwer:) and you

Problem with Apache::AuthCookie-3.00

2001-12-06 Thread Steven Lembark
Getting multiple HTTP replies returned to the client. They get a form and followig it an 'access denied' message from Apache. The examples I've seen of login_form code use a simple print to get things on the screen (e.g., Apache::AuthTicket). I've tried this and various combinations of sending

cvs commit: modperl-site index.html

2001-12-06 Thread stas
stas01/12/06 09:01:44 Modified:.index.html Log: - link to the mysql perl book (chapter 3 is modperl) Revision ChangesPath 1.95 +8 -0 modperl-site/index.html Index: index.html

cvs commit: modperl-2.0/t/response/TestModperl getc.pm

2001-12-06 Thread dougm
dougm 01/12/06 20:47:13 Modified:t/response/TestModperl getc.pm Log: always untie/tie STDIN Revision ChangesPath 1.2 +2 -1 modperl-2.0/t/response/TestModperl/getc.pm Index: getc.pm ===