Dojo and Firebug - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T16:12:00Zhttp://stackoverflow.com/feeds/question/1053117http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1053117/dojo-and-firebug1Dojo and FirebugPaul2009-06-27T16:19:31Z2009-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#10531503Answer by Alex Martelli for Dojo and FirebugAlex Martelli2009-06-27T16:34:55Z2009-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#10531521Answer by Nosredna for Dojo and FirebugNosredna2009-06-27T16:35:29Z2009-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#10531830Answer by the_drow for Dojo and Firebugthe_drow2009-06-27T16:53:20Z2009-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#10746261Answer by strife25 for Dojo and Firebugstrife252009-07-02T14:14:53Z2009-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#17848571Answer by sunnyjava for Dojo and Firebugsunnyjava2009-11-23T17:56:07Z2009-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>