Troy, Was this chart working before and suddently stopped? Is this a result of some sort of upgrade or migration?
I Don't know what version of IE you have, but there have been issues with IE 6.0.28 (SP1) not reading flash properly. Sometimes, IE simply will not display the flash chart no matter what you do. These blogs helped me out once before on charts not displaying. (on a CFMX 7 install) http://www.bpurcell.org/blog/index.cfm?mode=entry&entry=998 http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_18516 (step 4 - Create zero-byte files for internal CF processes) If you're still having problems, try these steps as well: 1. change to png or jpg format see if chart displays 2. place cfchart code inside <cfsavecontent> tags and change some of the java output that is displayed to browser, this will clear up some script that IE is not interpreting correctly: <cfsavecontent variable="chart_output">...</cfsavecontent> <cfset chart_output = REReplaceNoCase(chart_output, "</?NOSCRIPT>", "","all")> <cfset chart_output = REReplaceNoCase(chart_output, "(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)", "", "all")> <cfoutput>#chart_output#</cfoutput> 3. you may need to create a folder called cfide/scripts in your site's root, then copy cf_runactivecontent.js from the "real" CFIDE directory These eventually got the problem to work, but Flash charts never really worked "cleanly". Ultimately, we had and issue with the server. We migrated to an old production level database server that was "supposedly" wiped clean. Well, it wasn't, and our problem was with a corrupted Certification Authority setup. Blake Kiser ________________________________ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Troy Jones Sent: Friday, November 14, 2008 4:35 PM To: [email protected] Subject: RE: [ACFUG Discuss] cfchart Mischa, I have verified that this is the case with this IIS entry as per your instructions but it did not fix the error. Any other suggestions? Troy Jones Dynapp Support Team 678-528-2952 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mischa Uppelschoten ext 10 Sent: Friday, October 24, 2008 3:50 PM To: Web Site Subject: re: [ACFUG Discuss] cfchart If you're on IIS, make sure to UNcheck "Verify that file exists": Go to IIS and open your site properties. Click on the "home directory" tab and then click on the configuration button. If you have a typical setup you should see the Jrun wildcard entry in the bottom list box. Select this entry and click on "edit". There is a checkbox that says "verify that file exists". /m : Hey all, : : I am troubleshooting an instance of the <cfchart> tag in one of my clients : applications. I am not familiar with the use of this tag at all but, in a : nutshell, the tag appears to be syntactically correct and the requested data : exists at the time of the call but the chart never appears and there doesnt : seem to be any attempt, failed or otherwise, to write source code to generate : it. Here is the snippet with the <cfchart> call: : : <cfchart format="flash" xaxistitle="Date" yaxistitle="Views" chartwidth="450" : show3d="true" title="Tour Views Per Day" name="statChart"> : <cfchartseries type="bar" : itemcolumn="Date" : valuecolumn="View" > : <cfoutput : query="getHits"><cfchartdata item="#DateFormat(stats_date, 'mm/dd/yy')#" : value="#TotalHits#"></cfoutput> : </cfchartseries> : </cfchart> : : I dumped the query variable that contains the value requested in the : <cfchartdata> and it does exist when this tag is called. I can find no errors : being thrown either in the CF administrator or in the applications error : handing system. The chart does not appear in any browser. : : Any ideas? : : Troy Jones : Dynapp Support Team : 678-528-2952 : ----------------------- Original Message ----------------------- From: "Troy Jones" <[EMAIL PROTECTED]><mailto:[EMAIL PROTECTED]> To: <[email protected]><mailto:[email protected]> Date: Fri, 24 Oct 2008 15:27:18 -0400 Subject: [ACFUG Discuss] cfchart Hey all, I am troubleshooting an instance of the <cfchart> tag in one of my client's applications. I am not familiar with the use of this tag at all but, in a nutshell, the tag appears to be syntactically correct and the requested data exists at the time of the call but the chart never appears and there doesn't seem to be any attempt, failed or otherwise, to write source code to generate it. Here is the snippet with the <cfchart> call: <cfchart format="flash" xaxistitle="Date" yaxistitle="Views" chartwidth="450" show3d="true" title="Tour Views Per Day" name="statChart"> <cfchartseries type="bar" itemcolumn="Date" valuecolumn="View" > <cfoutput query="getHits"><cfchartdata item="#DateFormat(stats_date, 'mm/dd/yy')#" value="#TotalHits#"></cfoutput> </cfchartseries> </cfchart> I dumped the query variable that contains the value requested in the <cfchartdata> and it does exist when this tag is called. I can find no errors being thrown either in the CF administrator or in the application's error handing system. The chart does not appear in any browser. Any ideas? Troy Jones Dynapp Support Team 678-528-2952 ------------------------------------------------------------- To unsubscribe from this list, manage your profile @ http://www.acfug.org?fa=login.edituserform For more info, see http://www.acfug.org/mailinglists Archive @ http://www.mail-archive.com/discussion%40acfug.org/ List hosted by FusionLink<http://www.fusionlink.com> ------------------------------------------------------------- ------------------------------------------------------------- To unsubscribe from this list, manage your profile @ http://www.acfug.org?fa=login.edituserform For more info, see http://www.acfug.org/mailinglists Archive @ http://www.mail-archive.com/discussion%40acfug.org/ List hosted by http://www.fusionlink.com ------------------------------------------------------------- ------------------------------------------------------------- To unsubscribe from this list, manage your profile @ http://www.acfug.org?fa=login.edituserform For more info, see http://www.acfug.org/mailinglists Archive @ http://www.mail-archive.com/discussion%40acfug.org/ List hosted by FusionLink<http://www.fusionlink.com> ------------------------------------------------------------- ------------------------------------------------------------- To unsubscribe from this list, manage your profile @ http://www.acfug.org?fa=login.edituserform For more info, see http://www.acfug.org/mailinglists Archive @ http://www.mail-archive.com/discussion%40acfug.org/ List hosted by http://www.fusionlink.com -------------------------------------------------------------
