Hi,
I have just set up a site at HostMedia. Dirt Cheap but lots of things to figur out and configure. A PaaS on Jelastic takes minutes to set up but is 12 times more expensive!!
I have added this.development = false; in Application.cfm
But this does not help, I have also tried with this.development = NO; and this.development = "NO";
Railo seems to think the server is localhost:
remote_addr=127.0.0.1
remote_host=127.0.0.1
So I changed the cgi variables for this.development to:
this.development = IsLocalHost(CGI.REMOTE_ADDR) ? true : false;
this.development = IsLocalHost(CGI.local_host) ? true : false;
this.development = IsLocalHost(CGI.http_host) ? true : false;
But no luck.