vote up 1 vote down star

I just started a new project with the Dojo toolkit, and no sooner did I drop my dojo.js script tag in than firebug started telling me

Could not load 'dojo._firebug.firebug'; last tried './_firebug/firebug.js'

I know dojo has a reputation for bad debugging messages, but this is ridiculous....

If anyone has any ideas about this I would appreciate it.

flag

You have any source code to go with that error message? – Nosredna Jun 27 at 16:25
lol that's the thing, the source code is: <script type='text/javascript' src='js/dojo.js'></script> .... and that's it – Paul Jun 27 at 16:27
I love Dojo, but I agree Dojo's error messags suck. – apphacker Jun 27 at 17:19

5 Answers

vote up 3 vote down check

You need to put it on a web server, per this thread -- probably a local web server that only serves to your own machine, of course, for development purposes.

link|flag
Ah thanks...I literally just started this project, haven't even set it up on my apache yet. Thanks! – Paul Jun 27 at 17:22
hmmm it still gives me that error... – Paul Jun 27 at 19:18
@Paul, if this "still gives [you] that error" you need to unaccept the answer. Otherwise delete your comment. – dlamblin Nov 23 at 18:41
vote up 1 vote down

Why not start with the skeleton code? When in doubt, go with the beginner's tutorial.

link|flag
vote up 1 vote down

i've run into this issue on Firefox, if you access a local HTML page that is not being passed through a server, Firefox will give you errors because if does not allow directory traversal.

Other browsers allow local directory traversal though.

The best solution is to run the page through a server (local or remotely) since a server allows this type of directory traversal to occur.

link|flag
vote up 1 vote down

It is possible to work without a web server. go through the below mentioned steps.

http://www.dojotoolkit.org/support/faq/why-does-dojo-fail-load-file-urls-firefox-3

Set Security.fileuri.strict origin policy to false and retry.

link|flag
vote up 0 vote down

Dojo.js should be in the root/Dojo folder.
It should work that way.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.