Hello all.
Just writing out my own blog in ColdFusion and all of a sudden, I open up eclipse on my dev machine, check the site in Chrome and it doesn't load. So I tried moving Application.cfc to another folder, voila the page works.
The exact error message is:
The system has attempted to use an undefined value, which usually indicates a programming error, either in your code or some system code. Null Pointers are another name for undefined values.
The contents of Application.cfc is as follows :
component
{
this.name="Jake Hendy";
this.datasource="Store";
this.ORMenabled="true";
this.ORMsettings.DBCreate="Update";
ORMreload();
void function onRequestStart(target) {
if(structKeyexists(url,"reload-app")) {
ORMreload();
}
}
}
Any ideas people?
Many thanks,
Jake