Hi can someone help me out.
I've got a site here...
http://208.138.22.177
User: jay
Psw: jayjay
Just hit login and see how long it takes to load up!!!!! My question is y?
It takes atleast 2 minutes roughly, and this after freezing up Firefox completely. Please help!!!!
The only requires I have are:
dojo.require("dojo.parser");
dojo.require("dijit.form.Button");
dojo.require("dijit.form.FilteringSelect");
dojo.require("dijit.form.TextBox");
dojo.require("dijit.form.CheckBox");
dojo.require("dijit.Menu");
dojo.require("dijit.layout.AccordionContainer");
dojo.require("dijit.layout.ContentPane");
dojo.require("dijit.layout.LayoutContainer");
dojo.require("dijit.layout.SplitContainer");
dojo.require("dijit.layout.TabContainer");
dojo.require("dijit.Dialog");
dojo.require("dijit.ColorPalette");
dojo.require("dijit.form.DateTextBox");
dojo.require("dojo.data.ItemFileReadStore");

no login prompt--just the
no login prompt--just the "forbidden" page...
maybe .htaccess or firewall limited by IP address??
So
So sorry...
208.138.22.177/mgitracking
What I see: After clicking
What I see:
After clicking login, you load 480k of javascript before ever loading dojo.js. dojo.js seemed to take an abnormally long time to eval/include/watever, as if it locked up right then, which i don' have any immediate explanation for. Perhaps the ordering of script loading has some effect. I might try dojo.js first, and all my requires() shoved into one external .js included via script src="" tag.
You will find that creating a build for your release, including all of those require()'s as dependencies will eliminate approximately 400k of downloading (mostly comments) and around 42 xhr requests (at least one per require()) thus significantly improving load time.