When running the Getting Started tutorial in Macromedia ColdFusion MX 7, the following error may be encountered:
Element LOCALE is undefined in REQUEST. The error occurred in C:\CFusionMX7\wwwroot\CFIDE\gettingstarted\Application.cfm: line 1 1 : <cfif request.locale neq "jp" and request.locale neq "ja"> 2 : <cfset request.locale = "en"> 3 : </cfif>
The Application.cfm for the Getting Started tutorial lacks code to set the locale variables used, causing the error. This has been logged as Macromedia issue 59832.
Modify theweb_root\CFIDE\gettingstarted\Application.cfm as follows.
Replace the following block of code:
<cfif request.locale neq "jp" and request.locale neq "ja"><cfset request.locale = "en"></cfif>
<cfif isdefined("request.locale") AND request.locale neq "jp" and request.locale neq "ja"><cfset request.locale = "en"></cfif>
Keywords:
b2b97ab3

