RE: a web interface to visualize tables

2000-11-02 Thread Voglmaier, Reinhard Erich
That's really a good idea. I would even go a step further. what's about to create a web interface that does not know what DB is underneath. So once we have such an interface one has 'only' to change the DB specific functions like search , get , delete , update it may even work for the LDAP

zlib error?

2000-11-02 Thread Homsher, Dave V.
Hi all, I came in this morning to find my server (semi) down with the following error message in the logs: [error] Out of memory during "large" request for 135168 bytes at /opt/perl5/lib/site_perl/5.6.0/PA-RISC2.0/Compress/Zlib.pm line 198 This is on an HP-UX machine with several _gigs_ of

Re: zlib error?

2000-11-02 Thread Matt Sergeant
On Thu, 2 Nov 2000, Homsher, Dave V. wrote: Hi all, I came in this morning to find my server (semi) down with the following error message in the logs: [error] Out of memory during "large" request for 135168 bytes at /opt/perl5/lib/site_perl/5.6.0/PA-RISC2.0/Compress/Zlib.pm line 198

[OT - saddb, presentaion layer

2000-11-02 Thread Bakki Kudva
I have two slightly offtopic questions. 1. I noticed that SAP - "On October 5, 2000, at Linux World SAP DB was announced to be made available as Open Source software using the GNU General Public License for the database kernel and the GNU Lesser General Public License for clients and

Re: Error during mod_perl installation

2000-11-02 Thread Randy Kobes
On Wed, 1 Nov 2000, Fabio Albertin wrote: After my recent problems with Apaxhe::ASP, I decided to re-install mod perl, just to see if it actually installed the last time around. Now, I've gotten through the 1st step (Makefile.PL), but the make process seems to fail with the following error:

Re: zlib error?

2000-11-02 Thread G.W. Haywood
Hi there, On Thu, 2 Nov 2000, Homsher, Dave V. wrote: [error] Out of memory during "large" request for 135168 bytes [snip] It appears to be some sort of memory leak, but where to begin looking? Unless I'd already taken precautions and it remained a problem, I wouldn't bother. There are

Re: [OT - saddb, presentaion layer

2000-11-02 Thread Gunther Birznieks
At 10:09 AM 11/2/00 -0500, Bakki Kudva wrote: I have two slightly offtopic questions. 1. I noticed that SAP - "On October 5, 2000, at Linux World SAP DB was announced to be made available as Open Source software using the GNU General Public License for the database kernel and the GNU Lesser

Re: Putting together the TPC mod_perl track

2000-11-02 Thread Trey Connell
Could someone please tell me where and when this conference will be held? Also, how do I go about registering to attend? Many Thanks, Trey - Original Message - From: Nathan Torkington [EMAIL PROTECTED] To: Matt Sergeant [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent:

Re: [OT - saddb, presentaion layer

2000-11-02 Thread Bakki Kudva
Gunther Birznieks wrote: You may want to look at SmartWorker's (www.smartworker.org) widget generation technology. It's a bit obtuse (IMHO) but it's also pretty cool. They worked it up to create opendesk (www.opendesk.com) unfortunately, the cool lookandfeel of open desk and all the nice

Re: Seg Fault Issues- mod_perl and XML::Parser

2000-11-02 Thread Tom Harper
Hi-- In case anyone encounters the same segv issues, recompiled apache with mod_perl 1.24-- explicitly set Rule EXPAT=no rather than Rule EXPAT=default in the apache_base/src/Configure. No more segv. Then i recompiled again with mod_perl 1.23. Again, no more segv. Go figure. Anyhow,

RE: Linking apache httpd on IRIX 6.5.9 (64bit) ????

2000-11-02 Thread Wilt, Paul
Stephen: You need to set your libraries to include /usr/lib64 first in the list. Paul E Wilt Principal Software Engineer XanEdu, Inc. ( a division of Bell+Howell InformationLearning) http://www.XanEdu.com mailto:[EMAIL PROTECTED]

Apache::Filter Install Problem

2000-11-02 Thread Adam Prime
I'm trying to install apache filter and i'm getting errors. anyhelp would be appreciated. i built mod_perl with this: perl Makefile.PL DO_HTTPD=1 USE_APACI=1 APACHE_PREFIX=/usr/local/apache PERL_STACKED_HANDLERS=1 when i get to make test i get this: Running make test PERL_DL_NONLAZY=1

dynamic vs. mostly static data

2000-11-02 Thread Neil Conway
I'm writing a web app in mod_perl, using a PostgreSQL database backend and HTML::Template. In looking for ways to optimize performance, I noticed that although my code is doing several (say, 4-5) database queries per handler/webpage, a large part of the data (~2 queries) is mostly static (it will

RE: dynamic vs. mostly static data

2000-11-02 Thread Jerrad Pierce
There is a query caching module someone posted here redently... Or was it proposed and beta-ish? Another thing you might consider doing is having a cron job do your periodic (10 min.) fetch and store it as a file somewhere... Then use SSI or some more mod_perl-ish means of including this static

Re: dynamic vs. mostly static data

2000-11-02 Thread Vivek Khera
"NC" == Neil Conway [EMAIL PROTECTED] writes: NC How can I 'cache' this data so that all Apache children can NC access it quickly? Is there a way to automatically update write a cron job that republishes these pages as plain HTML and link to those instead of the dynamic program. --

Re: dynamic vs. mostly static data

2000-11-02 Thread Carlos Ramirez
Jerrad Pierce wrote: There is a query caching module someone posted here redently... Or was it proposed and beta-ish? Another thing you might consider doing is having a cron job do your periodic (10 min.) fetch and store it as a file somewhere... You can use the module Storable to store Perl

Re: proxy front-ends (was: Re: ApacheCon report)

2000-11-02 Thread Gunther Birznieks
Although I don't have much to add to the conversation, I just wanted to say that this is one of the most absolutely technically enlightening posts I've read on the mod_perl list in a while. It's really interesting to finally clarify this once and for all. Smells like a mod_perl guide

how to do this??

2000-11-02 Thread Michael
I have a handler which is called by Apache. The handler loads a module which has all the real subroutines within it that are executed. Ordinarily, a simple @EXPORT or @EXPORT_OK would provide the subroutines to the handler, but when Apache does the handoff, the PACKAGE name from the handler

Re: how to do this??

2000-11-02 Thread Michael
Well. never mind, I've answered my own question. The AUTOLOAD function does what I need nicely package FOO; use Module; use vars qw(@ISA); @ISA = qw(Module); sub AUTOLOAD { my $pkg_sub = $AUTOLOAD; my ( $pkg, $sub) = split(':',$pkg_sub); return Module::-$sub($pkg,@_); } this nicely

Re: Connection Pooling / TP Monitor

2000-11-02 Thread Perrin Harkins
Tim Bunce wrote: You could have a set of apache servers that are 'pure' DBI proxy servers. That is, they POST requests containing SQL (for prepare_cached) plus bind parameter values and return responses containing the results. Basically I'm proposing that apache be used as an alternative

Re: Connection Pooling / TP Monitor

2000-11-02 Thread Gunther Birznieks
At 01:01 PM 10/30/2000 -0600, Leslie Mikesell wrote: According to Gunther Birznieks: I guess part of the question is what is meant by "balanced" with regard to the non-apache back-end servers that was mentioned? I'd be very happy with either a weighted round-robin or a least-connections