Josh, in case you've missed this thread, can you please fix it in ASP.pm? Thanks.

Randy Kobes wrote:

The script work fine, but output browser is:
-------------------------------------------
Hola Mundo

OK
The server encountered an internal error or
misconfiguration and was unable to complete your request.
-------------------------------------------


Coincidentally, this was discussed about a week ago - the
problem arises because Apache::ASP returns an explicit
status of "200". Try the following - in
   D:\Path\to\your\Perl\site\lib\Apache\ASP.pm
insert near the top
   use Apache::Const -compile => ':common';
Then, around line 255, there is a subroutine called handler,
with a line in it that says
  my $status = 200;
Change this to
  my $status = Apache::OK;
There may be other places that return explicit numerical
codes that also may need changing, but this should fix
the above problem for pages that return OK.

__________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com


-- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html



Reply via email to