Ask a Question related to Coldfusion - Getting Started, Design and Development.
-
bennettian #1
Browser preview
Can anybody help a complete beginner in ColdFusion MX7.?
I have downloaded the trial version and have set up my site according to the
"Getting Started" notes.
Everytime I try to preview the index.cfm page I get the following error
message:
Element LOCALE is undefined in REQUEST.
The error occurred in C:\Inetpub\wwwroot\CFIDE\gettingstarted\Applicatio n.cfm:
line 1
1 : <cfif request.locale neq "jp" and request.locale neq "ja">
2 : <cfset request.locale = "en">
3 : </cfif>
What the hell is it telling me and can I fix it?
bennettian Guest
-
PDF Preview in Browser
I am trying to figure out how I can obtain partial PDF content for browser display via JSP. The idea is that I have an existing directory of PDF... -
Preview in browser non publishers
Hi I have quite a few writers, editors who want to be able to preview the page before they send it for appoval to publishing. The only way is to... -
Preview in Browser Error on Mac OS 10.2.8
Hello: Finally, I completed the dynamic page tutorial. Now trying to view in diff. browsers by doing "Preview in Browser". Then I'm getting... -
Movie won't preview in browser!
Windows XP Dreamweaver Flash 5 In Dreamweaver I have inserted an .swf file into an html file. When I F12(preview in browser) the page comes up... -
Preview In Browser
Hi, I am having a problem previewing my page in a NEW browser window. If IE is not open, it will open a new window, but if a webpage is already... -
mdarchives #2
Re: Browser preview
Where did you declare Request.Locale to begin with? The error message is telling you that you are referring to a variable that doesn't exist.
mdarchives Guest
-
BobJP #3
Re: Browser preview
This is a bug in the Application.cfm file of the Getting Started application.
You need to replace the 1st 3 lines of the file with this:
<cfset request.locale = createObject("java",
"java.util.Locale").getDefault().getLanguage() >
<cfif request.locale neq "jp" and request.locale neq "ja">
<cfset request.locale = "en">
</cfif>
BobJP Guest
-
bennettian #4
Re: Browser preview
Well, thats a big thank you to you guys.
It's been driving me nuts!!
Time for a beer I think
Ian
bennettian Guest



Reply With Quote

