Re: problem running suid scripts...

2004-09-23 Thread Simon Dassow
Clayton Cottingham wrote: Its true, but on a secured intranet it shouldn't be so bad For me there's no ``shouldn't be so bad''. I only stick with something that is known as good (secure), nothing else. But that's _my_ oppinion about security (and no customer/user complained yet). When the PHB {p

Re: problem running suid scripts...

2004-09-21 Thread Simon Dassow
Rajesh Pethe wrote: I'm new to mod_perl and am enjoying every bit of it, I have new problem, I want to execute suid scripts from mod_perl i.e. the script called from mod_perl should be executed as a priveliged user and not as default 'apache' user. Hi Rajesh, first of all: avoid using suid. Second

Re: Accessing/storing data in other modules

2003-10-17 Thread Simon Dassow
On 17 Oct 2003 16:17:52 -0400 Perrin Harkins <[EMAIL PROTECTED]> wrote: > On Fri, 2003-10-17 at 12:46, Simon Dassow wrote: > > I'm trying to write a modular system with mod_perl but currently i > > cant store data into hashes in the other modules. > > I can store

Accessing/storing data in other modules

2003-10-17 Thread Simon Dassow
Hi People, I'm trying to write a modular system with mod_perl but currently i cant store data into hashes in the other modules. I can store data into the hash but if i dump it there is no change :-( $r->pnotes() would work, but i dont want to copy the whole data again and again. Anyone can explain

Re: Shared data in module / sharing %session

2003-10-16 Thread Simon Dassow
On 16 Oct 2003 17:43:14 -0400 Perrin Harkins <[EMAIL PROTECTED]> wrote: > On Thu, 2003-10-16 at 16:42, Simon Dassow wrote: > This is probably because Apache::Session locks until it gets > destroyed, and globals never get destroyed. Doh... ok, now i know, thanks :) > > My c

Shared data in module / sharing %session

2003-10-16 Thread Simon Dassow
Hi Pe(rlers|ople), I want to have %session to be shared in a module. With ``use vars qw(%session);'' it doesnt seem to work (Apache is blocking after a few requests). My current solution is to store the reference via ``$r->pnotes("SESSION_DATA"=>\%session);'' and save $r into $self so the other met