Apache::ASP and server-side includes

1999-01-17 Thread Andrew Mayo
Is it possible to configure Apache so that .asp files also support server-side includes?. I can configure Apache to successfully make .shtml files support server-side includes but the asp files have a .asp extension and if I change the handler for that, I'll end up disabling Apache::ASP. How do I

Re: ANNOUNCE: HTML::Embperl 1.2.0

1999-01-17 Thread Ajit Deshpande
On Wed, Nov 17, 1999 at 08:23:07AM +0100, Gerald Richter wrote: The URL ftp://ftp.dev.ecos.de/pub/perl/embperl/HTML-Embperl-1.2.0.tar.gz has entered CPAN as [...] Are Gerald's and Jeffrey's Apache::Session back in sync now? Ajit

multipart POST problems

1999-01-17 Thread John S. Evans
This is a resend - for some reason I'm having problems sending to the list from my main email account. Doh! -jse I've been attempting to write a perl module that handles POSTs of type multipart/form-data, and have been having a rough time. I'm using Apache::Request to

ANNOUNCE: CGI::WeT 0.71

1999-01-17 Thread James G Smith
The uploaded file CGI-WeT-0.71.tar.gz has entered CPAN as file: $CPAN/authors/id/J/JS/JSMITH/CGI-WeT-0.71.tar.gz size: 40841 bytes md5: 78528519a7a96511b96064d9a4d750ce CGI::WeT is a package to help build a website with the ability to offer different views for the same content.

Re: Stonehenge::Throttle, round 2 - CPU used by an IP

1999-01-17 Thread Ask Bjoern Hansen
On Tue, 16 Nov 1999, Matt Sergeant wrote: For the unique IP in _most_ firewall cases, take the last comma separated value of the X-Forwarded-For header: $r-headers_in-get('x-forwarded-for'); except for all the clients at 192.168.1.100 (etc). So you would have to get into "real ip / forwarded

Re: ANNOUNCE: HTML::Embperl 1.2.0

1999-01-17 Thread G.Richter
On Wed, Nov 17, 1999 at 08:23:07AM +0100, Gerald Richter wrote: The URL ftp://ftp.dev.ecos.de/pub/perl/embperl/HTML-Embperl-1.2.0.tar.gz has entered CPAN as [...] Are Gerald's and Jeffrey's Apache::Session back in sync now? I have moved the interface between Apache::Session and

RE: perl variable in configs for few virtual servers

1999-01-17 Thread Eric Cholet
Andrei, I do not see this behavior if I use PerlSetVar directly inside a VirtualHost section instead of via a ResourceConfig. I do see it if I move the directive to the main server, so I suppose it's a scope issue with ResourceConfig. It's Apache 1.3.9, mod_perl 1.21 on Linux. The only

RE: multipart POST problems

1999-01-17 Thread Tubbs, Derric L
My understanding is that upload() is only for input type="file" only and that param() handles all of the other form elements. That's how I've implemented it here and all works as expected. BTW, I don't do any checking to see how the form was submitted. I use Apache::Request for all of my form

Re: Apache::ASP and server-side includes

1999-01-17 Thread Mike Dameron
Lookup $Response-Include() in the docs. It is used for exactly this purpose. -Mike Andrew Mayo wrote: Is it possible to configure Apache so that .asp files also support server-side includes?. I can configure Apache to successfully make .shtml files support server-side includes but the asp

Re: perl variable in configs for few virtual servers

1999-01-17 Thread Andrei A. Voropaev
Ok. I think I've figured that out Reading documentation on Apache ResourceConfig directive. It states -- Syntax: ResourceConfig filename Default: ResourceConfig conf/srm.conf Context: server config, virtual host Status: core The server will read this file for more directives after

A few pointers, please.

1999-01-17 Thread Dave_Pfaltzgraff
From: Dave Pfaltzgraff@PATAPSCO on 11/19/99 01:45 PM I'm fairly new at this and need a few pointers to possible resources. I've used Apache::AuthenDBI and thus require the user to enter a user name and password as expected. It all works. However, my customer has asked for either a timeout, a

Re: Bug in libapreq makes form elements stick to an apache child

1999-01-17 Thread Jeffrey Baker
Cliff Rayman wrote: `perldoc -f defined` yields a couple of sentences: You may also use Cdefined() to check whether a subroutine exists, by saying Cdefined func without parentheses. On the other hand, use of Cdefined() upon aggregates (hashes and arrays) is not guaranteed to produce

