RE: mod_perl installation problem...

2003-07-23 Thread Jim Morrison [Mailing-Lists]
. === -Original Message- From: Randy Kobes [mailto:[EMAIL PROTECTED] Sent: 22 July 2003 16:50 To: Jim Morrison [Mailing-Lists] Cc: [EMAIL PROTECTED] Subject: Re: mod_perl installation problem... On Tue, 22 Jul 2003, Jim Morrison [Mailing-Lists] wrote: Hello, I've just come

RE: mod_perl installation problem...

2003-07-23 Thread Jim Morrison [Mailing-Lists]
Was a 'make' of libapreq successful, before the 'make test'? And also, does the user you're running the tests as have the proper permissions to be running tests within /usr/src/libapreq-1.2/? Make appeared to be successful yes (afaik)... I did wonder about the permissions thing but I

mod_perl installation problem...

2003-07-22 Thread Jim Morrison [Mailing-Lists]
Hello, I've just come a cropper trying to reinstall mod_perl, and I'm a little desparate! Any help would be greatly appreciated. (I've 'a' mod_perl/apache running fine, but I can't get Apache::Cookie running along with) I'm trying to install: apache_1.3.28 + mod_perl-1.28 My config

RE: mod_perl installation problem... (A little more info)

2003-07-22 Thread Jim Morrison [Mailing-Lists]
Further to the below.. Just found my error_log which might be of some use.. The bit that glares at me is: [Tue Jul 22 16:38:47 2003] [error] Can't locate object method new via package Apache::Request at /usr/src/mod_perl-1.28/t/net/perl/api.pl line 11, fh1b line 1. Which is annoying because

RE: Oracle9.2 and mod_perl - advice sought

2003-03-26 Thread Jim Morrison [Mailing-Lists]
Chris, Dmitri, Chuck, Thank you all.. Have got myself a safari bookshelf and cpan shell at the ready.. Wish me luck... Databases here I come ;-) - Jim -Original Message- From: Christopher Taranto [mailto:[EMAIL PROTECTED] Sent: 25 March 2003 22:13 To: [EMAIL PROTECTED]

Dual Processors Mod Perl

2003-03-13 Thread Jim Morrison [Mailing-Lists]
Hey ho, Sorry if this is an FAQ or a little OT.. We're thinking of moving a couple of servers and one of the possibilities is a dual PIII box (Compaq AFAIK, probably pretty standard rack box) I'm just wondering how Linux (RedHat 7.2) deals with dual processors, and whether any of the following

Serving two pages consecutively

2003-03-05 Thread Jim Morrison [Mailing-Lists]
Hi, Anyone got a good/simple way of serving two pages consecutively with the minimum of load/hassle etc? Preferably just serving two pages from the same process. The reason being that I need to go off and get quite a bit of date from various places and I wanted to feed it back into the page

RE: Serving two pages consecutively

2003-03-05 Thread Jim Morrison [Mailing-Lists]
Message- From: Jim Morrison [Mailing-Lists] [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 11:07 AM To: [EMAIL PROTECTED] Subject: Serving two pages consecutively Hi, Anyone got a good/simple way of serving two pages consecutively with the minimum of load/hassle

RE: child-parent memory access / mod_perl / shared mem /inter-proccess communication , etc..

2003-02-24 Thread Jim Morrison [Mailing-Lists]
Perrin, I suggest you look at IPC::MM or IPC::Shareable. IPC::Shareable is more transparent, but IPC::MM has better performance. IPC::MM simply creates a hash in shared memory and lets you write to it. Either of these will allow you to share data between processes. Thanks, I'll have a

RE: child-parent memory access / mod_perl / shared mem / inter-proccess communication , etc..

2003-02-24 Thread Jim Morrison [Mailing-Lists]
Hmm.. Yes, it sounds pretty sketchy to me too! Immediately what I am playing with is the idea of keeping parsed XML (XML::LibXML)in memory between requests. Is this a completely barmy idea? Probably, because you'll confuse XML::LibXML's garbage collector. Sniff.. I've kind of got

RE: child-parent memory access / mod_perl / shared mem / inter-proccess communication , etc..

2003-02-24 Thread Jim Morrison [Mailing-Lists]
Jim Morrison [Mailing-Lists] wrote: Sniff.. I've kind of got something working... Enough such that one httpd can request an XYZ, and if a second httpd comes along a little later and requests the same XYZ then it will get it from shared memory. I hope you used one of the modules I

child-parent memory access / mod_perl / shared mem / inter-proccess communication , etc..

2003-02-23 Thread Jim Morrison [Mailing-Lists]
Hello, Could someone help!?.. I always thought that it was technically possible under mod_perl to share memory between Child processes.. Having spent the w/e getting to grips with startup.pl's and the such I'm beginning to discover that it's only possible to share read-only memory and as soon