Dojo and Firebug - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T16:12:00Z http://stackoverflow.com/feeds/question/1053117 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1053117/dojo-and-firebug 1 Dojo and Firebug Paul 2009-06-27T16:19:31Z 2009-11-23T17:56:07Z <p>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</p> <pre><code>Could not load 'dojo._firebug.firebug'; last tried './_firebug/firebug.js' </code></pre> <p>I know dojo has a reputation for bad debugging messages, but this is ridiculous....</p> <p>If anyone has any ideas about this I would appreciate it.</p> http://stackoverflow.com/questions/1053117/dojo-and-firebug/1053150#1053150 3 Answer by Alex Martelli for Dojo and Firebug Alex Martelli 2009-06-27T16:34:55Z 2009-06-27T16:34:55Z <p>You need to put it on a web server, per <a href="http://www.nabble.com/newbie-question-td19229349.html" rel="nofollow">this thread</a> -- probably a local web server that only serves to your own machine, of course, for development purposes.</p> http://stackoverflow.com/questions/1053117/dojo-and-firebug/1053152#1053152 1 Answer by Nosredna for Dojo and Firebug Nosredna 2009-06-27T16:35:29Z 2009-06-27T17:11:15Z <p>Why not start with <a href="http://sitepen.com/labs/guides/?guide=DojoQuickStart#firstSteps" rel="nofollow">the skeleton code?</a> When in doubt, go with the beginner's tutorial.</p> http://stackoverflow.com/questions/1053117/dojo-and-firebug/1053183#1053183 0 Answer by the_drow for Dojo and Firebug the_drow 2009-06-27T16:53:20Z 2009-06-27T16:53:20Z <p>Dojo.js should be in the root/Dojo folder.<br /> It should work that way.</p> http://stackoverflow.com/questions/1053117/dojo-and-firebug/1074626#1074626 1 Answer by strife25 for Dojo and Firebug strife25 2009-07-02T14:14:53Z 2009-07-02T14:14:53Z <p>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.</p> <p>Other browsers allow local directory traversal though.</p> <p>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.</p> http://stackoverflow.com/questions/1053117/dojo-and-firebug/1784857#1784857 1 Answer by sunnyjava for Dojo and Firebug sunnyjava 2009-11-23T17:56:07Z 2009-11-23T17:56:07Z <p>It is possible to work without a web server. go through the below mentioned steps.</p> <p><a href="http://www.dojotoolkit.org/support/faq/why-does-dojo-fail-load-file-urls-firefox-3" rel="nofollow">http://www.dojotoolkit.org/support/faq/why-does-dojo-fail-load-file-urls-firefox-3</a></p> <p>Set Security.fileuri.strict origin policy to false and retry.</p>