Re: Summary: identifiying unique users

2003-09-17 Thread Patrick Mulvany
On Wed, Sep 17, 2003 at 08:39:58AM +0200, Frank Maas wrote: Ged wrote: How to avoid multiple logins? The short answer is: you can't. Sure you can. Charge $10 per login. I don't want to clobber the list with non-technical trivia, but even when you charge money, you can't avoid

Re: AIX perfomance

2003-09-15 Thread Patrick Mulvany
On Fri, Sep 12, 2003 at 04:12:00PM +0100, Ged Haywood wrote: Hi there, On Fri, 12 Sep 2003, William McCabe wrote: I've got a lot of experience with mod_perl on both linux and AIX and can state categorically that there are no typical conditions which would cause AIX run strangely slowly

Re: [MP2] Strange slow MySQL queries

2003-09-08 Thread Patrick Mulvany
Hi, This looks more like a MySQL problem than a specific MP2 issue. However here are a couple of pointers. All the queries below are updates on the same table this would indicate to me you may be having a locking issue. What you need to do is locate the locking transaction it may be as simple

Re: Interpreting HTML

2003-08-26 Thread Patrick Galbraith
http://www.nodeworks.com -- -- Patrick Galbraith Senior Software Developer [EMAIL PROTECTED] [EMAIL PROTECTED] 206.719.2461 -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html

Installation/test problems - mod_perl-1.27

2003-08-26 Thread Patrick West
I've installed apache_1.3.27 and mod_perl-1.27. When I go to run the tests in mod_perl-1.27/t (just running the first one), first it complains that it couldn't start the server. But the server is actually running. So I run modules/actions (commenting out the part of TEST that tries to start

Re: Interpreting HTML

2003-08-25 Thread Patrick Galbraith
Js, instead of Location, use Files Alias /test/ C:/apache2/htdocs/ FILES ~ \.pl$ SetHandler perl-script PerlResponseHandler ModPerl::Registry PerlOptions +ParseHeaders Options +ExecCGI /FILES Hope this is the solution, or what you're looking for, regards, Patrick js wrote: I

Re: Interpreting HTML

2003-08-25 Thread Patrick Galbraith
phone:925-552-0128 Chamas Enterprises Inc.http://www.chamas.com NodeWorks Link Checker http://www.nodeworks.com -- -- Patrick Galbraith Senior Software Developer [EMAIL PROTECTED] [EMAIL PROTECTED] 206.719.2461 -- Reporting bugs: http

Re: Interpreting HTML

2003-08-25 Thread Patrick Galbraith
yeah, I wasn't quite sure of it... I've been so busy, I never played with it to see what it was capable of. Thanks for the pointer! regards, Patrick Josh Chamas wrote: Patrick Galbraith wrote: LocationMatch I think is what you want. Location ~ ... and LocationMatch ... do the same thing

Re: Apache::Session

2003-08-14 Thread Patrick Galbraith
with it. Hope this helps, Patrick Aleksandr Guidrevitch wrote: Hi, All What have you used to stip out that stuff ? I've reviewied HTML::StripScripts, but it seems to be very slow. I've also considered HTML::Filter to do that but I'm also affraid that HTML::Parser is not the fastest thing

Re: Apache::Session

2003-08-14 Thread Patrick Galbraith
, but what about proxies and NATs ? User Agent string could also be stolen via javascript. That means I tend to make stolen session ids non-reusable. Any thoughts ? Sincerely, Aleksandr Guidrevitch -- -- Patrick Galbraith Senior Software Developer [EMAIL PROTECTED] [EMAIL

[Patch] Apache::DBI - correctly clean up handles and reset attributes

2003-07-22 Thread Patrick Mulvany
so begin_work + should now be safe. Patrick Mulvany [EMAIL PROTECTED] + 0.92-dev - Avoid use of uninitialized value warning under mod_perl 2. --- DBI.pm 2003-06-10 12:20:06.0 + +++ DBI.cleanup.pm 2003-07-21 09:22:34.0 + @@ -23,6 +23,8 @@ my

Re: templating system opinions

2003-07-21 Thread Patrick Galbraith
Consulting www.houseabsolute.com ===*/ -- Patrick Galbraith Senior Software Developer [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]

Re: templating system opinions (axkit?)

2003-07-21 Thread Patrick Galbraith
/mod_perl reclaim some of the lost ground. On Sun, 20 Jul 2003, Dave Rolsky wrote: On Sun, 20 Jul 2003, Patrick Galbraith wrote: I've been working at Classmates.com for a couple months contracting, and they use Text::Forge. I've been impressed by the performance, and wish

Re: templating system opinions

2003-07-20 Thread Patrick Galbraith
- it looks a lot like JSP. They serve out around 12-13M pageviews a day using it. It just doesn't have a lot of active contributors to it now. Eventually, they will switch to java/atg dynamo. ... All of this said, what is the most commonly used system out there? Jesse Erlbaum wrote: Hi Chris, Patrick

templating system opinions

2003-07-18 Thread Patrick Galbraith
Hi there, Just wondering what the best templating system is to use and/or learn. I've briefly read up on the pros and cons of each, and am just wondering which one is the most widely _used_ and best to learn if you're wanting to know something that there are jobs for. thanks ;) -- Patrick

Re: templating system opinions

2003-07-18 Thread Patrick Galbraith
Thanks much, Yeah, I worked with TT when I was on the Slash team ;) On Fri, 18 Jul 2003, Chris Devers wrote: On Fri, 18 Jul 2003, Patrick Galbraith wrote: Just wondering what the best templating system is to use and/or learn. I've briefly read up on the pros and cons of each, and am

