[DIGEST] mod_perl digest 2001/06/09

2001-06-11 Thread Geoffrey Young
-- mod_perl digest June 3, 2001 - June 9, 2001 -- Recent happenings in the mod_perl world... Features o

Re: Make Test problems...

2001-06-11 Thread Ged Haywood
On Sun, 10 Jun 2001, Ian (the webguy) wrote: I'm running RedHat 6.2 on an P5/300 with 128MB of RAM and 10GB of HDD. I've grabbed the latest stable versions of Apache (1.3.9), and mod_perl. [snip] I keep on running into problems with the make test portion of my installation. Snippets are

Single Process Mode IIS

2001-06-11 Thread Purcell, Scott
Hello, I joined the modperl line because I am trying to work with persistent web data. My problem is that I am forced into using PerlEx, which is basically activestates mod-perl. If this offends anyone on this list, please let me know. My hands are tired. I am a perl developer needing assistance.

Re: Single Process Mode IIS

2001-06-11 Thread Gunther Birznieks
It's not the same as apache. to do the equivalent set your max perl engines in PerlEx to 1 and that will serve the same purpose. At 09:33 AM 6/11/01 -0500, Purcell, Scott wrote: Hello, I joined the modperl line because I am trying to work with persistent web data. My problem is that I am forced

Re: Make Test problems...

2001-06-11 Thread Steven Lembark
snip file called makpl_args.mod_perl in the mod_perl directory. The best arrangement for the directories seems to be something like: snip Even easier, put .makepl_args.mod_perl into your home directory and you won't have to re-create it every time you go to re-build Apache.

Questions Concerning Large Web-Site

2001-06-11 Thread Purcell, Scott
Hello, I have a large asset-management system that is web-based. In the past I have always used cgi and perl. I need to rewrite it so that it works with mod-perl or PerlEx Anyway, I used to tie my site together with a main, and a ton of requires (which required pages of subroutines). I would

Re: Questions Concerning Large Web-Site

2001-06-11 Thread John Armstrong
I'd convert each 'module' into a real Perl module( YourPackage::Search.pm etc ) and then configure it at the directory level. Location /search SetHandler perl-script PerlHandler YourPackageSpace::Search /Location Or you can just take your script and throw it into a single module's

Re: Questions Concerning Large Web-Site

2001-06-11 Thread James G Smith
Purcell, Scott [EMAIL PROTECTED] wrote: I was hoping to hear some simple input from people who have architected good, sound sites, and was hoping for some good feedback, or some old sample code that I can study and find out how the other half live. Well, I can give some things I've tried to live

JOB: Staff Perl/CGI Programmer

2001-06-11 Thread Jesse Erlbaum
Perl Programmer needed for Staff position in New York City Vanguard Media is looking for a skilled, detail-oriented Perl/CGI programmer to work on Web-Application development projects! Skills Sought: * Perl 5 * CGI * SQL * CGI.pm * DBI * HTML::Template * CGI::Application * HTML * JavaScript *

Re: Questions Concerning Large Web-Site

2001-06-11 Thread Ron Beck
Is there a good tutorial or book on the subject of constructing Perl modules? I too have done some of this and would like to create actual modules instead of required subroutines. Ron John Armstrong wrote: I'd convert each 'module' into a real Perl module( YourPackage::Search.pm etc ) and

Re: Questions Concerning Large Web-Site

2001-06-11 Thread John Armstrong
The Eagle book ( linked to from http://perl.apache.org/ ) is a good resource. Generally speaking though you can get what you need to start in the guide ( http://perl.apache.org/guide/ ), its pretty simple to get started. John- On 6/11/01 12:42 PM, Ron Beck [EMAIL PROTECTED] wrote: Is there

RE: Questions Concerning Large Web-Site

2001-06-11 Thread Joe Breeden
I like Writing Apache Modules with Perl and C from O'Reilly (ISBN: 1-56592-567-X). -- Sent from my Outlook 2000 Wired Deskheld (www.microsoft.com) -Original Message- From: Ron Beck [mailto:[EMAIL PROTECTED]] Sent: Monday, June 11, 2001 2:42 PM To: John Armstrong

Re: Questions Concerning Large Web-Site

2001-06-11 Thread Ken Williams
[EMAIL PROTECTED] (Ron Beck) wrote: Is there a good tutorial or book on the subject of constructing Perl modules? I too have done some of this and would like to create actual modules instead of required subroutines. I've written one, at http://www.mathforum.com/~ken/perl_modules.html It's

Check Persistance

2001-06-11 Thread Purcell, Scott
Hello, Newbie modperl guy has question about the code he created today. This is the beginning of a web site, and when the user logs in, I want to create a socket that will remain persistent in memory until the WebServer is started again. I do NOT want to keep opening up sockets each time this

Re: comparison of templating methods?

2001-06-11 Thread will trillich
On Sun, Jun 10, 2001 at 10:36:17PM +0800, Gunther Birznieks wrote: At 08:59 AM 6/8/2001 -0500, will trillich wrote: which of the existing paradigms will the widget farm most closely resemble? and what are your expectations for tradeoff in functionality/modularity-vs-performance? 1) What do

Re: Questions Concerning Large Web-Site

2001-06-11 Thread Matt Sergeant
On Mon, 11 Jun 2001, Ron Beck wrote: Is there a good tutorial or book on the subject of constructing Perl modules? I too have done some of this and would like to create actual modules instead of required subroutines. There's a good intro (though I'm biased) on http://take23.org/ --

Re: comparison of templating methods?

2001-06-11 Thread Matt Sergeant
On Mon, 11 Jun 2001, will trillich wrote: At 08:59 AM 6/8/2001 -0500, will trillich wrote: which of the existing paradigms will the widget farm most closely resemble? and what are your expectations for tradeoff in functionality/modularity-vs-performance? 1) What do you mean by your

Re: IP based instant throttle?

2001-06-11 Thread Perrin Harkins
[EMAIL PROTECTED] (Randal L. Schwartz) wrote: I'm told that my CPU throttler was used at etoys.com for a similar purpose, and permitted them to keep from losing millions of dollars of revenue due to people spidering their catalog. That's correct, although it was actually a bunch of DoS

Re: Questions Concerning Large Web-Site

2001-06-11 Thread Ron Savage
There is a tutorial here http://savage.net.au/Perl-tutorials.html#tut-1 on a Perl program which generates the source of a module, installs and tests it. Cheers Ron Savage [EMAIL PROTECTED] http://savage.net.au/index.html [snip] Is there a good tutorial or book on the subject of constructing