Re: Image::Magick and mod_perl

1999-01-17 Thread Autarch
On Mon, 15 Nov 1999, Todd Finney wrote: process for the duration of the transaction? If each transaction lasts a couple of seconds, it this a Bad Thing? Is there a more efficient way to handle this? Unless you truly need to resize the image on the fly as part of the transaction with the

Re: embperl-intermittant sig11 seg faults

1999-01-17 Thread Cliff Rayman
if you need more info on how to reproduce it - let me know. Gerald Richter wrote: PROBLEM SOLVED. Fine :-) the values for $req_rec in the page and in the subs started out the same and then shifted after a period of time. That was my suspicion... I now pass in the $req_rec from

Problems with mod_perl 1.2.1 and apache 1.3.9 - newbie - Please help!

1999-01-17 Thread Scott Chapman
I'm new to compiling my own software and attempting to get mod_perl and apache to work together. I have Redhat 6.0. I thought this was supposed to use gcc, not cc and I am getting no make action when it's done. I would _greatly_ appreciate any help on resolving this. I'm teaching myself

Re: A few pointers, please.

1999-01-17 Thread James G Smith
[EMAIL PROTECTED] wrote: I'm fairly new at this and need a few pointers to possible resources. I've used Apache::AuthenDBI and thus require the user to enter a user name and password as expected. It all works. However, my customer has asked for either a timeout, a [Logout] button, or both so

Re: Bug in libapreq makes form elements stick to an apache child

1999-01-17 Thread Matt Sergeant
On Fri, 19 Nov 1999, Jeffrey Baker wrote: 1) Visit /yoururl 2) Visit /yoururl?foo=barfoo=baz 3) Visit /yoururl as many times as you have Apache child processes httpd -X -- Matt/ Details: FastNet Software Ltd - XML, Perl, Databases. Tagline: High Performance Web Solutions Web Sites:

Apache::Cookie confusion

1999-01-17 Thread John Siracusa
Apache::Cookie seems to have two different interfaces...or maybe there are two different distributions of Apache::Cookie? Whatever it is, the interface seems different on two machines here at work. One has 5.004 and one has 5.005, but that shouldn't change the Apache::Cookie interface should

Re: Apache::ASP config question

1999-01-17 Thread Joshua Chamas
Brad Babb wrote: Hi, I'm about to put a site into production using Apache::ASP, and need to have a development side to the site to continue working. I won't to be able to have 2 difference Application, one for the production side, and one for the development side. What do I need to do to

Re: Bug in libapreq makes form elements stick to an apache child

1999-01-17 Thread Ken Williams
[EMAIL PROTECTED] (Jeffrey Baker) wrote: Cliff Rayman wrote: `perldoc -f defined` yields a couple of sentences: You may also use Cdefined() to check whether a subroutine exists, by saying Cdefined func without parentheses. On the other hand, use of Cdefined() upon aggregates (hashes and

Web Site Service Improvements

1999-01-17 Thread The Doctor
Question: Has anyone devlopped a Web Mail interface using perl? With mod_perl is there an available 'plug-in'?

Re: Bug in libapreq makes form elements stick to an apache child

1999-01-17 Thread Randal L. Schwartz
"Jeffrey" == Jeffrey Baker [EMAIL PROTECTED] writes: Jeffrey Yeah. I guess the reason I do the latter is b/c I want the code to Jeffrey reflect what I am actually trying to test. I don't really want to test Jeffrey the trueness of @foo, I want to test for it's existence. But in perl Jeffrey

Re: A few pointers, please.

1999-01-17 Thread Mark Cogan
At 01:45 PM 11/19/99 -0500, [EMAIL PROTECTED] wrote: From: Dave Pfaltzgraff@PATAPSCO on 11/19/99 01:45 PM I'm fairly new at this and need a few pointers to possible resources. I've used Apache::AuthenDBI and thus require the user to enter a user name and password as expected. It all works.

Apache::ASP

1999-01-17 Thread Aroc725
I've written a short ASP page, 'HelloWorld.asp': head titleHello World/title /head Hello World! The time is % Now % But when I try to test the page, I get the output below. Isn't Now a function supported by ASP? Errors Output Response::Now not defined at

Re: Bug in libapreq makes form elements stick to an apache child

1999-01-17 Thread brian moseley
On Fri, 19 Nov 1999, Matt Sergeant wrote: httpd -X good production solution.