Re: ORACLE_HOME environment variable not set!

2002-11-05 Thread Gabriel C Millerd
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. Millerd

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
)); my $url=$r-dir_config('KosherRedirect'); $r-content_type('text/html'); $r-header_out(Location=$url); return REDIRECT; } } --- Gabriel C. Millerd |Real Men don't make backups. They upload it via ftp Super Plumber | and let the world mirror it. -- Linus

which handler?

2002-06-13 Thread Gabriel C Millerd
handler method 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

Re: which handler?

2002-06-13 Thread Gabriel C Millerd
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 |

Re: which handler?

2002-06-13 Thread Gabriel C Millerd
) { $r-filename($r-document_root . $r-uri); return OK; } else { $r-warn(Apache::MonDiag($state)); my $url=$r-dir_config('MonDiagRedirect'); $r-content_type('text/html'); $r-header_out(Location=$url); return REDIRECT; } } --- Gabriel C

DBD::RAM Woes

2002-06-10 Thread Gabriel C Millerd
(); my body; while( my (cells) = $sth-fetchrow_array) { push(body, \@cells); } $sth-finish(); $dbh-disconnect(); return(\@body); } 1; --- Gabriel C. Millerd |Oh loneliness and cheeseburgers are a deadly Super Plumber |combination

Apache::TalkBack

2002-06-05 Thread Gabriel C Millerd
. 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 I

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 ...