Re: modperl/ASP and MVC design pattern

2001-04-20 Thread Brett W. McCoy
On Fri, 20 Apr 2001, Francesco Pasqualini wrote: > an interesting feature of JSP is the possibility to use the MVC design > pattern (INPUT/OUTPUT/LOGIC separation) This is obtained with the > "forward" instruction. How the MVC design pattern can be implemented > in the mod_perl (and specifically

modperl/ASP and MVC design pattern

2001-04-20 Thread Francesco Pasqualini
an interesting feature of JSP is the possibility to use the MVC design pattern (INPUT/OUTPUT/LOGIC separation) This is obtained  with the "forward" instruction. How the MVC design pattern can be implemented in the mod_perl (and specifically Apache::ASP) architecture ?   Thanks Francesco

Re: modperl security model question

2001-04-17 Thread G.W. Haywood
Hi all, On Mon, 16 Apr 2001, darren chamberlain wrote: > Thomas K. Burkholder ([EMAIL PROTECTED]) said [snip] > > my $input = IO::File->new("http://perl.apache.org/guide). It can help to include the system error string (from the Perl special variable $!) in the error message which you print

Re: modperl security model question

2001-04-17 Thread Issac Goldstand
darren chamberlain wrote: > > Be sure to check that $line is defined: > Even better: > > > > use IO::File; > > my $input = IO::File->new("getline() || 'some safe default value, like ""'; > die "\$line is not defined" unless (defined $line); # <-- Now not really needed > >

Mea Culpa [Was: Re: modperl security model question]

2001-04-16 Thread Thomas K. Burkholder
It's defined all right, it gets printed to STDERR. The problem was that the file I was actually using was a perl file '/tmp/foo.pl', just because it didn't matter what was in the file while I tried to make it work. But, wait, it does matter, because the first thing in the file was "use Data::Du

Re: modperl security model question

2001-04-16 Thread darren chamberlain
Be sure to check that $line is defined: Thomas K. Burkholder ([EMAIL PROTECTED]) said something to this effect on 04/16/2001: > Note, /tmp/tmppswd is read-only by the installer of the product, but I should > be root in access.conf (right?) so I should be able to read it anyway. > > > use

Re: modperl question

2001-04-16 Thread Daniel
write than C. However, In his article on modperl > and ISP's, Stas says: > > >>> Note that it's impossible to run suEXEC and cgiwrap extensions under >> > mod_perl. > >>> Of course as an ISP you can run mod_perl internally, without allowing yo

Re: modperl security model question

2001-04-16 Thread Thomas K. Burkholder
t: > 7E18 C018 D623 A57B 7F37 D902 8C84 7675 E0FA 561B > > - Original Message - > From: "sterling" <[EMAIL PROTECTED]> > To: "Thomas K. Burkholder" <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> > Sent: Sunday, April 15, 2001 6:06 PM

Re: modperl security model question

2001-04-15 Thread Issac Goldstand
mouse won't get you into trouble... Clicking it might. --Anonymous PGP Key 0xE0FA561B - Fingerprint: 7E18 C018 D623 A57B 7F37 D902 8C84 7675 E0FA 561B - Original Message - From: "sterling" <[EMAIL PROTECTED]> To: "Thomas K. Burkholder" <[EMAIL PROTECTED]> Cc: &

Re: modperl security model question

2001-04-15 Thread sterling
On Sun, 15 Apr 2001, Thomas K. Burkholder wrote: > Thanks again for the help - I have another one- > > My application consists of perl modules with file permissions set only > to a particular user 'burkhold'. The database password is kept in > plaintext in one of those modules. I use the User:

modperl security model question

2001-04-14 Thread Thomas K. Burkholder
Thanks again for the help - I have another one- My application consists of perl modules with file permissions set only to a particular user 'burkhold'. The database password is kept in plaintext in one of those modules. I use the User: and Group: directives in access.conf to cause the uid of th

modperl question

2001-04-13 Thread John V. Jaskolski
I want to write a Web Hosting Control Panel for virtually hosting web sites (100 to 1000 per server). I am debating whether to write it in Perl, mod_perl or C. I want to write it in mod_perl because it would be faster than Perl and easier to write than C. However, In his article on modperl and

Proxy and Modperl is working properly

2001-04-12 Thread Raju Vatsavai
Hi, After doing troubleshooting I fix the problem. ./configure --activate-module=src/module/perl/libperl.a --enable-shared=perl --enable-module=proxy --enable-shared=proxy; ( I removed this line then its working) make make install

Re: Problem with modperl

2001-04-12 Thread Mirek Rewak
Hello Escario, Tuesday, April 10, 2001, 6:41:49 PM, you wrote: EJ> Hello, EJ> I've compiled mod_perl as a Apache module with apxs after I installing EJ> apache. EJ> So I load mod_perl with this in the httpd.conf : EJ> LoadModule Perllibexec/modperl.so EJ> Next apache restart correctly ... EJ

Re: Problem with modperl

2001-04-11 Thread Daniel
Hi there, I've had similar problems before with a stock install of Redhat 6.x and their installation of apache + mod_perl (dso) + php It's been a long time now but if my memory serves me correctly (probably not) loading mod_perl before php in the httpd.conf file worked (in some instances). Re

Re: Problem with modperl

2001-04-10 Thread G.W. Haywood
Hi again, On Tue, 10 Apr 2001, Escario Julien wrote: > I forgot a detail : I'm using mod_vhost_alias , is mod_perl compatible ? It probably isn't the problem, I use it too. But don't take my word for it. > [Tue Apr 10 19:46:23 2001] [notice] child pid 1500 exit signal > Segmentation fault (11

Re: Problem with modperl

2001-04-10 Thread Escario Julien
Here's exactly the line in httpd.conf : LoadModule perl_modulelibexec/libperl.so I'm gone on http://perl.apache.org/guide/ but nothing is said on my case. I forgot a detail : I'm using mod_vhost_alias , is mod_perl compatible ? On apache restart here's what I get in error_log : [Tue Apr 1

Re: Problem with modperl

2001-04-10 Thread G.W. Haywood
Hi there, On Tue, 10 Apr 2001, Escario Julien wrote: > This document contains no data ... > but why ? Could be lots of reasons. Often it's because Apache is segfaulting. Look in the error_log, it might tell you. Have you read the guide? http://perl/apache.org/guide 73, Ged.

Problem with modperl

2001-04-10 Thread Escario Julien
Hello, I've compiled mod_perl as a Apache module with apxs after I installing apache. So I load mod_perl with this in the httpd.conf : LoadModule Perllibexec/modperl.so Next apache restart correctly ... When I try to get any of the web page, Netscpe return me : This document contains no data .

modperl 2.0 build... MM.pm

2001-04-08 Thread Rudy
I built Apache 2 and mod_perl for the first time today. To get it to work, I had to edit: blib/lib/ModPerl/MM.pm and add: use Apache::Build; for the 'make install' to work. Now... it is built, and I am ready to try out stuff like Apache::Echo that I learned about at the ApacheCon. Rudy

Re: Optimizing memory use of modperl servlets

2001-04-07 Thread Christopher L. Everett
Why not store all that static information using Cache::File? --Christopher Everett

Re: Optimizing memory use of modperl servlets

2001-04-05 Thread Stas Bekman
[ an extensive description of sharing memory question snipped ] Please read (or reread) these sections of the guide: http://perl.apache.org/guide/performance.html#Sharing_Memory http://perl.apache.org/guide/performance.html#Improving_Performance_by_Prevent http://perl.apache.org/guide/strategy.

Optimizing memory use of modperl servlets

2001-04-05 Thread Bryce Pasechnik
I've done extensive reading in both the guide and the maillist archives and haven't found a very comprehensive explanation of this topic. First I'll explain the setup of the scripts and webserver that we're using: I have 1 accessor script that the public would connect to "test.pl". Inside that

Re: Problem with Tie::DBI and DBI in modperl

2001-03-20 Thread Perrin Harkins
On Tue, 20 Mar 2001, John Mulkerin wrote: > There is no error message returned, it just goes back to the httpd 403 > error screen. What about in the error log? Have you read the DBI docs on how to get your error message to print? You should either have RaiseError on or be checking return codes

Re: Problem with Tie::DBI and DBI in modperl

2001-03-20 Thread John Mulkerin
ons)" statement. John - Original Message - From: "Perrin Harkins" <[EMAIL PROTECTED]> To: "John Mulkerin" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, March 19, 2001 11:34 PM Subject: Re: Problem with Tie::DBI and DBI in modperl &g

Re: Problem with Tie::DBI and DBI in modperl

2001-03-19 Thread Perrin Harkins
On Mon, 19 Mar 2001, John Mulkerin wrote: > I'm trying to use the plain vanilla TicketTool.pm from O'Reilly's mod > perl book, Apache Modules with Perl and C. It uses Tie::DBI to create > a hash of the mysql connection. When I run just the authentication > subroutine with Perl -d "authenticate.p

Problem with Tie::DBI and DBI in modperl

2001-03-19 Thread John Mulkerin
O mighty Wizards please help if you can: I'm trying to use the plain vanilla TicketTool.pm from O'Reilly's mod perl book, Apache Modules with Perl and C. It uses Tie::DBI to create a hash of the mysql connection. When I run just the authentication subroutine with Perl -d "authenticate.pm" it r

Segfault on ppc-linux with modperl-1.25 with Apache 1.3.19 whencalling $r->send_fd()

2001-03-18 Thread Mark Lipscombe
Hi, Apologies in advance for the length of this message. I have two (apparently) identical setups, consisting of the following: Apache 1.3.19 with php4, mod_ssl & mod_perl compiled statically Perl 5.6.0 (output of -V appears at the end of this message) The only obvious difference is system A i

Re: modPerl build failure

2001-03-07 Thread Jens-Uwe Mager
On Wed, Mar 07, 2001 at 12:19:57PM -, [EMAIL PROTECTED] wrote: > Sirs, > I am trying to build the modperl module using apaci without success. > The platform is AIX 4.3.2 with Apache 1.3.17,Perl 5.6.0. > I can build the apache httpd module ok using the same configure rout

modPerl build failure

2001-03-07 Thread jim . a . davidson
Sirs, I am trying to build the modperl module using apaci without success. The platform is AIX 4.3.2 with Apache 1.3.17,Perl 5.6.0. I can build the apache httpd module ok using the same configure routine as in ./configure --prefix=/xxx/xxx/x but when I add in --activate-module=/src/modules

Re: Microsoft's Remote Scripting - modperl equivalent?

2001-03-03 Thread Gunther Birznieks
tion can happen without the need to load >a new page. > > There are two parts to it - the Javascript->Applet interface and >the Applet->ModPerl connection. > > Is there a mod_perl module out there that does this? If not, is >such a thi

Microsoft's Remote Scripting - modperl equivalent?

2001-03-03 Thread Nigel Hamilton
nterface and the Applet->ModPerl connection. Is there a mod_perl module out there that does this? If not, is such a thing useful? Regards, NIge Nigel Hamilton __ http://turbo10.com Turbo10 Search Engine

modperl book chapter 7 - correction

2001-02-20 Thread Kees . Vonk
I don't know if anyone has mentioned this before (it is still wrong on www.modperl.com), but as far as I can see the 'Apache::DefaultTrans' example in chapter7 of the modperl book contains an error, the line: if($uri !~ m:^/: or index($uri, '*')) { should rea

Re: Segfault: apache-1.3.17+modperl-1.25

2001-02-15 Thread dima
Perl 5.6.0 (no largefiles, no threads) > Apache 1.3.17 > modperl 1.25 (as a DSO) > gcc 2.95.2 (using Sun's as and ld) > > If I run apache leaving out: > LoadModule perl_modulelibexec/libperl.so > AddModule mod_perl.c > it runs

Re: Segfault: apache-1.3.17+modperl-1.25

2001-02-14 Thread Vasily Petrushin
On Wed, 14 Feb 2001, Gary Algier wrote: > My children are segfaulting. > > I have: > Solaris 2.6 (w/all latest patches installed right after the OS) > Perl 5.6.0 (no largefiles, no threads) > Apache 1.3.17 > modperl 1.25 (as a DSO) > gcc 2.

Re: Segfault: apache-1.3.17+modperl-1.25

2001-02-14 Thread ___cliff rayman___
ren are segfaulting. > > I have: > Solaris 2.6 (w/all latest patches installed right after the OS) > Perl 5.6.0 (no largefiles, no threads) > Apache 1.3.17 > modperl 1.25 (as a DSO) > gcc 2.95.2 (using Sun's as and ld) &g

Segfault: apache-1.3.17+modperl-1.25

2001-02-14 Thread Gary Algier
My children are segfaulting. I have: Solaris 2.6 (w/all latest patches installed right after the OS) Perl 5.6.0 (no largefiles, no threads) Apache 1.3.17 modperl 1.25 (as a DSO) gcc 2.95.2 (using Sun's as and ld) If I run apache leavin

Re: modperl and win32

2001-02-14 Thread Randy Kobes
On Wed, 14 Feb 2001, Xavier Bouligaud wrote: > if I don't have VC++ on win32, how I can use Perl with Apache. If you're running Win32 ActivePerl, there are some ppm packages of mod_perl and some other Apache::* modules available - see http://perl.apache.org/distributions.html for links. best re

modperl and win32

2001-02-14 Thread Xavier Bouligaud
if I don't have VC++ on win32, how I can use Perl with Apache.

Re: modperl + FrontPage Server Extensions

2001-02-05 Thread Ričardas Čepas
On Mon Feb 5 14:47:22 2001 + Matt Sergeant wrote: > On Mon, 5 Feb 2001, Rafael Caceres wrote: > > > Hi Jose: > > > > I don't use Apache-ASP, but we have Apache-Sandwich, SSL and FrontPage > > support in both a Linux and Alpha boxes, and have never seen a conflict. > > The only tough part wa

Re: modperl + FrontPage Server Extensions

2001-02-05 Thread Matt Sergeant
On Mon, 5 Feb 2001, Rafael Caceres wrote: > Hi Jose: > > I don't use Apache-ASP, but we have Apache-Sandwich, SSL and FrontPage > support in both a Linux and Alpha boxes, and have never seen a conflict. > The only tough part was building it, as SSL and Frontpage try to patch the > same source fil

Re: modperl + FrontPage Server Extensions

2001-02-05 Thread Rafael Caceres
Hi Jose: I don't use Apache-ASP, but we have Apache-Sandwich, SSL and FrontPage support in both a Linux and Alpha boxes, and have never seen a conflict. The only tough part was building it, as SSL and Frontpage try to patch the same source files. Hope this helps. Regards, Rafael Caceres At 0

Re: Using modperl as an 'adaptor' front end to an app server.

2001-02-04 Thread Kyle Dawkins
Yo ho ho > > However, it wasn't a full implementation of the adaptor and didn't work with > > KeepAlive requests and so forth. > > Hmm.. given the source to the adaptor, and being able to turn debugging > on, it looks pretty simple. Absolutely... we'd need to sift thru the adaptor source and pie

RE: modperl + FrontPage Server Extensions

2001-02-03 Thread Wang, Pin-Chieh
It should all work together, Although I haven't tested the versions you mentioned. PC -Original Message- From: Jose Albert [mailto:[EMAIL PROTECTED]] Sent: Friday, February 02, 2001 11:21 PM To: [EMAIL PROTECTED] Subject: modperl + FrontPage Server Extensions Hi Everybody I

Re: Using modperl as an 'adaptor' front end to an app server.

2001-02-02 Thread Daniel Sully
Once upon a time Dave Rolsky shaped the electrons to say... > > That would be a no. Socket communication only. Shared filesystems in > > production are bad, mmkay. > > I'm not sure which you're referring to, my suggestion that you use a DBM > file (with locking, of course) on 1 machine or NFS.

Re: Using modperl as an 'adaptor' front end to an app server.

2001-02-02 Thread Dave Rolsky
On Fri, 2 Feb 2001, Daniel Sully wrote: > > You could use an IPC or DBM file (assuming you have 1 apache machine) to > > communicate this info. With multiple webservers, you'd need a database or > > NFS or something. > > That would be a no. Socket communication only. Shared filesystems in > prod

modperl + FrontPage Server Extensions

2001-02-02 Thread Jose Albert
Hi Everybody I've a Linux box already running Apache/1.3.14 compiled with mod_perl-1.24_01 running Apache-ASP-2.03. Well the question is if Installing FrontPage Server Extensions will conflict?. Thanks in advance Regards -Jose [EMAIL PROTECTED] www.datac

Re: Using modperl as an 'adaptor' front end to an app server.

2001-02-02 Thread Daniel Sully
Once upon a time kyle dawkins shaped the electrons to say... > A wild guess here but are you talking about WebObjects? Yes - I've hacked up the WO 4.5 adaptor pretty bad, and it's a pile already. > I wrote a perl adaptor last year to sniff the traffic that the WebObjects > adaptor was sending

Re: Using modperl as an 'adaptor' front end to an app server.

2001-02-02 Thread Daniel Sully
Once upon a time Dave Rolsky shaped the electrons to say... > On Thu, 1 Feb 2001, Daniel Sully wrote: > > > server. It handles failover from dead app instances, however not very > > well, and is a big pile of C code. It also has problems in that because > > Apache is not multithreaded, one child

Re: Using modperl as an 'adaptor' front end to an app server.

2001-02-02 Thread kyle dawkins
Daniel A wild guess here but are you talking about WebObjects? On Fri, 02 Feb 2001 01:28, Daniel Sully wrote: > Is anyone using modperl in a way that it acts as an adaptor/scheduler in > front of an app server in a 3-tier application environment? I wrote a perl adaptor last year to sni

Re: [OT] web games running under modperl

2001-02-02 Thread Paul Edmondson
On Fri, 2 Feb 2001, Robin Berjon wrote: > The good thing is that the games needn't have IA (people never play against > a computer), they just need to know the rules and control display. I looked > into CPAN and googled for that, and though there are a few first leads I > couldn't go very far. So

[OT] web games running under modperl

2001-02-02 Thread Robin Berjon
Hi, this is not directly modperl related, but it's for a project that will run under modperl. A client of mine wants to have all sorts of games on his website, some single player, some multiplayer. I have very little game programming experience and I don't really feel like reim

Re: Using modperl as an 'adaptor' front end to an app server.

2001-02-02 Thread Dave Rolsky
On Thu, 1 Feb 2001, Daniel Sully wrote: > server. It handles failover from dead app instances, however not very > well, and is a big pile of C code. It also has problems in that because > Apache is not multithreaded, one child copy of that adaptor that has > marked an app instance as dead can't l

Re: Using modperl as an 'adaptor' front end to an app server.

2001-02-02 Thread Martin Wood
On Fri, Feb 02, 2001 at 06:44:07PM +0800, Gunther Birznieks wrote: > Yes, we do this for several clients using SOAP as an RPC transport to Java > middleware. Out of interest, are all these clients using different SOAP implementations on different platforms? We are designing a system that acce

Re: Using modperl as an 'adaptor' front end to an app server.

2001-02-02 Thread G.W. Haywood
Hi all, On Fri, 2 Feb 2001, Gunther Birznieks wrote: > Anyway, you should be able to implement your own custom handler to talk > your proprietary socket protocol in mod_perl. I did this last year for a Client in the Big Smoke. Only about twenty lines. Sorry, can't give a way any source - it's

Re: Using modperl as an 'adaptor' front end to an app server.

2001-02-02 Thread Gunther Birznieks
te: >Is anyone using modperl in a way that it acts as an adaptor/scheduler in >front of an app server in a 3-tier application environment? > >Basically I have a vendor provided (with source however) adaptor that >takes incoming requests to the webserver, and passes that request onto &

Using modperl as an 'adaptor' front end to an app server.

2001-02-02 Thread Daniel Sully
Is anyone using modperl in a way that it acts as an adaptor/scheduler in front of an app server in a 3-tier application environment? Basically I have a vendor provided (with source however) adaptor that takes incoming requests to the webserver, and passes that request onto an any number of

Re: installing modperl

2001-01-17 Thread Matt Sergeant
On Wed, 17 Jan 2001, George Sanderson wrote: > At 09:52 AM 1/17/2001 -0200, you wrote: > >The documentation in the package is extremely poor, so, may somebody > >here points me the right source of documentation? > > > I had the same first impression, but I have readjusted my thinking to: > "The d

Re: installing modperl

2001-01-17 Thread G.W. Haywood
Hi there, On Wed, 17 Jan 2001, Gustavo Vieira Goncalves Coelho Rios wrote: > I trying the following program: [snip] > I get printed and not execute in the browser. There is not enough information in your question to give an answer but I suspect that you might be trying to run the program from t

Re: installing modperl

2001-01-17 Thread George Sanderson
At 09:52 AM 1/17/2001 -0200, you wrote: >The documentation in the package is extremely poor, so, may somebody >here points me the right source of documentation? > I had the same first impression, but I have readjusted my thinking to: "The documentation is extremely good, once it is located." Star

Re: installing modperl

2001-01-17 Thread Gustavo Vieira Goncalves Coelho Rios
"G.W. Haywood" wrote: > > Hi again, > > On Wed, 17 Jan 2001, Gustavo Vieira Goncalves Coelho Rios wrote: > > > Security (First), > > Performance (Second). > > These are large subjects in their own right and will not properly be > covered by the mod_perl nor the Apache documentation for good re

Re: installing modperl

2001-01-17 Thread G.W. Haywood
Hi again, On Wed, 17 Jan 2001, Gustavo Vieira Goncalves Coelho Rios wrote: > Security (First), > Performance (Second). These are large subjects in their own right and will not properly be covered by the mod_perl nor the Apache documentation for good reasons. Your Apache server does not live in

Re: installing modperl

2001-01-17 Thread Gustavo Vieira Goncalves Coelho Rios
"G.W. Haywood" wrote: > > Hi there, > > On Wed, 17 Jan 2001, Gustavo Vieira Goncalves Coelho Rios wrote: > > > Where can i obtain such packages ? > > CPAN. LWP is not necessary for a working mod_perl but it's > recommended for the test suite (and lots of other things:). > > You will find mor

Re: installing modperl

2001-01-17 Thread G.W. Haywood
Hi there, On Wed, 17 Jan 2001, Gustavo Vieira Goncalves Coelho Rios wrote: > Where can i obtain such packages ? CPAN. LWP is not necessary for a working mod_perl but it's recommended for the test suite (and lots of other things:). You will find more documentation in the Guide http://perl.apa

installing modperl

2001-01-17 Thread Gustavo Vieira Goncalves Coelho Rios
Dear gentleman/madam, this is my first post to the modperl mailing list. I am trying to get modperl compiling over FreeBSD-4.2Stable, but until now i am having some problem, here is what i get when i try to build it: grios@etosha$ perl Makefile.PL USE_APXS=1 WITH_APXS=/usr/local/apache/bin/apxs

WinNT-modperl processes one script at a time

2001-01-12 Thread Lou Bershad
It seems to me that Apache running modperl under NT can only process one request at a time. Is this true? I am running modperl 1.24 using apache 1.12 and perl 5.6. Perl was built with neither multiplicity nor multithread. Is there any configuration of apache, perl, modperl that would process

RE: modperl causing exception as NT service

2001-01-12 Thread Rich Buckley
Title: RE: modperl causing exception as NT service All, > This patch is applied in the current mod_perl cvs version, > which I think was being used I tried a couple of things yesterday, I compiled mod_perl 1.24 distribution and manually added the patch. Problem still present.

RE: modperl causing exception as NT service

2001-01-11 Thread Randy Kobes
On Thu, 11 Jan 2001, Rich Buckley wrote: > > Has anyone experienced the following exception when stopping Apache > > as a service. > > Found a patch in the archives submitted last Oct by John K. Sterling > that would appear to be appropriate. Does anyone have a win32 mod

RE: modperl causing exception as NT service

2001-01-11 Thread Rich Buckley
Title: RE: modperl causing exception as NT service > Has anyone experienced the following exception when stopping Apache > as a service. Found a patch in the archives submitted last Oct by John K. Sterling that would appear to be appropriate. Does anyone have a win32 modperl co

modperl causing exception as NT service

2001-01-11 Thread Rich Buckley
Title: modperl causing exception as NT service All, WinNT 4 SP5 Apache 3.1.14 ActiveState perl 623 modperl 1.24_02-dev Has anyone experienced the following exception when stopping Apache as a service.     Apache.exe - application error         The instruction at "0x280

[JOB WANTED]: Boston area modperl contract

2001-01-09 Thread Steve Reppucci
I'm looking for Boston area companies, or possibly something that can be done on a telecommuting basis, requiring expertise with perl (modperl) and apache in a large-scale environment. I've got some pretty good experience using modperl, please email me for a resume. I'm m

Re: Modperl + DBI + Postgresql = Crash (file table full)

2000-12-31 Thread Andrew Ho
d it, adding $dbh->disconnect FS>statements to my code. However this has not solved the problem. You should add $dbh->disconnect statements regardless; Apache::DBI will render those statements harmless, and leaving them in is good practice, and leaves your script usable out of an Apache::D

Re: Modperl + DBI + Postgresql = Crash (file table full)

2000-12-31 Thread James
following software: > > FreeBSD 4.0 or FreeBSD 4.2 stable > Apache 1.3 > ModPerl > Apache::DBI (disabling this doesn't change anything) > HTML::Mason > > Any ideas on the cause of the problems. Any similar experiences? > > Thanks in advance for your reply. >

Modperl + DBI + Postgresql = Crash (file table full)

2000-12-31 Thread Frank Sonnemans
cause of the problem. Initially I blamed Apache::DBI and therefore I disabled it, adding $dbh->disconnect statements to my code. However this has not solved the problem. My server runs the following software: FreeBSD 4.0 or FreeBSD 4.2 stable Apache 1.3 ModPerl Apache::DBI (disabling this does

Re: experience on modperl-killing "vacuum bots"

2000-12-20 Thread Randal L. Schwartz
> "Justin" == Justin <[EMAIL PROTECTED]> writes: Justin> So I also simply outright ban these user agents: Justin> (EmailSiphon)|(LinkWalker)|(WebCapture)|(w3mir)| Justin> (WebZIP)|(Teleport Pro)|(PortalBSpider)|(Extractor)| Justin> (Offline Explorer)|(WebCopier)|(NetAttache)|(iSiloWeb)| Jus

experience on modperl-killing "vacuum bots"

2000-12-20 Thread Justin
Hi again, Tracing down periods of unusual modperl overload I've found it is usually caused by someone using an agressive site mirror tool of some kind. The Stonehenge Throttle (a lifesaver) module was useful to catch the really evil ones that masquerade as a real browser .. althoug

Re: recommendation for image server with modperl

2000-12-20 Thread Justin
c interest only.. -Justin On Tue, Dec 19, 2000 at 08:37:23PM -0800, Perrin Harkins wrote: > On Tue, 19 Dec 2000, Justin wrote: > > I've been catching up on the modperl list archives, and would > > just like to recommend "mathopd" as an image web server. > > I thi

Re: recommendation for image server with modperl

2000-12-20 Thread Steve Reppucci
ll documented and we already know how to do the care and feeding of it. On Tue, 19 Dec 2000, Perrin Harkins wrote: > On Tue, 19 Dec 2000, Justin wrote: > > I've been catching up on the modperl list archives, and would > > just like to recommend "mathopd" as an image

Re: recommendation for image server with modperl

2000-12-19 Thread Jeremy A. Mates
On Tue, 19 Dec 2000, siberian wrote: > Is there some sort of ssl version to handle secure image requests so you > dont get those nasty security flags? stunnel could wrap the requests to a non-ssl backend, but that would most likely be harder and cost more resources than just running a SSL-enabled

Re: recommendation for image server with modperl

2000-12-19 Thread siberian
> Hi, > > I've been catching up on the modperl list archives, and would > > just like to recommend "mathopd" as an image web server. > > > > After having difficulties with the sheer number of front end > > apache processes necessary to handle 10 b

Re: recommendation for image server with modperl

2000-12-19 Thread Perrin Harkins
On Tue, 19 Dec 2000, Justin wrote: > I've been catching up on the modperl list archives, and would > just like to recommend "mathopd" as an image web server. I think you'll find thttpd (http://www.acme.com/software/thttpd/) faster and somewhat better documented. Howe

Re: recommendation for image server with modperl

2000-12-19 Thread Buddy Lee Haystack
Tell me more... How about memory leaks & mod_perl issues? Justin wrote: > > Hi, > I've been catching up on the modperl list archives, and would > just like to recommend "mathopd" as an image web server. > > After having difficulties with the sheer n

recommendation for image server with modperl

2000-12-19 Thread Justin
Hi, I've been catching up on the modperl list archives, and would just like to recommend "mathopd" as an image web server. After having difficulties with the sheer number of front end apache processes necessary to handle 10 backend modperls, (difficulties: high load average

more thoughts on modperl-based threaded discussion forum code

2000-12-14 Thread Richard Dice
What a silly goose I am... Right after that email I wrote a minute ago, I remembered some code along these lines that I am aware of... the v1 Open Source release of Opendesk.com, to be gotten from: ftp://ftp.smartworker.org/ As you can see, it's been a bit of time since this has been updated

Re: Recompiling modperl ?

2000-12-13 Thread Vivek Khera
> "PL" == Petter Larsson <[EMAIL PROTECTED]> writes: PL> Is it possible to recompile mod_perl to add features (for example PL> PERL_AUTHEN=1) without having to recompile apache itself ? If mod_perl is statically linked, then no, you must recompile Apache. If mod_perl is dynamically linked, t

Re: Recompiling modperl ?

2000-12-13 Thread Steven Cotton
On Wed, 13 Dec 2000, Petter Larsson wrote: > Hi, > > Is it possible to recompile mod_perl to add features (for example > PERL_AUTHEN=1) without having to recompile apache itself ? Only if you load mod_perl via DSO. -- steven 1;

Recompiling modperl ?

2000-12-13 Thread Petter Larsson
Hi, Is it possible to recompile mod_perl to add features (for example PERL_AUTHEN=1) without having to recompile apache itself ? Lets say that one has compiled apache 1.3.x with mod_perl and mod_ssl and later finds out that features are missing from mod_perl. I know that this is probably a "new

modperl back up

2000-12-12 Thread Lincoln Stein
Hi All, As of last Friday, www.modperl.com is back up. The Apache::MP3 demo no longer works, unfortunately, because the thieves stole the hard disk that all the MP3s were on. I'm hoping to get it working again this week. Thank you for the several offers of help that I received. Lincoln -- =

Apache / ModPerl and IPv6

2000-12-11 Thread Jimi Thompson
I know this is off topic, but does anyone know if the config files in Apache support IPv6 addresses? -- Jimi Thompson Web Master L3 communications "It's the same thing we do every night, Pinky." begin:vcard n:Thompson;Jimi tel;pager:877-309-2784 tel;cell:817-980-7863 tel;work:817-619-3612 x-

(not strictly modperl) how do I tell if ftp uploaded file is complete?

2000-12-06 Thread dave-mlist
I need to create an upload progress monitor page that can discriminate between files that are partially uploaded and those that are completely uploaded. My users are uploading via FTP to an anonymous upload directory. I'm running mod_perl on the same machine, and it has access to just about anyt

modperl digest subjects broken

2000-12-06 Thread John Marquart
, I could find no evidence in the mail archives.). I am assuming that this is a problem w/ the list software - if this is the case, is there a fix planned for this problem? thanks, -john marquart ---Illustration of what is being recieved in the digest--- modperl Digest 5 Dec 2000 23:42:00

Re: Wanted: Modperl/Mason consultant:

2000-11-30 Thread Randal L. Schwartz
> "cliff" == cliff rayman <[EMAIL PROTECTED]> writes: cliff> plus, everyone knows your bid. cliff> i don't have quite the credentials as Ask, but i only cliff> cost $119.50 per hour. :-)) I don't either, so I'll bid $119 an hour, but you have to think intensely kind thoughts about me the en

Re: Wanted: Modperl/Mason consultant:

2000-11-29 Thread Dave Rolsky
On Wed, 29 Nov 2000, ___cliff rayman___ wrote: > plus, everyone knows your bid. > i don't have quite the credentials as Ask, but i only > cost $119.50 per hour. :-)) Hmm, I'm on the Mason core team and I'll do it for $119.49/hour ;) Actually, I'm just kidding, I have a job I should be working

Re: Wanted: Modperl/Mason consultant:

2000-11-29 Thread ___cliff rayman___
plus, everyone knows your bid. i don't have quite the credentials as Ask, but i only cost $119.50 per hour. :-)) Ask Bjoern Hansen wrote: > On Wed, 29 Nov 2000, Ask Bjoern Hansen wrote: > > ahh. that should obviously not have been spamming the poor list. In > particular not with the "nice" quot

Re: Wanted: Modperl/Mason consultant:

2000-11-29 Thread Ask Bjoern Hansen
On Wed, 29 Nov 2000, Ask Bjoern Hansen wrote: ahh. that should obviously not have been spamming the poor list. In particular not with the "nice" quoting. A "doh!" as Randal pointed out. sorry. - ask (goes back to his corner and hides). -- ask bjoern hansen -

Re: Wanted: Modperl/Mason consultant:

2000-11-29 Thread Michael Robinton
where are you located?? Michael Robinton BizSystems 4600 El Camino Real - Suite 206B Los Altos, CA 94022 650 947-3351 [EMAIL PROTECTED] On Wed, 29 Nov 2000, Robert Monical wrote: > Hello. > > We have an Apache/Modperl/Mason/Oracle system and no programmers > experienced with t

Re: Wanted: Modperl/Mason consultant:

2000-11-29 Thread Ask Bjoern Hansen
x27;s currently serving more than 75 million impressions a day. My rate is $120 per hour and I am generally available to "go in action" with a few hours warning. My email reponse time will typical be very short too. Let me know if you have any questions. - ask > We have an Apache

Wanted: Modperl/Mason consultant:

2000-11-29 Thread Robert Monical
Hello. We have an Apache/Modperl/Mason/Oracle system and no programmers experienced with the front end environment. (details available on request). We are the Oracle programmer/DBA and Unix admin guys and fumble around in the Perl as needed. Slowly coming up to speed on Perl. The Apche

Survey Results from "Building a ModPerl ISP for you!"

2000-11-28 Thread Joshua Chamas
Hey, Below are the results of the survey I sent out a couple weeks back. Thanks again for all your responses. --Joshua > 1. How many dynamic web requests do you serve per month? > [8] up to 10M pages > [5] 10M - 100M pages > [ ] 100M - 1G pages > [ ] more than 1 gig pages > > 2. How man

OT: Asians and ModPerl

2000-11-27 Thread Gunther Birznieks
I'd be curious to know (please email me privately) about who is Asia is using mod_perl and why aren't you guys posting to the list? There's an extraordinary amount of traffic here from UK, USA, and Canada with some sprinkling around the world, but I am curious to know who in Asia is listening

<    2   3   4   5   6   7   8   9   10   11   >