in reply to Problem with graphics and Apache::ASP

The ASP engine is parsing your graphics and mucking with "return"s and such. Either move the images directory out of the /asp/ tree or switch the handler back in the subdirectory like:
<Location /asp/images/ SetHandler default-handler </Location>

--
$you = new YOU;
honk() if $you->love(perl)

Replies are listed 'Best First'.
Re: Re: Problem with graphics and Apache::ASP
by Steve4950 (Initiate) on Apr 11, 2001 at 20:26 UTC
    I also found this in mod_perl mailing list to process the file instead of the location. Darn thing :)

    Change Location directive in httpd.conf:
    Files ~ (\.htm)
    SetHandler perl-script
    PerlHandler Apache::ASP
    PerlSetVar NoState 1
    /Files


    Thanks,
    Steve