Re: modperl growth

2002-02-04 Thread Dave Hodgkinson
Paul DuBois [EMAIL PROTECTED] writes: At 11:02 + 2/3/02, Dave Hodgkinson wrote: Paul DuBois [EMAIL PROTECTED] writes: Mac OS X includes Apache, and mod_perl works there, too. That's another group of potential new mod_perl-ized servers. I think all the recent RedHats come with

Re: [OT] Re: mod_perl Developer's Cookbook (and Amazon)

2002-02-04 Thread Joe Brenner
Paul Lindner [EMAIL PROTECTED] wrote: I'm against frivolous patents myself. It harms the industry and could even be detrimental to mod_perl or Apache if either is found to infringe upon such a patent. That indeed is the problem. Now that the FTC has been scared (or bought?) off, this is

Speed of downloading problem.

2002-02-04 Thread Purcell, Scott
Hello, I have Apache/mod_perl installed on a NT box, and I am allowing customers to do downloads of High-Resolution assets. My problem is the speed of downloads is about 1/3 slower than the same box running IIS. IT dept, has confirmed that the network is not the issue, and we have ran tests for

Re: Make test issue with the URI module

2002-02-04 Thread Thomas Klausner
Hi! On Sun, Feb 03, 2002 at 05:24:03PM -0800, Pierre Carette wrote: I am trying to install the latest version of Mod_perl (version 1.26) with Apache 1.3.23 on RedHat 7.2. When I tried the make test from the mod_perl installation I had an error saying that the module URI couldn't be found.

mod_perl, OpenPGP Math::Pari

2002-02-04 Thread Jason Galea
OK, this has got me stumped.. so it just has to be something obvious.. I am attemting to use Crypt::OpenPGP to encrypt some data. To do this I need to generate some keys.. (ok that's all obvious too..get to the point, J) On my development server everything runs fine producing useable public

Re: weird problem. Lost of the POST data

2002-02-04 Thread Oscar Serrano
Hi: some days ago I wrote to ask for this problem: The CGI.pm (sometimes) could not receive the POST data. I tried all you recomended me here in the list. But I still had the problem. Finally I decide to kick out CGI.pm and start to use the old cgi-lib.pl. But I still had the same problem. Then I

Re: Speed of downloading problem.

2002-02-04 Thread Perrin Harkins
I have Apache/mod_perl installed on a NT box, and I am allowing customers to do downloads of High-Resolution assets. My problem is the speed of downloads is about 1/3 slower than the same box running IIS. Can you post your httpd.conf? Or at least the parts of it about threads and processes?

Re: [OT] Re: mod_perl Developer's Cookbook (and Amazon)

2002-02-04 Thread Dave Rolsky
On Mon, 4 Feb 2002, Joe Brenner wrote: so BookPool is my vendor of choice currently for price-conscious book shopping. Thanks, I'll look into that one. Or better yet, go to www.booksense.com, enter your zip code, and shop online at an independent local book-seller near you. It might be a

Re: weird problem. Lost of the POST data

2002-02-04 Thread Brett W. McCoy
On Mon, 4 Feb 2002, Oscar Serrano wrote: some days ago I wrote to ask for this problem: The CGI.pm (sometimes) could not receive the POST data. I tried all you recomended me here in the list. But I still had the problem. Finally I decide to kick out CGI.pm and start to use the old

Re: modperl growth

2002-02-04 Thread Robin Berjon
On Saturday 02 February 2002 23:20, Matt Sergeant wrote: Wow, bizarre. Not sure why but the AxKit list has seen a massive spurt in traffic lately too. Perhaps due to the migration to xml.apache.org (well, just a link at the moment), but perhaps due to the above? Traffic is notoriously hard to

Re: modperl growth

2002-02-04 Thread ___cliff rayman___
one more guess - in the group of guesses. ;-) perhaps redhat or another popular distro is configuring standard with mod_perl (i use redhat, but i always hand select my packages). if this is the case, then the banner will show mod_perl, even if the user has no idea what it is, and it is not in

response code under Apache::Registry?

2002-02-04 Thread Peter Beardsley
This is kind of a bizarre question, but I was wondering if it was technically possible to set the response code of a script running under Apache::Registry. The way I usually see it being set is the return value of the handler routine, but is there any way to set it? Peter Beardsley

Re: response code under Apache::Registry?

2002-02-04 Thread Geoffrey Young
Peter Beardsley wrote: This is kind of a bizarre question, but I was wondering if it was technically possible to set the response code of a script running under Apache::Registry. The way I usually see it being set is the return value of the handler routine, but is there any way to set it?

Re: modperl growth

2002-02-04 Thread Dave Hodgkinson
___cliff rayman___ [EMAIL PROTECTED] writes: one more guess - in the group of guesses. ;-) perhaps redhat or another popular distro is configuring standard with mod_perl (i use redhat, but i always hand select my packages). if this is the case, then the banner will show mod_perl, even if

Re: modperl growth

2002-02-04 Thread Dave Rolsky
On 4 Feb 2002, Dave Hodgkinson wrote: And if the Slashcode were as easy to install and customise as phpnuke... For OSCON (and hopefully YAPC too), I've submitted a talk on using Module::Build (an ExtUtils::MakeMaker replacement) for modules and using it to build an application installer. Its

RE: modperl growth

