CGI module or Apache

2001-07-09 Thread Kevin Schroeder
Hello, I've been using the CGI PERL module for a while now and I like using it a lot. But I was wondering if using that module with mod_perl will slow things down because of the extra module being used. If so, is there a way to use the Apache API and mod_perl to deal with form submissions,

Re: CGI module or Apache

2001-07-09 Thread Paul
--- Kevin Schroeder [EMAIL PROTECTED] wrote: Hello, I've been using the CGI PERL module for a while now and I like using it a lot. But I was wondering if using that module with mod_perl will slow things down because of the extra module being used. If so, is there a way to use the

Re: CGI module or Apache

2001-07-09 Thread Kevin Schroeder
Message - From: Paul [EMAIL PROTECTED] To: Kevin Schroeder [EMAIL PROTECTED]; modperl [EMAIL PROTECTED] Sent: Monday, July 09, 2001 3:09 PM Subject: Re: CGI module or Apache --- Kevin Schroeder [EMAIL PROTECTED] wrote: Hello, I've been using the CGI PERL module for a while now and I

Re: CGI module or Apache

2001-07-09 Thread Dave Hodgkinson
Paul [EMAIL PROTECTED] writes: Just use it in your handlers normally. It'll only be included once per process, . . . right? Put it in startup.pl and it'll get mostly shared too! -- Dave Hodgkinson, http://www.hodgkinson.org Editor-in-chief, The Highway Star

Re: CGI module or Apache

2001-07-09 Thread Perrin Harkins
Take a look at http://perl.apache.org/guide/ and read the stuff on libapreq. - Perrin

Re: CGI module or Apache

2001-07-09 Thread Alex Porras
There's Apache::Request, which is the equivalent of CGI.pm in the areas of form submissions and Apache::Cookie for cookie handling. If you're not using the HTML rendering capabilities of CGI.pm, you may look into those two. --Alex Kevin Schroeder wrote: Hello, I've been using the CGI

Re: CGI module or Apache

2001-07-09 Thread Paul
--- Kevin Schroeder [EMAIL PROTECTED] wrote: For the complex programs on the site I'm building I will be using CGI.pm, but there are a few parts of the site where there is little browser-server interaction other than to send a certain page based on the query string and a cookie. Because

Re: CGI module or Apache

2001-07-09 Thread darren chamberlain
Dave Hodgkinson [EMAIL PROTECTED] said something to this effect on 07/09/2001: Paul [EMAIL PROTECTED] writes: Just use it in your handlers normally. It'll only be included once per process, . . . right? Put it in startup.pl and it'll get mostly shared too! Is that anything like being