Re: templating system opinions

2003-07-18 Thread Patrick Galbraith
at 13:26, Ken Y. Clark wrote: On Fri, 18 Jul 2003, Patrick Galbraith wrote: Date: Fri, 18 Jul 2003 14:25:32 -0700 (PDT) From: Patrick Galbraith [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: templating system opinions Hi there, Just wondering what the best templating

Re: templating system opinions

2003-07-18 Thread Patrick Galbraith
TT was ok, but it did use a bunch of ram ;) I gotta have something to counter PHP people with too ;) On Fri, 18 Jul 2003, Chris Devers wrote: On Fri, 18 Jul 2003, Patrick Galbraith wrote: Yeah, I worked with TT when I was on the Slash team ;) Then why are you asking a question like

How do you set vars via interactive startup?

2003-07-16 Thread Patrick Galbraith
. I've tried things like a set method that sets a class variable of the handler I'm calling in startup.pl.. doesn't work. So, I'm stumped. Any ideas? I'd be so greatful! -- Patrick Galbraith Senior Software Developer [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]

Re: How do you set vars via interactive startup?

2003-07-16 Thread Patrick Galbraith
Yes, if I hardcode it, fine, but not via reading STDIN into a var, and then setting whatever to that var. On 16 Jul 2003, Perrin Harkins wrote: On Wed, 2003-07-16 at 17:39, Patrick Galbraith wrote: I'm trying to figure out how one would set vars via a startup.pl script or using

Re: mod_perl slower than expected?

2003-06-13 Thread Patrick Mulvany
On Fri, Jun 13, 2003 at 01:16:48PM +0800, Trevor Phillips wrote: On Friday 13 June 2003 12:26, Perrin Harkins wrote: You're not giving us much to go on here. What kind of changes did you make? Can you verify that you are running the correct versions of the modules under mod_perl? Are

Re: Large Data Set In Mod_Perl

