-
1. Re: js files not loading from /CFIDE/scripts folder in ColdFusion 11
WolfShade Nov 7, 2014 5:44 AM (in response to ChadFenske)Which webserver are you using? Built-in? IIS? Apache?
Do you have the folder for scripts aliased? (Pgs 36, 43, and 65 of http://www.adobe.com/content/dam/Adobe/en/products/coldfusion/pdfs/cf11/cf11-lockdown-guid e.pdf)
Are you sure that all files are present? (Bug#3757544 - cfpresentation, html format, loading invalid scripts)
Are you taking any measures to isolate the CFSCRIPTS folder from the public? (Changing the ColdFusion CFIDE Scripts Location)
HTH,
^_^
-
2. Re: js files not loading from /CFIDE/scripts folder in ColdFusion 11
ChadFenske Nov 7, 2014 12:32 PM (in response to WolfShade)We've actually narrowed this down to the cfcontent tag. We are using it in this manner <cfcontent reset="true">. Looks like in ColdFusion 9 the buffer wasn't getting completely cleared and now it is. Anyone else seen this?
-
3. Re: js files not loading from /CFIDE/scripts folder in ColdFusion 11
ChivertonT Nov 10, 2014 7:56 AM (in response to ChadFenske)Never seen CFCONTENT failing to reset !
-
4. Re: js files not loading from /CFIDE/scripts folder in ColdFusion 11
ChadFenske Nov 10, 2014 12:38 PM (in response to ChivertonT)Here's a quick example we put together. While this is not how you would do this, it was the best way to replicate how out layout in fusebox is kind of putting it together, the cfcontent tag is in our default layout page.
<cfsavecontent variable="myvar">
<cfpod
name = "pod_test1"
title = "Google"
height = "35"
width = "300"
headerstyle="font-family: Verdana; font-size: 11px;">This is a test</cfpod>
</cfsavecontent>
<cfcontent reset="true" />
<cfoutput>#myvar#</cfoutput>
<cfpod
name = "pod_test2"
title = "Google"
height = "35"
width = "300"
headerstyle="font-family: Verdana; font-size: 11px;">This is a test</cfpod>
<cfhtmlhead text="<title>test</title>">
ColdFusion version: <cfoutput>#SERVER.ColdFusion.ProductVersion#</cfoutput>
Here's the output to the browser in CF 9, CF 10, and CF 11.
As you can see with ColdFusion 11 the cfcontent tag is removing or preventing the javascript from the cfide scripts directory from being included.
Anyone have any ideas other than no longer using the tag?
-
5. Re: js files not loading from /CFIDE/scripts folder in ColdFusion 11
NicholasDee Nov 12, 2014 11:23 AM (in response to ChadFenske)Chad way to go, I can confirm this problem. We have had the same problem since cf 11 came out. We also had cfcontect reset = true. Once we removed it all cflayout and cfgrids started working again.


