Re: Another Apache.pm failed to load!. question....

2002-10-08 Thread Andrew McCall
On Monday 07 October 2002 11:05 am, Axel Gerstmair wrote: Hello Andrew, it seems like the Perl side of mod_perl is not installed. As far as I know, you must always do a make and make install in the directory where you untarred your mod_perl sources, so that the Perl modules get installed

memory usage problem!

2002-10-08 Thread Plamen Stojanov
Hi all, I have a ig mem usage problem with perl. I load 2Mb data from a database in perl hash and perl takes 15Mb memory. As I use this under mod_perl - perl never returns this memory to the OS. I must set a little number for MaxRequestsPerChild in order to restart perl interpreter not to eat

Copying Apache/Mod_perl/perl installation

2002-10-08 Thread Ganesan M
Hi all, This is kinda installation question. I have installed perl, Apache, Mod_perl with some modules (GD, Apache FileManager, DBD-Chart etc.,) in my development machine. Is there anyway to copy the installation to a similar OS/architecture without going through all the installtion

Re: memory usage problem!

2002-10-08 Thread Anthony E.
look into Apache::Resource or Apache::SizeLimit which will allow you to set a maximum size for the apache process. both can be added to your startup.pl --- Plamen Stojanov [EMAIL PROTECTED] wrote: Hi all, I have a ig mem usage problem with perl. I load 2Mb data from a database in perl hash

Re: memory usage problem!

2002-10-08 Thread Perrin Harkins
Also, try to find an alternative to loading all that data into memory. You could put it in a dbm file or use Cache::FileCache. If you really have to have it in memory, load it during startup.pl so that it will be shared between processes. - Perrin Anthony E. wrote: look into

Re: memory usage problem!

2002-10-08 Thread Eric
Hi, What about in the case of a big query result? That is where it seems like you can get killed. I can see my processes grow very large in that case, and there is no way the memory will come back. But I certainly don't want to limit my processes because I might want to get a big result from

ANNOUNCE: CGI::Application 2.6

2002-10-08 Thread Jesse Erlbaum
Version 2.6 of CGI::Application is now available via CPAN! Download site for CGI::Application: http://www.cpan.org/authors/id/J/JE/JERLBAUM/ CHANGES SINCE VERSION 2.5: - Changed the run() method to use Perl's built-in dynamic method call for all run modes, whether by name or by code ref.

Re: Copying Apache/Mod_perl/perl installation

2002-10-08 Thread wsheldah
For the CPAN perl modules, check out the CPAN autobundle feature. It will make a Bundle file of every perl module installed on your machine, which you can then copy and install on the new machine. Installing the bundle file will make it download and install all the CPAN modules. For the rest,

Re: memory usage problem!

2002-10-08 Thread Perrin Harkins
Eric wrote: What about in the case of a big query result? That is where it seems like you can get killed. Riding a bike without a helmet will get you killed; big query results are no problem. All you have to do is write your program so that it pages through results rather than loading them

Re: memory usage problem!

2002-10-08 Thread Rodney Broom
From: Eric [EMAIL PROTECTED] What about in the case of a big query result? I may have come into this thread a bit late, but can't you just undefine the storage when you're done with it? $data = $sth-fetchall_arrayref; #... do some stuff; $data = undef; --- Rodney Broom President,

Re: memory usage problem!

2002-10-08 Thread Perrin Harkins
Rodney Broom wrote: From: Eric [EMAIL PROTECTED] What about in the case of a big query result? I may have come into this thread a bit late, but can't you just undefine the storage when you're done with it? $data = $sth-fetchall_arrayref; #... do some stuff; $data = undef;

Re: mod_perl, Apache2

2002-10-08 Thread Andreas Hasenack
Em Sun, Oct 06, 2002 at 07:24:17PM +0200, Benny Jensen escreveu: ../../../blib/arch/Apache2/auto/APR/APR.so -L/usr/local/apache/lib -lapr -laprutil /usr/bin/ld: cannot find -lapr collect2: ld returned 1 exit status You need to install libapr, which is part of apache2.

install modperl: cannot find -lperl

2002-10-08 Thread Matthias Oberthür
Hi, I try to install mod_perl but I get the message that /usr/bin/ld can't find -lperl The whole input cd mod_perl-1.99_07 perl5.61 Makefile.PL MP_AP_PREFIX=/usr/local/lamp/apache2 MP_INST_PREFIX=1 make /usr/bin/ld: cannot find -lperl collect2: ld returned 1 exit status make[1]: ***

