1. If all other domains will be redirect to domain1.com, then only the license for domain1.com is required because the license mechanism only verifies the domain name in the address bar of the browser.
2. Recently we’ve updated our Buy Now page that allows intranet address in the “For
website” box. The script will not care about http://, https://, and www. , so intranet
is not a problem. The script will check the domain name on the address bar of your
browser and do the validation by mapping it to the license key. There is no other
service involved, and no checks connecting to other places.
3. Yes you can add a piece of code just after the var ddmenuOptions block in the ddmenu.js file to handle
the different domains. Below is a sample for four domains:
var ddmenuOptions = {
......
license: "license1"
};
if(document.domain.indexOf("domain2.com")!=-1)
ddmenuOptions.license = "license2";
else if (document.domain.indexOf("domain3.com")!=-1)
ddmenuOptions.license = "license3";
else if (document.domain.indexOf("domain4.com")!=-1)
ddmenuOptions.license = "license4";
var ddmenu = new McDdMenu(ddmenuOptions);
/* Menucool Drop Down Menu v2013.5.16 Copyright www.menucool.com */
... (the follows are remain unchanged)
Note: Above domain2.com, domain3.com, and domain4.com must be in lowercase.
4. As said in section 1, http:// and https:// will not be concerned in the validation.
So it will not be a question.