RE: help with custom Error documents/redirection

2000-12-22 Thread Geoffrey Young
> -Original Message- > From: Doug MacEachern [mailto:[EMAIL PROTECTED]] > Sent: Friday, December 22, 2000 1:14 AM > To: Geoffrey Young > Cc: '[EMAIL PROTECTED]'; [EMAIL PROTECTED] > Subject: RE: help with custom Error documents/redirection > > >

RE: help with custom Error documents/redirection

2000-12-21 Thread Doug MacEachern
On Wed, 13 Dec 2000, Geoffrey Young wrote: > BTW, it's always good (at least I've found) to call > my $prev_uri = $r->prev ? $r->prev->uri : $r->uri; or with one less method call :) my $prev_uri = ($r->prev || $r)->uri;

RE: help with custom Error documents/redirection

2000-12-13 Thread Geoffrey Young
> -Original Message- > From: B. Burke [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, December 13, 2000 10:44 AM > To: [EMAIL PROTECTED] > Subject: help with custom Error documents/redirection > > > I'm looking to implement custom error handling, and I'm > hitting a snag. > I'm hoping t