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

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 same piece

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 view

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

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 problem???

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 differently