Re: install modperl: cannot find -lperl

2002-10-08 Thread Frank Wiles
.--[ Matthias Oberthür wrote (2002/10/08 at 18:28:30) ]-- | | Hi, | I try to install mod_perl but I get the message that /usr/bin/ld can't find | -lperl | | The whole input | cd mod_perl-1.99_07 | perl5.61 Makefile.PL MP_AP_PREFIX=/usr/local/lamp/apache2 MP_INST_PREFIX=1

repost: [mp1.0] recurring segfaults on mod_perl-1.27/apache-1.3.26

2002-10-08 Thread dbohling
Sorry for the repost, but no responses so far, and I need some help with this one. I've managed to get a couple of backtraces on a segfault problem we've been having for months now. The segfaults occur pretty rarely on the whole, but once a client triggers one on a particular page, they do not

[Apache::AuthenNTLM]

2002-10-08 Thread Frank . Zimper
Hello, I recently installed Apache::AuthenNTLM 0.21 on a Solaris 8 box running Apache 1.3.26 with mod_perl. The trouble is now that the response times are sometimes very slow, up to several tens of seconds. They are faster with non-NTLM-browsers like Mozilla, in this case it's only the first

radius ssl'ed authentication

2002-10-08 Thread Owen Williams
Hello, I have a search engine that students can use to search for old exam papers. The papers can be served up if the student is accessing the papers from inside the university. If they are outside the university then they authenicate through Auth::LDAP. Unfortunately staff are asking for

Re: Copying Apache/Mod_perl/perl installation

2002-10-08 Thread Ged Haywood
Hi there, (You forgot to cc the List. :) On Tue, 8 Oct 2002, Ganesan M wrote: If I can use RPM under SCO Open Server 5.0.6, and it gives me perl with all the modules, Apache, and mod_perl, I 'd definitely go for that. Anyone used RPM to copy installation under SCO? Never done it myself,

Re: memory usage problem!

2002-10-08 Thread Ged Haywood
Hi there, On Tue, 8 Oct 2002, Plamen Stojanov wrote: I have a ig mem usage problem with perl. I load 2Mb data from a database in perl hash and perl takes 15Mb memory. This isn't a big memory problem unless you only have 32Mb RAM in which case you're going to run out of memory with mod_perl

Re: Copying Apache/Mod_perl/perl installation

2002-10-08 Thread Ged Haywood
Hi guys, On Tue, 8 Oct 2002, Geoffrey Young wrote: [snip] Is there anyway to copy the installation to a similar OS/architecture without going through all the installtion proceedures. In another words, can I copy the installed software/packages to another machine which is of same

figures/resources on content via apache SSI vs. database-driven (perl DBI)

2002-10-08 Thread grant stevens
all- Perhaps I am making a mistaken assumption, but just in case I wanted to support my assumptions with some real data. Can anyone point me to some script resources, or maybe just the results of their own experience on the performance of SSIs in apache vs. converting a site to a

RE: figures/resources on content via apache SSI vs. database-driven (perl DBI)

2002-10-08 Thread Ben Mathews
Template Toolkit is what I am familiar with and while I don't have any numbers, I would think the caching that it provides for you would win out over processing the page every request. Once the page has been created, it shouldn't need any more processing until it is changed. Look at

Re: figures/resources on content via apache SSI vs. database-driven(perl DBI)

2002-10-08 Thread Perrin Harkins
grant stevens wrote: I think all I'm asking about is a performance comparison for a site comprised of 95% static content between Apache SSI and a mod_perl db/template system. Well, mod_include (SSI) is the best choice if it meets your needs. A modern OS will cache your include files

Re: cobranding strategies?

2002-10-08 Thread Rob Nagler
Kirk Rogers writes: I'm looking to build cobranding capabilities into a mod_perl site and am looking for some documentation or guidelines to follow. Anyone know of documentation that I can find. We've had some pretty stringent requirements that led us to indirecting all fonts, tagged text,

[ANNOUNCE] New naming conventions for modules

2002-10-08 Thread Per Einar Ellefsen
Hello mod_perlers, Following talk about module categorization this summer, I have now finally added these recommendations to the website. The new naming conventions for modules in the Apache:: namespace are summarized here: http://perl.apache.org/products/apache-modules.html In my work to