AuthCookie

2000-11-23 Thread Kiran Kumar
Hi, I have Installed AuthCookie Module but it does not work on netscape (4.7) but works on IE . In netscape after I logout and later i request a protected page i still get the page ,Can anyone help me on this . Thanks in advance Kiran -

Re: init handler possible?

2000-11-23 Thread spam
On Thu, 23 Nov 2000, Alex Krohn wrote: > Hi, > > I'm looking for the opposite of a cleanup handler that can be set during > runtime under Apache::Registry. For example, in a script running under > Apache::Registry, I want to be able to add only: > > use MyModule; > > and have some init

Re: i am looking for mod perl tutor

2000-11-23 Thread spam
On Wed, 22 Nov 2000, mohammed abdul bari wrote: > Hi, > I am looking for mod perl tutors. I have a pretty good knowledge of perl but > just a lil bit about appache modules. I need some one who could spare a day > or 2 with 1 or 2 hours a day to get me basics. I live in santa clara. Really if y

init handler possible?

2000-11-23 Thread Alex Krohn
Hi, I'm looking for the opposite of a cleanup handler that can be set during runtime under Apache::Registry. For example, in a script running under Apache::Registry, I want to be able to add only: use MyModule; and have some initilization code get registered to run on every subsequent r

Apache::Session Questions

2000-11-23 Thread conark
I installed Apache::Session and am employing embed perl to do some simple session management. Apache restarts fine as of now. However, when I try using %mdat or %udat I get this error message: [57250]ERR: 24: Line 17: Error in Perl code: No space left on device at /usr/local/lib/perl5/site_perl/

Re: BerkeleyDB

2000-11-23 Thread Perrin Harkins
On Thu, 23 Nov 2000, Tim Bunce wrote: > On Wed, Nov 22, 2000 at 10:57:46AM -0800, Perrin Harkins wrote: > > > We got past these problems and then ran > > into issues with db corruption. If Apache gets shut down with a SIGKILL > > (and this seems to happen fairly often when using mod_perl), > >

OT: packing and unpacking help!

2000-11-23 Thread martin langhoff
hi, sorry to bother the list, but I'm stuck trying to convert this code into something more elegant, using pack() ... my $commandlength = length $command; my $high= (($commandlength & (255 << 8)) >> 8); my $low = ($commandlength & 255); my $commandstr = sprintf("\002%c%

Re: Problem with Apache::DBI under mod_perl!!

2000-11-23 Thread Edmar Edilton da Silva
Hi, I added the code folow in the config file, but the Apache ::DBI module continue don't working. If I don't load the Apache::DBI module, the apache works correctly. Using only the DBI and DBD::Oracle modules, I can access the Oracle database no problems. Really the problem must be in the

Re: User directive

2000-11-23 Thread George Sanderson
At 10:20 PM 8/15/00 -0700, you wrote: >>you want to change the uid at request time? the patch below will let you >say $r->server->uid($new_uid); > >you'll have to maintain changing it back yourself, like so: > >my $old_uid = $r->server->uid($new_uid); >$r->register_cleanup(sub { shift->server->ui

Re: Problem with Apache::DBI under mod_perl!!

2000-11-23 Thread Ian Kallen
> #!/usr/bin/perl > > use strict; > > # Extend @INC if needed > use lib qw(/dir/foo /dir/bar); # ok, setup the Oracle and (optionally) the debug DBI environment BEGIN { $ENV{'ORACLE_HOME'}='/highway/to/orac/hell'; $ENV{DBI_TRACE}="3=/var/tmp/dbitrace.log"; } > > # Make sure we are in

BerkeleyDB

2000-11-23 Thread Tim Bunce
On Wed, Nov 22, 2000 at 10:57:46AM -0800, Perrin Harkins wrote: > We got past these problems and then ran > into issues with db corruption. If Apache gets shut down with a SIGKILL > (and this seems to happen fairly often when using mod_perl), Really? Why? I've not been aware of anyone needing t

Re: Problem with Apache::DBI under mod_perl!!

2000-11-23 Thread Edmar Edilton da Silva
Sorry, but I forgot, I also have installed a DBD module for the Oracle ( the "DBD::Oracle" ). Do you have any idea to resolve this problem? Thanks, Sapphire Software wrote: > Hello > > Don't you need a DBD module? > > Or did I miss something? > > Ruben > > ---

Re: Problem with Apache::DBI under mod_perl!!

2000-11-23 Thread Sapphire Software
Hello Don't you need a DBD module? Or did I miss something? Ruben - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Problem with Apache::DBI under mod_perl!!

2000-11-23 Thread Edmar Edilton da Silva
Hi all, I have installed on the my machine the following modules: apache 1.3.12-2 perl-5.00503-10 mod_perl 1.21-10 DBI 1.14 Apache::DBI 0.87 For enable the mod_perl module, I added the below code in the configuration file of apache ("httpd.conf"): # If the perl module is installed, this

Re: i am looking for mod perl tutor

2000-11-23 Thread Matt Sergeant
On Wed, 22 Nov 2000, mohammed abdul bari wrote: > Hi, > I am looking for mod perl tutors. I have a pretty good knowledge of perl but > just a lil bit about appache modules. I need some one who could spare a day > or 2 with 1 or 2 hours a day to get me basics. I live in santa clara. Sounds like

Re: how do I restart the server

2000-11-23 Thread Ilya Soldatkin
> I have changed some of my scripts and I need to reload them. for that I need > to restart the server. but the changes are in my subtree in the sandbox. so > if I restart the server is it going to be problem for the other users. if > not is there any other way to reload my scripts. I have tried