Title: RE: Could not find the included template /config/routes.cfm
Thread: Could not find the included template /config/routes.cfm
Forum: Need Help?
Conference: ColdBox
User: sanaullah73 Hi,
your files looks alright. I am sure "/" mapping to d:/websites/acme_site
is causing issue.
try this.
[code]
<Setting name="AppName"
value="MyLTF"/>
Create CF-Mapping /myapp -> d:\websites\myapp
Add this
new after above setting.
<Setting name="AppMapping" value="/myapp"/>
change
routes.cfm line 30 to
<cfset setBaseURL("http://#cgi.HTTP_HOST#/index.cfm")>
[/code]
if possible then remove
"/" mapping to d:/websites/acme_site then
you don't need above changes.
let me know if this works or not.