ok, so I gave this a shot:
// this is the application name setting in application.cfc
<cfset this.name = “sa-” & replace(cgi.http_HOST,".", “_”,“all”) />
//Extension Points…these are the externals
UDFLibraryFile = “includes/helpers/ApplicationHelper.cfm”,
coldboxExtensionsLocation = “”,
modulesExternalLocation = “modules”,
pluginsExternalLocation = “plugins”,
viewsExternalLocation = “views”,
layoutsExternalLocation = “layouts”,
handlersExternalLocation = “handlers”,
requestContextDecorator = “”,
// these are the conventions
conventions = {
handlersLocation = “accounts/#replace(cgi.http_HOST,’.’, ‘’,‘all’)#/handlers",
pluginsLocation = "accounts/#replace(cgi.http_HOST,’.’, '’,‘all’)#/plugins”,
viewsLocation = “accounts/#replace(cgi.http_HOST,’.’, ‘’,‘all’)#/views",
layoutsLocation = "accounts/#replace(cgi.http_HOST,’.’, '’,‘all’)#/layouts”,
/modelsLocation = “accounts/#replace(cgi.http_HOST,’.’, ‘’,‘all’)#/model",
modulesLocation = "accounts/#replace(cgi.http_HOST,’.’, '’,‘all’)#/modules”,/
eventAction = “index”
};
On a reinit, I’d expect to see the exact same home page I’ve been seeing, the CB general.main I’ve always been seeing…I don’t. Initially, I got some errors but I figured out what I was messing up…now, I get absolutely nothing rendered. Now, if the modelsLocation and modulesLocation are active, things go a bit wonky…so I remove them. Sometimes this seems to work, other times it does not. Eventually I’ll get some kind of error message, then reinit…and eventually, nothing renders, error or otherwise.
I’m not sure what’s going on but unless what is up above is all that is needed to get this working and there is nothing wrong with it, I’m not sure why this is not working.
Mike