Re: Logging user's movements

2005-02-04 Thread Christian Hansen
ben syverson wrote: [...] The problem with this is that 99% of the time, the document won't contain any of the new node names, so mod_perl is wasting most of its time serving up cached HTML. I have two suggestions, 1) Use a reverse proxy/cache and send proper Cache-Control and Etag/Content-Lengt

Re: Logging user's movements

2005-02-04 Thread ben syverson
First of all, thanks for the suggestions, everyone! It's giving me a lot to chew on. I now realize (sound of hand smacking forehead) that the main problem is not the list of links and tracking users, but rather the inline Wiki links: On Feb 4, 2005, at 8:58 AM, Malcolm J Harwood wrote: What are

MP2, SOAP::Lite and Oracle

2005-02-04 Thread Juan Natera
Hello, I have a few custom modules that work nicely in a standalone SOAP::Lite server. After deciding we needed the performance boost of moving it to mod_perl 2, we have encountered some issues. I am getting this error in the apache error_log: DBI connect('','username',...) failed: ERROR OCIEnvN

Re: [mp2] threaded applications inside of mod_perl

2005-02-04 Thread Stas Bekman
Stas Bekman wrote: Stas Bekman wrote: Thanks for the details. I can now reproduce the segfault. I'll post again when this is fixed. I've traced it down to a perl-core issue. I'm submitting a report to p5p and I've CC'ed you, so you can stay in the loop. Meanwhile, there are two workarounds: In

Re: Sanity check on mod_rewrite and POST data [slightly OT]

2005-02-04 Thread ___cliff rayman___
Martin Moss wrote: However after the rewrite, the POST data is lost. Can anybody throw any light on this? the rewrite rule is this:- RewriteRule ^(.*)$ http://%{HTTP_HOST}$1 [R] Not sure what you are trying to do here. You are making a non-ssl request back to the exact same server, with the exact

Sanity check on mod_rewrite and POST data [slightly OT]

2005-02-04 Thread Martin Moss
All, Can I get a sanity check on this:- I have a form which POSTs to https://server/url That https servers uses mod_rewrite to forward the request onto another server internally as http://server/url However after the rewrite, the POST data is lost. Can anybody throw any light on this? the rewri

Re: [mp2] threaded applications inside of mod_perl

2005-02-04 Thread Stas Bekman
Stas Bekman wrote: Thanks for the details. I can now reproduce the segfault. I'll post again when this is fixed. I've traced it down to a perl-core issue. I'm submitting a report to p5p and I've CC'ed you, so you can stay in the loop. Meanwhile, there are two workarounds: You must start with not

RE: ModPerl Installiation help

2005-02-04 Thread Barksdale, Ray
Since nobody else bit... First read the user docs => http://perl.apache.org/docs/2.0/user/index.html (parts I and II at a minimum.) (Actually, you should read ALL of the docs => http://perl.apache.org/docs/2.0/index.html) Looking at the package list for FC3 you get httpd-2.0.52 and mod_perl-1.99_

Re: [mp2] threaded applications inside of mod_perl

2005-02-04 Thread Stas Bekman
Thanks for the details. I can now reproduce the segfault. I'll post again when this is fixed. -- __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org

Re: AW: Logging user's movements

2005-02-04 Thread Leo Lapworth
On 4 Feb 2005, at 14:16, James Smith wrote: On Fri, 4 Feb 2005, Denis Banovic wrote: I have a very similar app running in mod_perl with about 1/2 mio hits a day. I need to do some optimisation, so I'm just interessted what optimisations that you are using brought you the best improvements. Was it

Re: Logging user's movements

2005-02-04 Thread Malcolm J Harwood
On Friday 04 February 2005 3:13 am, ben syverson wrote: > I'm curious how the "pros" would approach an interesting system design > problem I'm facing. I'm building a system which keeps track of user's > movements through a collection of information (for the sake of > argument, a Wiki). For example

Re: Intercepting with data for mod_dav

