Re: cgi-lib.pl

2001-07-24 Thread Stas Bekman
On Tue, 24 Jul 2001, John Buwa wrote: Hello, I have a huge system i wrote using the cgi-lib.pl as its core. I attempted to integrate mod-perl with my system and all my cgi-lib.pl which are used via a require in all scripts returns errors. My dont work, if they do the act very strange and

startup.pl for configuration

2001-07-24 Thread Frédéric Schwien
Hi, I would like to have a config file like /etc/mywebapp.conf where I would put all my modules configuration. Then I would have a WebApp::LoadConfig module that would run from startup.pl, and initialize my Perl modules default variables at Apache start. My config file would be some

Re: cgi-lib.pl

2001-07-24 Thread Gunther Birznieks
Rather than go into the details, it's probably best that you use Apache::PerlRun in place of Apache::Registry. cgi-lib.pl is an old Perl 4 library, if you are using new Perl 5 features like OO, modularity, and want to take the MOST advantage of mod_perl, use CGI.pm instead. CGI.pm also has a

Re: cgi-lib.pl

2001-07-24 Thread [EMAIL PROTECTED]
hi, Not really sure if this is useful info for you but your sub:object called ReadParse is being called in welcome.pl @ line 7 without being defined previously.. [Mon Jul 23 05:38:06 2001] [error] Undefined subroutine

libapreq build error

2001-07-24 Thread brian moseley
hiya. trying to build the latest cpan version of libapreq with perl 5.6.1 + use5005threads, apache 1.3.20, mod-perl 1.25. got this error: Request.xs: In function `upload_hook': Request.xs:230: `thr' undeclared (first use in this function) attached full script of build attempt and perl -V. any

[Probably OT] Make test fails in Net::Telnet

2001-07-24 Thread Rob Bloodgood
Hi, I'm building a new box intended to be a mod_perl/database machine, and in the interests of making it as up-to-date as possible, I installed RedHat 7.1, then upgraded to perl 5.6.1. Next step, of course, is to hit CPAN and install the basics, starting with Bundle::CPAN. But Net::Telnet barfs

Re: [Probably OT] Make test fails in Net::Telnet

2001-07-24 Thread Issac Goldstand
I actually had this problem too. I never found a solution, so in the end I just gave up and force installed. It's also on RH7.1 with perl 5.6.1 I'd be interested in the answer if someone finds it Issac - Original Message - From: Rob Bloodgood [EMAIL PROTECTED] To: mod_perl

Re: cgi-lib.pl

2001-07-24 Thread Ron Beck
John, A number of good suggestions came by regarding this. Here's mine, use the following in place of your cgi-bin.pl include... use CGI qw(:cgi-lib :standard -debug); This will allow you to use CGI.pm and have it default to the cgi-lib commands you're used to. The -debug statement

Re: [ANNOUNCE] RoboWeb 1.0b, web application test suite generator

2001-07-24 Thread Gunther Birznieks
If you guys end up finally collaborating, one very minor request I would have is that it goes into CPAN as something more standard like WWW:: namespace rather than a marketing name like RoboWeb. RoboWeb is actually a good product name (and in fact do a search on google for other tools with a

Conflicting usage of winsock[2]* between mod_perl-1.36 andPerl-5.6.1

2001-07-24 Thread Danny Siu
Has anyone successfully installed and ran Apache::Icon-0.02 or FileMan-0.6d with mod_perl on any Win32 platforms? My setup: Win2K, Apache-1.3.20, mod_perl-1.26, ActivePerl-5.6.1 build 626 Problem: I was trying to install Apache::Icon-0.02 (required both by FileMan and Apache::AutoIndex) but

Increasing Shared Memory

2001-07-24 Thread Bob Foster
Hi, I'm using Stas Bekman's excellent Apache::VMonitor module to help me decrease my mod_perl child process memory usage. I was working on preloading all of my perl modules and scripts in a startup.pl script when I noticed that the amount of shared memory seemed very low. Immediately after I

Problems building mod_perl 1.26/apache 1.3.20 on SGI IRIX 6.3

2001-07-24 Thread Michael_Steeves
Hello, I'm in the process of trying to build mod_perl and apache on an IRIX 6.3 machine. I built perl 5.6, and installed it into its own subdirectory (until I can verify that I can get apache/mod_perl working, as this is a production machine), and built and installed the apropriate modules

Re: [ANNOUNCE] RoboWeb 1.0b, web application test suitegenerator

2001-07-24 Thread Claudio Garcia
I agree with you. RoboWeb is not informative enough for CPAN. I chose it for Sourceforge because it's catchy. :-) As it stands it is mostly a set of scripts, not modules. That's why I opted for putting it on Sourceforge rather than on CPAN. Do people here think it worthwile of being at CPAN

[OT] WebMacro (was: RoboWeb 1.0b, web application test suite generator)

2001-07-24 Thread Jeremy Howard
Gunther Birznieks wrote: If you guys end up finally collaborating, one very minor request I would have is that it goes into CPAN as something more standard like WWW:: namespace rather than a marketing name like RoboWeb. The current plan is for the 'scripting language' which provides a simple

Re: startup.pl for configuration

2001-07-24 Thread Stas Bekman
On Tue, 24 Jul 2001, [iso-8859-1] Frédéric Schwien wrote: Hi, I would like to have a config file like /etc/mywebapp.conf where I would put all my modules configuration. Then I would have a WebApp::LoadConfig module that would run from startup.pl, and initialize my Perl modules default

Setup help needed

2001-07-24 Thread Bryan Coon
Hi, I am having trouble figuring out what is up with mod_perl. I currently have apache 1.3.20 running on RH6.2, compiled with mod_ssl, mm 1.1.3 and DSO support enabled. What is the method to install mod_perl? Is it not already included with apache 1.3.20? I may have misunderstood this... I

Re: Increasing Shared Memory

2001-07-24 Thread Joshua Chamas
Bob Foster wrote: Hi, I'm using Stas Bekman's excellent Apache::VMonitor module to help me decrease my mod_perl child process memory usage. I was working on preloading all of my perl modules and scripts in a startup.pl script when I noticed that the amount of shared memory seemed very

Re(2): Increasing Shared Memory

2001-07-24 Thread Bob Foster
[EMAIL PROTECTED] writes: Make sure to use DBD::Oracle in your startup.pl or do PerlModule DBD::Oracle ... that should load up some Oracle libs in the parent. Also, you *might* try doing a connect or even an invalid connect to Oracle, which might grab some extra libs that it only loads at

Re: Increasing Shared Memory

2001-07-24 Thread Joshua Chamas
Bob Foster wrote: Thank you very much, Joshua. I have made some progress and am now seeing 15.8M shared out of 16.7M on the parent. I believe that the problem was that I was doing a graceful restart which wasn't restarting the parent process. Now I have a different problem. When I

Re: [OT] WebMacro (was: RoboWeb 1.0b, web application test suite generator)

2001-07-24 Thread Stephen Adkins
Hi, Please be aware that WebMacro is a moderately popular Java templating tool hosted at http://www.webmacro.org Naming it WWW::WebMacro might be a bit confusing. It's your choice. I just wanted to make you aware of the other WebMacro. Stephen At 08:48 AM 7/25/2001 +1000, Jeremy Howard