your .htaccess is not setup correctly.  It's redirecting the call to
index.php, and Zend Framework is trying to parse a route.  Make sure youre
RewriteRule looks like the following:

RewriteEngine on
RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php


or this:

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* index.php

On Mon, Feb 9, 2009 at 12:27 PM, Steve Uplift <djupl...@rawelements.net>wrote:

>
> I am getting some 404 erros showing up in my Firebug console when I try to
> use Zend_Dojo. I get these errors:
>
> GET http://www.mysite.com/js/dojo/dijit/form/nls/en/validate.js 404 Not
> Found
> GET http://www.mysite.com/js/dojo/dijit/form/nls/en-gb/validate.js 404 Not
> Found
> GET http://www.mysite.com/js/dojo/dojo/cldr/nls/en-gb/currency.js 404 Not
> Found
> GET
> http://www.mysite.com/js/dojo/dijit/form/templates/ValidationTextBox.html
> 404 Not Found
>
> Everything seems to be working ok, but I still get these errors, and in
> turn
> it creates a 'Invalid controller specified (js)' exception in my log.
>
> This was the case in 1.7 and is still the case now in 1.7.4.
>
> Anyone able to shed any light on this?
>
> Thanks
>
> Steve
> --
> View this message in context:
> http://www.nabble.com/Zend_Dojo-Missing-Files-tp21919014p21919014.html
> Sent from the Zend Framework mailing list archive at Nabble.com.
>
>


-- 
A.J. Brown
web | http://ajbrown.org
phone | (937) 660-3969

Reply via email to