Steve Hurley wrote:
> 
> When I turn on Apache:ASP and try to load a few html files it messes up the graphics 
>at the top.
> 
>   Now if I turn off the ASP, graphics load fine...
>   Page with banner graphics split up: http://www.clark.cc.oh.us/asp/student.html
>   page with one banner graphic...: http://www.clark.cc.oh.us/asp/student2.html
> 
>   in http.conf:
>   <Location /asp/>
>   SetHandler perl-script
>   PerlHandler Apache::ASP
>   PerlSetVar Global /tmp
>   </Location>
> 

If you want to mix media types in the same directory, use the 
Files Apache config to mark certain files for Apache::ASP execution
like so:

<Files ~ (\.htm$)>
        SetHandler      perl-script
        PerlHandler     Apache::ASP
        PerlSetVar      NoState         1
</Files>

I'm guessing that Apache::ASP was trying to parse anything under
/asp/, including graphics, which just _might_ mess things up :)

-- Josh
_________________________________________________________________
Joshua Chamas                           Chamas Enterprises Inc.
NodeWorks >> free web link monitoring   Huntington Beach, CA  USA 
http://www.nodeworks.com                1-714-625-4051

Reply via email to