2005-02-04 Thread Stefan Sonnenberg-Carstens
Jeff Finn schrieb: I've been doing this with mod_perl 2.. here's the relative parts of my config: Alias /dav_files /home/users # # hook into the other phases for # PerlOutputFilterHandler MyEncrypt::output PerlInputFilterHandler MyEncrypt::input PerlSetOu

RE: Intercepting with data for mod_dav

2005-02-04 Thread Jeff Finn
I've been doing this with mod_perl 2.. here's the relative parts of my config: Alias /dav_files /home/users # # hook into the other phases for # PerlOutputFilterHandler MyEncrypt::output PerlInputFilterHandler MyEncrypt::input PerlSetOutputFilter

Re: setting environment variables

2005-02-04 Thread colin_e
Yes I think it's more complicated. I don't have the original setup that caused my problem, but i'm pretty sure I found that if I set a mixed-case env var (say 'MyEnv_Var') with SetEnv, in my mod_perl app I got the variable set (exists == true) but with no value, whereas using PerlSetEnv with the

Re: AW: Logging user's movements

2005-02-04 Thread James Smith
On Fri, 4 Feb 2005, Denis Banovic wrote: > Hi Leo, > > I have a very similar app running in mod_perl with about 1/2 mio hits a day. > I need to do some optimisation, so I'm just interessted what optimisations > that you are using brought you the best improvements. > Was it preloading modules in

Intercepting with data for mod_dav

2005-02-04 Thread Stefan Sonnenberg-Carstens
Hi list, I'm struggeling a bit with the following : I set a mod_dav DAV server, which works fine. One thing I *must* accomplish, is to write the uploaded files encrypted in some way to the disk, and publish them back unencrypted. That should be perfectly possible with apache's filters. The problem

AW: Logging user's movements

2005-02-04 Thread Denis Banovic
Hi Leo, I have a very similar app running in mod_perl with about 1/2 mio hits a day. I need to do some optimisation, so I'm just interessted what optimisations that you are using brought you the best improvements. Was it preloading modules in the startup.pl or caching the 1x1 gif image, or mayb

[JOB] Perl/PHP Web application development

2005-02-04 Thread Denis Banovic
Title: [JOB] Perl/PHP Web application development Hi! We search a developer with good programming skills in (mod_)Perl / PHP for a full-time job in Salzburg, Austria. You should also have a working expirience with Linux and MySQL. We are the biggest internet agency in western Austria. If y

Re: Logging user's movements

2005-02-04 Thread Leo Lapworth
H On 4 Feb 2005, at 08:13, ben syverson wrote: Hello, I'm curious how the "pros" would approach an interesting system design problem I'm facing. I'm building a system which keeps track of user's movements through a collection of information (for the sake of argument, a Wiki). For example, if

Re: [mp2] threaded applications inside of mod_perl

2005-02-04 Thread bob-modperl
On Thu, 3 Feb 2005, Stas Bekman wrote: where is the modperl confguration? As far as you've shown there is no mod_perl involved in serving any requests. (Hint: show us Directory/Location/etc container responsible for a request that has triggered the segfault) SetHandler perl-script

ModPerl Installiation help

2005-02-04 Thread steve silvers
I just installed Fedora core 3, everything. The default Perl install is 5.8.5 and not sure about Apache for httpd -v does not display the version. My question is how do I now install modperl and get it working. Do I have to download another version of Perl and Apache to rebuild? I have never use

ModPerl Installiation help

2005-02-04 Thread steve silvers
I just installed Fedora core 3, everything. The default Perl install is 5.8.5 and not sure about Apache for httpd -v does not display the version. My question is how do I now install modperl and get it working. Do I have to download another version of Perl and Apache to rebuild? I have never use

Logging user's movements

2005-02-04 Thread ben syverson
Hello, I'm curious how the "pros" would approach an interesting system design problem I'm facing. I'm building a system which keeps track of user's movements through a collection of information (for the sake of argument, a Wiki). For example, if John moves from the "dinosaur" page to the "bird"