2003-06-13 Thread Patrick Mulvany
On Wed, May 28, 2003 at 10:07:39PM -0400, Dale Lancaster wrote: For the perl hash, I would key the hash on the combo of planet and date, something like: my %Planets = ( jupiter= { 1900-01-01= ( 5h 39m 18s, +22o 4.0', 28.922, -15,128,

[PATCH] Apache::DBI - AutoCommit = 1 and begin_work (inc example)

2003-06-12 Thread Patrick Mulvany
Hi, Came accross a bug when when trying to reduce creation of handles on a site. Currently Apache::DBI makes the assumption that it AutoCommit = 1 then the handle does not need cleaning up. This is not neccessariliy true as begin_work switches off the AutoCommit for one transaction. First

Re: [mp2] win2000 + Apache::DBI + Oracle

2003-06-10 Thread Patrick Mulvany
On Tue, Jun 10, 2003 at 04:27:17PM +1000, Stas Bekman wrote: Perrin Harkins wrote: On Tue, 2003-06-10 at 01:45, Stas Bekman wrote: mp2+winFU = winnt MPM = no forking, only threads = Apache::DBI is useless there. not only useless, but also wasteful, since it's going to do work that has no

Re: how to make sure code wasn't changed

2003-05-31 Thread Patrick Mulvany
On Thu, May 29, 2003 at 06:02:10PM -0700, Mike Zelina wrote: Here's my question: has anyone setup a clever way, possibly using CRC/MD5 analysis, to check to make sure code hasn't been changed? I don't care if someone steals it or gives it to their friends, but I don't want the code to yield

Apache 2.0 worker MPM

2002-04-30 Thread Patrick Mackinlay
with glibc 2.1, successfully? Thanks, Patrick -- Patrick Mackinlay[EMAIL PROTECTED] ICQ: 59277981tel: +44 7050699851 Yahoo messenger: patrick00_ukfax: +44 7050699852 SpaceSurfer Limited

Re: PDF generation

2002-04-08 Thread Patrick
? I'm about to give up on this solution, any comments? I also think that should not mess with the PDF output directly. Because it looks like text, but as you show yourself, it is in fact more complicated. Patrick.

Re: PDF generation

2002-04-06 Thread Patrick
::FastTemplate to fill them in with dynamic data, run pdflatex, and then have a nice PDF file. Good luck in your search. Patrick.

Apache::MP3::Skin and PerlSetVar

2001-11-28 Thread Patrick Buckingham
PerlHandler Apache::MP3::Skin PerlSetVar CacheDir /usr/tmp/mp3_cache PerlSetVar SortFieldsAlbum,Title,-Duration PerlSetVar HomePath /sounds # optional PerlSetVar DefaultSkin default.tmpl # required This is the config Thanks, Patrick

Re: Shutdown

2001-11-05 Thread Patrick
). Regards, Patrick.

Re: Apache::SimpleTemplate (don't do it!)

2001-07-10 Thread Patrick
needs there are other solutions. -- Patrick. ``C'est un monde qui n'a pas les moyens de ne plus avoir mal.'' PGP signature

Re: Apache::SimpleTemplate (don't do it!)

2001-07-09 Thread Patrick
first and now with mod_perl without any problems whatsoever. My two euro cents. -- Patrick. ``C'est un monde qui n'a pas les moyens de ne plus avoir mal.''

no_cache pragma/cache-control headers : confusion

2001-04-04 Thread Patrick
are they like that by default ? How to override that (with headers_out ?) ? TIA. -- Patrick. ``C'est un monde qui n'a pas les moyens de ne plus avoir mal.''

Re: Reading email with mod_perl

2001-02-07 Thread Patrick
On Wed, Feb 07, 2001 at 11:29:59AM -0700, Jason Terry took time to write: Does anybody have an information on how to read a MIME encoded email attachment with mod_perl? This is not specific to modperl. The module MIME::Entity does that very nicely IMNSHO. -- Patrick. ``C'est un monde qui n'a

Re: RFC: mod_perl advocacy project resurrection

2000-12-07 Thread Patrick
, -- Patrick. ``C'est un monde qui n'a pas les moyens de ne plus avoir mal.'' - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Validating Parsers

2000-12-06 Thread patrick
hello Does anyone know of a xml parsing module that validates using built-in functionality, or is there a method to validate xml using XML::Parser with another module? -- Mail: [EMAIL PROTECTED] Area: Web Development (Developer) Date: 06-Dec-00 Time: 10:47:13

Re: PerlLogHandler not being run ?

2000-10-14 Thread Patrick
On Sat, Sep 30, 2000 at 07:47:06PM +0200, Patrick took time to write: I've put : PerlLogHandler My::Handler in apache's httpd.conf but it is not runned by Apache ! (answering to myself) For everyone insterested, here is my solution : I don't understand the problem, but using a -push_handler

Re: More mod-perl as DSO on Solaris (Please help)

2000-10-05 Thread Patrick Durusau
Add the path for APXS and it worked like a champ! Many thanks! Patrick My .02... Patrick Durusau wrote: Hello, I am trying to install Apache 1.3.12 with mod_perl 1.24 on Solaris 2.8. In my most recent attempt, relying on several suggestions from the archive I have: (Using gcc

More mod-perl as DSO on Solaris (Please help)

2000-10-04 Thread Patrick Durusau
the httpd (assuming someone can point out how to make it configure Apache for DSO support for other modules)? I may be impressed once I get mod_perl working but so far it is a long way from the ease of installing the Apache webserver. Patrick -- Patrick Durusau Director of Research and Development

PerlLogHandler not being run ?

2000-09-30 Thread Patrick
YYY\n"); } Nothing written, nowhere... What do I miss ? Is there a delay between the Main handler and the Log Handler during Apache's run ? -- Patrick. ``C'est un monde qui n'a pas les moyens de ne plus avoir mal.''

Re: Apache::PerlVINC makes Apache segfault

2000-08-05 Thread Patrick
with mod_perl 1.24. you will have to get it from the latest cvs snapshot of mod_perl. you will also have to remake/install PerlVINC after you install ExtUtils. see if that helps. On Sat, 29 Jul 2000, Patrick wrote: Hi all, (debian potato) apache-ssl : 1.3.9.13-2 modperl

Apache::PerlVINC makes Apache segfault

2000-07-29 Thread Patrick
t. What am I doing wrong ? How can I correct ? Is there another possibility to achieve the same goal ? (besides running different copies of Apache binded on different ports) If that's make a difference i'm also using Apache::StatINC Thanks in advance for your time and your answers. PS: modperl just rocks, kudos to everyone ! -- Patrick. Because if life has a meaning, we should already know it.

Re: Hang in $r-print w/ POST

2000-07-07 Thread Patrick
::FastTemplate always suited my needs. Of course there are many other solutions, like others have told you : HTML::Mason (seems to be very popular), etc... HTH -- Patrick. Because if life has a meaning, we should already know it.