Re: ORACLE_HOME environment variable not set!

2002-11-05 Thread Gabriel C Millerd
. i put up with it for a year or so in my error.logs. if you set it in your /etc/init.d/apache it seems to do the same thing until apachectl reload during log maintence. i believe. -- Gabriel C. Millerd | Script Monkey |What soon grows old? Gratitude. --Aristotle |

AuthCookieDBI Question

2002-10-16 Thread Gabriel C Millerd
Is there any thinking about there being a security problem or the potential for one with Apache::AuthCookieDBI's Cookie name of Apache::AuthCookieDBI_[NAMEHERE] I from time to time look at the cookies my browsers collect and i have never seen anything simular. -- Gabriel C. Mi

urls with session info

2002-10-02 Thread Gabriel C Millerd
i have been trying to write a handler that will provide me with session data using the URL (eg, http://www.domain.com/$sessionid . $r->url) like the eagle books has on p246. in addition i am serving a cookie with that same $sessionid and then comparing to two $sessionid's in order to prevent

Re: which handler?

2002-06-14 Thread Gabriel C Millerd
. $r->uri); return OK; } else { ## ## this works perfect ## $r->warn("Apache::Kosher($state)"); my $url=$r->dir_config('KosherRedirect'); $r->content_type('text/html'); $r->header_out(Lo

Re: which handler?

2002-06-13 Thread Gabriel C Millerd
$r->content_type('text/html'); $r->header_out(Location=>$url); return REDIRECT; } } --- Gabriel C. Millerd

Re: which handler?

2002-06-13 Thread Gabriel C Millerd
that would have been my problem all today i think thanks again --- Gabriel C. Millerd | When sorrows come, they come not single spies, But Sith Admin |in battalions. --William Shakespeare, Hamlet |

which handler?

2002-06-13 Thread Gabriel C Millerd
do i use for this. thanks --- Gabriel C. Millerd | Have you noticed the way people's intelligence Script Monkey | capabilities decline sharply the minute they start |waving guns around? -Dr. Who

DBD::RAM Woes

2002-06-10 Thread Gabriel C Millerd
erby=join(', ', @tmp); } # DBD::RAM 'export array' method broken? my $sth = $dbh->prepare("SELECT * FROM $table ORDER BY $orderby"); $sth->execute(); my @body; while( my (@cells) = $sth->fetchrow_array) { push(@body, \@c

Apache::TalkBack

2002-06-05 Thread Gabriel C Millerd
, and timestamp. then the user in charge of that cgi could look up those issues? --- Gabriel C. Millerd | All for one, one for all, that is out device. Script Monkey | -Alexander Dumas the Elder, The Three Musketeers |

RE: Invoke PHP scripts?

2002-05-30 Thread Gabriel C Millerd
On Wed, 29 May 2002, Jim Helm wrote: > How about using php in cgi mode and using `php scriptname` from within > perl to capture the output? Not the best performance-wise, but it would > do what you want, I think. > will the cgi environment be preserved? --- Gabriel Millerd | When

Re: Basic usage of Apache::Session::Oracle

2002-04-29 Thread Gabriel C Millerd
On Mon, 29 Apr 2002, F. Xavier Noria wrote: > 3. Could one set up things in a way that allows the database to see >the timestamps and program a trigger to delete old sessions? Or >is there a standard idiom for doing this in a different way? > thats what i usually do ..