Re: autogenerating virtual hosts

2005-12-01 Thread Randal L. Schwartz
> "Tom" == Tom Schindl <[EMAIL PROTECTED]> writes: Tom>system("/bin/mkdir -p $docroot"); Tom>system("/bin/mkdir -p $docroot/logs/"); Ick. Ick ick. Ick ick ick. What's wrong with File::Path::mkpath? You'd rather fork (usually needlessly) two times per virthost? Ick. -- Ra

Re: Time::localtime under mod_perl2 showing output in client-side time zones

2005-12-01 Thread Tyler MacDonald
Matt Sergeant <[EMAIL PROTECTED]> wrote: > >Thread::Semaphore with the same results. If anyone would like the URL > >to see this for themselves write me off list. If there is need for > >additional information than I apologize in advance for not submitting > >it and will do so upon request. >

Re: Time::localtime under mod_perl2 showing output in client-side time zones

2005-12-01 Thread Matt Sergeant
On 6 Nov 2005, at 10:12, Richard N. Fogle wrote: We've tried the script with CGI(), I currently have it posted without. Same results. We've tried placing the time functions in a subroutine with private variables with the same results. Tried using Thread::Semaphore with the same results. If

Re: mod_perl and multi user environment - clashes with other users's data

2005-12-01 Thread Malcolm J Harwood
On Thursday 01 December 2005 04:48 pm, Senthil Nathan wrote: > im using globals with the keyword "use". > also it worked fine without mod_perl. > > thats what worries now... mod_perl is a persistent environment. cgi-bin loads a fresh perl interpreter each time. You have to do some things differen

Re: mod_perl and multi user environment - clashes with other users's data

2005-12-01 Thread Tyler MacDonald
Senthil Nathan <[EMAIL PROTECTED]> wrote: > im using globals with the keyword "use". > also it worked fine without mod_perl. > > thats what worries now... > i tried ModPerl:;PerlRun in the httpd.conf and see no change in the global > data being used by others. > so how can i do away with that pro

Re: mod_perl and multi user environment - clashes with other users's data

2005-12-01 Thread Senthil Nathan
im using globals with the keyword "use".also it worked fine without mod_perl.thats what worries now...i tried ModPerl:;PerlRun in the httpd.conf and see no change in the global data being used by others. so how can i do away with that problem???thankssenthilOn 12/2/05, Malcolm J Harwood < [EMAIL PR

Re: mod_perl and multi user environment - clashes with other users's data

2005-12-01 Thread Malcolm J Harwood
On Thursday 01 December 2005 04:15 pm, Senthil Nathan wrote: > im facing a problem with mod_perl2 on apache 2 as, > > in the multiuser environment, everyone login to the page and their > respective profile gets displayed. after every click, other user's data > also gets aappended to this current v

Re: mod_perl and multi user environment - clashes with other users's data

2005-12-01 Thread Tyler MacDonald
Senthil Nathan <[EMAIL PROTECTED]> wrote: > in the multiuser environment, everyone login to the page and their > respective profile gets displayed. after every click, other user's data also > gets aappended to this current view for the user, which is not the expected > one in mod_perl. > > the sam

mod_perl and multi user environment - clashes with other users's data

2005-12-01 Thread Senthil Nathan
hi all,im facing a problem with mod_perl2 on apache 2 as,in the multiuser environment, everyone login to the page and their respective profile gets displayed. after every click, other user's data also gets aappended to this current view for the user, which is not the expected one in mod_perl. the s