in reply to Re: Request returns "200 OK", reports internal server error.
in thread Request returns "200 OK", reports internal server error. [solved]
Thanks for your comment! The code in question has in it:
use Apache::Constants qw( OK REDIRECT etc. );
Also, this is only triggered in a special case. That is, something like this:
sub general_request_handler { # do the usual stuff if ( $r->param( 'special' ) ) { # go off and do something special } # etc. }
We're taking the same path otherwise, and the "return OK" is fine there, so I don't think that's the problem here. Also, it doesn't happen every time the special case is used, only for certain users, certain data sets.
Thanks again.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Request returns "200 OK", reports internal server error.
by perrin (Chancellor) on Sep 18, 2008 at 18:37 UTC | |
by kyle (Abbot) on Sep 18, 2008 at 19:12 UTC |