﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>FusionCharts Forum / FusionCharts Free / FusionCharts Free and JSP   / "Error in Loading Data" in IE7 but not in Firefox. / Latest Posts</title><generator>InstantForum.NET v4.1.4</generator><description>FusionCharts Forum</description><link>http://www.fusioncharts.com/forum/</link><webMaster>support@fusioncharts.com</webMaster><lastBuildDate>Mon, 06 Oct 2008 08:23:16 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: "Error in Loading Data" in IE7 but not in Firefox.</title><link>http://www.fusioncharts.com/forum/Topic1587-45-1.aspx</link><description>hi,&lt;/P&gt;&lt;P&gt;You need to stop caching  of the swf files. That will slove the problem.&lt;/P&gt;&lt;P&gt;in javascript :&lt;/P&gt;&lt;P&gt;while giving the SWF name use like this:&lt;/P&gt;&lt;P&gt;"Column3D.swf?noCache=" + new Date().getMilliseconds()&lt;/P&gt;&lt;P&gt;In other scripts like ASP, PHP etc. similar functions.</description><pubDate>Mon, 21 Jan 2008 07:25:09 GMT</pubDate><dc:creator>Arindam</dc:creator></item><item><title>RE: "Error in Loading Data" in IE7 but not in Firefox.</title><link>http://www.fusioncharts.com/forum/Topic1587-45-1.aspx</link><description>Has this problem been solved?   I am having the same issue.  I have 3 charts one of which gives the error "Error in loading data" in IE6 but works fine everytime in Firefox.  Every now and again it will display the results in the chart but very rarely.</description><pubDate>Mon, 21 Jan 2008 05:00:40 GMT</pubDate><dc:creator>scott</dc:creator></item><item><title>RE: "Error in Loading Data" in IE7 but not in Firefox.</title><link>http://www.fusioncharts.com/forum/Topic1587-45-1.aspx</link><description>well...&lt;br&gt;When I use more than 30 charts in my page. Some charts don't load and show the message "Error In Load Data".&lt;br&gt; The Snippet code below represents my page:&lt;br&gt;&lt;br&gt;&lt;tr&gt;&lt;td class="pagina"&gt;&lt;h1&gt;USINA CORURIPE - MATRIZ&lt;/h1&gt;&lt;img src="imagens/logo.gif" alt=""&gt;&lt;/td&gt;&lt;/tr&gt;&lt;br&gt;		&lt;tr&gt;&lt;td class="pagina"&gt;&lt;h2&gt;PROGRAMA DE RECEBÍVEIS&lt;/h2&gt;&lt;jsp:include page="matrizRecebiveisTabela.jsp" flush="true" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;br&gt;		&lt;tr&gt;&lt;td class="pagina"&gt;&lt;h2&gt;PROGRAMA DE RECEBÍVEIS&lt;/h2&gt;&lt;jsp:include page="matrizRecebiveisMensal.jsp" flush="true" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;br&gt;		&lt;tr&gt;&lt;td class="pagina"&gt;&lt;h2&gt;PROGRAMA DE RECEBÍVEIS&lt;/h2&gt;&lt;jsp:include page="matrizRecebiveisAcumulado.jsp" flush="true" /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;br&gt;&lt;br&gt;...and it's repeat 50 times. (with other "includes") ...and each included page has one chart.&lt;br&gt;&lt;br&gt;:(&lt;br&gt;</description><pubDate>Wed, 16 Jan 2008 08:28:08 GMT</pubDate><dc:creator>Leonardo</dc:creator></item><item><title>RE: "Error in Loading Data" in IE7 but not in Firefox.</title><link>http://www.fusioncharts.com/forum/Topic1587-45-1.aspx</link><description>Hi,&lt;br&gt;&lt;br&gt;I'm sorry for a repeated step - but, can you please zip these files and send to support@fusioncharts.com?</description><pubDate>Wed, 24 Oct 2007 15:36:49 GMT</pubDate><dc:creator>Pallav</dc:creator></item><item><title>RE: "Error in Loading Data" in IE7 but not in Firefox.</title><link>http://www.fusioncharts.com/forum/Topic1587-45-1.aspx</link><description>EDIT: you may need to go 'view source' to see my code below as I can't get my code to display - even using the [code][/code]&lt;br&gt;&lt;br&gt;If anyone else lands on this page (as I did from a google search on "fusion charts error firefox") - after some playing around I found one cause of this problem.&lt;br&gt;&lt;br&gt;In IE this will work ok:[code]&lt;br&gt;&lt;br&gt;&lt;br&gt;	&lt;param name="movie" value="FusionCharts/&lt;your swfname; &gt;" /&gt;&lt;br&gt;	&lt;param name="FlashVars" value="&amp;dataXML=&lt;your xmldata; &gt;"&gt;&lt;br&gt;	&lt;param name="quality" value="high" /&gt;&lt;br&gt;	&lt;embed src="FusionCharts/&lt;your swfname; &gt;" flashVars="&amp;dataXML=" quality="high" width="600" height="300" name="Column3D" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /&gt;&lt;br&gt;&lt;br&gt;[/code]&lt;br&gt;but u get the error in Firefox....&lt;br&gt;&lt;br&gt;all that needs to be done is to add in your xml on that second last line:&lt;br&gt;	[code]&lt;object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="600" height="300" id="Column3D" &gt;&lt;br&gt;	&lt;param name="movie" value="FusionCharts/&lt;your swfname; &gt;" /&gt;&lt;br&gt;	&lt;param name="FlashVars" value="&amp;dataXML=&lt;your xmldata; &gt;"&gt;&lt;br&gt;	&lt;param name="quality" value="high" /&gt;&lt;br&gt;	&lt;embed src="FusionCharts/&lt;your swfname; &gt;" flashVars="&amp;dataXML=&lt;your xmldata; &gt;" quality="high" width="600" height="300" name="Column3D" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /&gt;&lt;br&gt;	&lt;/object&gt;[/code]&lt;br&gt;&lt;br&gt;....that fixed it for me anyway so just thought I would post here in the event this solves it for someone else.  &lt;br&gt;&lt;br&gt;I couldn't use the dataurl method either as I figured this would involve writing a new file to disk every time (please correct me if I'm wrong) but since my data was being drawn from a database and all my charts are dynamic  it wasn't going to work to create a new file each time.&lt;br&gt;&lt;br&gt;(Overall the whole set up has went smoothly for me and I have data from a database being displayed very nicely using this and php)&lt;br&gt;&lt;br&gt;</description><pubDate>Tue, 23 Oct 2007 17:50:17 GMT</pubDate><dc:creator>fergalfrog</dc:creator></item><item><title>RE: "Error in Loading Data" in IE7 but not in Firefox.</title><link>http://www.fusioncharts.com/forum/Topic1587-45-1.aspx</link><description>Please paste the entire HTML output of your page.</description><pubDate>Mon, 16 Jul 2007 23:03:01 GMT</pubDate><dc:creator>Pallav</dc:creator></item><item><title>RE: "Error in Loading Data" in IE7 but not in Firefox.</title><link>http://www.fusioncharts.com/forum/Topic1587-45-1.aspx</link><description>Please...anyone could help me.</description><pubDate>Tue, 10 Jul 2007 15:31:08 GMT</pubDate><dc:creator>Leonardo</dc:creator></item><item><title>"Error in Loading Data" in IE7 but not in Firefox.</title><link>http://www.fusioncharts.com/forum/Topic1587-45-1.aspx</link><description>I'm using the code below..&lt;br&gt;[code]var chart = new FusionCharts("shockwaves/charts/FCF_Column3D.swf", "ChartId", "450", "300", "0", "0");&lt;br&gt;		chart.setDataXML("${wco:valueStack('primeiroGrafico')}");					&lt;br&gt;		chart.render("chartdiv");[/code]&lt;br&gt;and the value returned in [code]${wco:valueStack('primeiroGrafico')}[/code] is:&lt;br&gt;[code]&lt;br&gt;&lt; graph caption='Clique Sobre a Barra' xAxisName='Safra' yAxisName='Faturamento' showNames='1' showValues='0' decimalPrecision='2' formatNumberScale='2' formatNumber='1' decimalSeparator=',' thousandSeparator='.' numberPrefix='R$' hovercapbg='FFECAA' hovercapborder='F47E00'&gt;&lt; set name='Atual' value='121342' color='FF0000'/&gt;&lt;/graph &gt;&lt;br&gt;[/code]&lt;br&gt;&lt;br&gt;I'm using dataXML  mode and not dataURL mode..&lt;br&gt;In Firefox the chart load but in IE7 no...what's the error??</description><pubDate>Tue, 10 Jul 2007 13:47:17 GMT</pubDate><dc:creator>Leonardo</dc:creator></item></channel></rss>