-- dele454 <[email protected]> wrote
(on Tuesday, 27 January 2009, 06:22 AM -0800):
> I just noticed that bg images, bg colours set in the tundra theme stylesheet
> (tundra.css) dont apply to some of my pages especially pages whose URLs
> require parameters like 
> 
> www.mydomain.com/event/details/144.
> 
> For the lightbox widget:
> 
>  - the controls dont show but shows on pages like www.mydomain.com/event
> 
> For tooltips:
> 
> - the background colour and connecting arrow dont show up. How can i resolve
> this issue? 
> This is how it should show
> http://www.nabble.com/file/p21686243/2.gif 
> 
> This is how it is showing on pages that accept parameters:
> http://www.nabble.com/file/p21686243/1.gif 
> 
> Thanks please help is needed

My guess is that you've got a bad rewrite rule in place. Make sure it
looks like this:

    # Rewrite Rules
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} -s [OR]
    RewriteCond %{REQUEST_FILENAME} -l [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^.*$ - [NC,L]
    RewriteRule ^.*$ /index.php [NC,L]

The old rewrite rules were not terribly flexible, and there were a
number of Dojo resources with extensions not in that list that simply
could not be loaded as a result.

-- 
Matthew Weier O'Phinney
Software Architect       | [email protected]
Zend Framework           | http://framework.zend.com/

Reply via email to