[rt-users] themes?

Emmanuel Lacour elacour at easter-eggs.com
Wed Oct 15 04:17:52 EDT 2008


On Wed, Oct 15, 2008 at 04:02:10PM +0800, cc wrote:
> Emmanuel Lacour wrote:
> > 
> > This seems to be an apache/mod-perl/fastcgi configuration issue as you
> > doesn't seems to be able to get static files (images, css).
> > 
> > Can you show us the relevant apache configuration?
> 
> Here's the configuration part of my apache
> 

I have more experience with fastcgi, but see my remarks:

> <VirtualHost *:80>
>    ServerName  rt.localserver.local
>    DocumentRoot /var/rt3/share/html


>    <Directory /var/rt3/share/html/>
>       AllowOverride All
>       Options ExecCGI FollowSymLinks

No need for ExecCGI theoritically.

>       Order allow,deny
>       Allow from all
>    </Directory>


>    AddDefaultCharset UTF-8
> 
>    PerlModule Apache::DBI
>    PerlRequire /var/rt3/bin/webmux.pl

Try adding:

    <Location /NoAuth/images>
            SetHandler default
    </Location>

(but shouldn't be needed)

>    <Location />
>       SetHandler perl-script
>       PerlHandler RT::Mason
>    </Location>
> </VirtualHost>
> 
> 


Also, are-you sure that you have "Set($WebPath, "");" in you're
RT_SiteConfig.pm (and not Set($WebPath, "/rt");)?

What happens (look also in apache logs) if you try to access
/NoAuth/css/web2/main-squished.css ?




More information about the rt-users mailing list