2002-02-04 Thread Adam Prime
Many cobalt boxes come running mod_perl by default. perhaps if people have been deploying a lot of these things lately it could have made an impact. HEAD / HTTP/1.0 HTTP/1.1 302 Found Date: Mon, 04 Feb 2002 20:13:54 GMT Server: Apache/1.3.12 Cobalt (Unix) mod_jk mod_ssl/2.6.4 OpenSSL/0.9.5a

Re: modperl growth

2002-02-04 Thread Dave Hodgkinson
Dave Rolsky [EMAIL PROTECTED] writes: On 4 Feb 2002, Dave Hodgkinson wrote: And if the Slashcode were as easy to install and customise as phpnuke... For OSCON (and hopefully YAPC too), I've submitted a talk on using Module::Build (an ExtUtils::MakeMaker replacement) for modules and

[OT] RE: modperl growth

2002-02-04 Thread Jonathan M. Hollin
:: - Install Apache and mod_perl, or use an existing installation. :: :: - Install all the needed modules, template files, images, etc. [cut] Dave, I too try to automate installations as much as possible. Within Perl, I've found it possible to dispense with a separate configuration file for

Re: mod_perl, OpenPGP Math::Pari

2002-02-04 Thread Ged Haywood
Hi there, On Tue, 5 Feb 2002, Jason Galea wrote: [snip] My only guess is that somehow mod_perl on the production server is using a different library [snip] Anyone? any clues on where to start looking? perl -V That's lower case perl, upper case V. 73, Ged.

modifying apache config at runtime

2002-02-04 Thread Peter Beardsley
Is is possible to modify the in-memory apache configuration at runtime? I've seen modules that allow you to parse and modify the httpd.conf file, but that's not really what I'm looking for. In particular I want to set the value of ErrorDocument. Thanks, Peter Beardsley Appropriate

Re: modifying apache config at runtime

2002-02-04 Thread Paul Lindner
On Mon, Feb 04, 2002 at 04:47:27PM -0500, Peter Beardsley wrote: Is is possible to modify the in-memory apache configuration at runtime? I've seen modules that allow you to parse and modify the httpd.conf file, but that's not really what I'm looking for. In particular I want to set the

Re: Make test issue with the URI module

2002-02-04 Thread Ron Savage
Thomas See below. Cheers Ron Savage [EMAIL PROTECTED] http://savage.net.au/index.html When I tried the make test from the mod_perl installation I had an error saying that the module URI couldn't be found. I then downloaded and installed the URI module from cpan.org: URI-1.18 and now I

Re: weird problem. Lost of the POST data

2002-02-04 Thread simran
I had similar problems not too long ago. The reason i believe is - 'You can only read POST data from STDIN _once_'. Aka, in a mod_perl script if you do something like: my $q1 = new CGI; my $q2 = new CGI; my $name1 = $q1-param(name); my $name2 = $q2-param(name); $name2 will not be set if the

Re: Speed of downloading problem.

2002-02-04 Thread Ron Savage
Scott See below. Cheers Ron Savage [EMAIL PROTECTED] http://savage.net.au/index.html Does anyone have any clues what to try? One thought here was to go to 2.0, but we don't know if that will screw up the mod-perl that is built for the Apache 1.3.20 and Ron Savages mod_perl binary. I'm

Re: modperl growth

2002-02-04 Thread Rod Butcher
My .05... I run a small communal webserver. Software had to be free, secure, stable, support Perl, multiple domains and ASP, be reasonably simple, originally run on Win32 and be capable of migration to Linux later. Nobrainer -- Apache, mod_perl, Apache::ASP. Only difficulty was getting mod_perl

Re: ld: 0711-319 WARNING: Exported symbol not defined:

2002-02-04 Thread J S
Thanks Ged, But I didn't have any luck with the archives either. Maybe this is a dev level question? Cheers, JS. Hi there, On Thu, 31 Jan 2002, J S wrote: Apache compiles OK, but during make there are a lot of the following messages: .. .. ld: 0711-319 WARNING: Exported symbol

Re: Make test issue with the URI module

2002-02-04 Thread Rick Myers
On Feb 04, 2002 at 16:24:38 +0100, Thomas Klausner wrote: Does anyone know why this fails or how to fix it properly? This question was originally asked back in August. http://mathforum.org/epigone/modperl/sehpholzhex With some followup...

Re: [OT] RE: modperl growth

2002-02-04 Thread Andrew Ho
Hello, JHI've found it possible to dispense with a separate configuration file JHfor almost any application, even those with an RDBMS back-end. Under JH*nix it's really easy to automate things, under Win32 it's a little more JHdifficult (file permissions are a bastard to manipulate). Perl can

Re: modperl growth

2002-02-04 Thread Ask Bjoern Hansen
On Sat, 2 Feb 2002, Robin Berjon wrote: http://www.securityspace.com/s_survey/data/man.200201/apachemods.html?mod=cGVybA== For some reason, in December, it would seem that modperl just jumped ahead in market share (from 13% to nearly 20%). [...] At least on Netcraft big jumps are usually

Re: [OT] RE: modperl growth

2002-02-04 Thread Dave Rolsky
On Mon, 4 Feb 2002, Andrew Ho wrote: One last thing that is hard is where is your DocumentRoot? This is a huge problem for web applications being installable out of the box. Perl can't necessarily figure that out by itself, either. You take a guess and then ask the user to confirm. And you