- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsMy cfchart Code works fine on my development machine running ColdFusion MX Ver 7 developer edition, but fails to display the flash chart when posted on my Network Solutions hosted site. I am using a subdomain as the staging site for demo purposes and have little control over the environment with NS.
Have read about the need for setting up Virtual Dir Mapping in multi homed environement, but that does not appear to be an option with NS. Does nayone know of any workarounds.
Heres the very basic code which works wonderfully on my local server.
<cfchart format="flash"
chartwidth="1050"
chartheight="600"
backgroundcolor="##FFCC00"
databackgroundcolor="##FDF
show3d="yes"
fontbold="no"
showlegend="yes"
>
<cfchartseries
type="line"
query="FinalRptRecords"
itemcolumn="#SESSION.RptPa
valuecolumn="#SESSION.RptP
serieslabel="#SESSION.RptP
</cfchartseries>
<cfchartseries
type="bar"
query="FinalRptRecords"
itemcolumn="#SESSION.RptPa
valuecolumn="#SESSION.RptP
serieslabel="#SESSION.RptP
seriescolor="##8080C0">
</cfchartseries>
</cfchart>
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: mmc98dl1Posted on 2007-06-14 at 18:05:01ID: 19288364
I suggest you save your cfchart to a file on the server where you know it resides, somewhere you have control over. Then manually insert it into a page with HTML.
2C8"
host\httpd ocs\flashc hart.swf" output="#flashchartvar#">
<cfchart format="flash" name="flashchartvar"
chartwidth="1050"
chartheight="600"
backgroundcolor="##FFCC00"
databackgroundcolor="##FDF
show3d="yes"
fontbold="no"
showlegend="yes"
>
<cfchartseries
type="line"
>
<cfchartdata item="this" value="1">
<cfchartdata item="this2" value="2">
<cfchartdata item="this3" value="3">
<cfchartdata item="this4" value="4">
<cfchartdata item="this5" value="5">
</cfchartseries>
</cfchart>
<cffile action="write" file="D:\development\local