Re: [ACFUG Discuss] cfchart styling issue

2011-10-24 Thread Jeff Howard
I originally had them with no spaces as the are also used at database column
names. However, the client requested that I put the spaces in. This is for a
report on allergic reaction to allergens such as "Baker's Yeast" which I had
as "BakersYeast" for db purposes. I can try the underscore method which was
what I was going to try if I did not get any help here because I can't find
any help on how to resolve this issue.

I thought about trying to use an image as well but I'm not sure that is even
possible. I have not had a chance to experiment with that as of yet.

On Mon, Oct 24, 2011 at 4:04 PM, Forrest C Gilmore wrote:

> I don't know anything about cfchart itself, but here are some comments that
> may help:
> 1 - I don't see in your code where the Y-axis label is actually specified,
> so it's hard to know specifically what to suggest.
> 2 - One easy way to eliminate problems with spaces is -- don't use them!
> Instead, use the underscore character.
> This is fairly common practice in many other situations where spaces cause
> problems. Another commonly used method for eliminating spaces is to start
> each word with a capital letter and run the words together.
> 3 - Once you decide about how you want to deal with space characters, you
> can then write CF code to find them and make an appropriate substitution, if
> the label can't be controlled at input.
>
> Forrest C. Gilmore
> =
>
>
> On 10/24/2011 10:57 AM, Jeff Howard wrote:
>
>> The board has been very very quiet over the past few weeks so I figured I
>> would try one more time on this as it is still an open issue for me.
>> I have a report that I am generating that utilizes a horizontal bar
>> cfchart. I am having an issue with the styling of the y-axis.
>>
>> The problem is that if there is a space in the label it creates a carriage
>> return. Here is the xml code that I'm using to style:
>>
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> > isMultiline="false"/>
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>>
>> I've tried using WebCharts to resolve the issue but can't seem to figure
>> it out. Any help?
>>
>
>
>
> --**--**-
> 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
> --**--**-
>
>
>
>


Re: [ACFUG Discuss] cfchart styling issue

2011-10-24 Thread Forrest C Gilmore
I don't know anything about cfchart itself, but here are some comments 
that may help:
1 - I don't see in your code where the Y-axis label is actually 
specified, so it's hard to know specifically what to suggest.
2 - One easy way to eliminate problems with spaces is -- don't use them! 
Instead, use the underscore character.
This is fairly common practice in many other situations where spaces 
cause problems. Another commonly used method for eliminating spaces is 
to start each word with a capital letter and run the words together.
3 - Once you decide about how you want to deal with space characters, 
you can then write CF code to find them and make an appropriate 
substitution, if the label can't be controlled at input.


Forrest C. Gilmore
=

On 10/24/2011 10:57 AM, Jeff Howard wrote:
The board has been very very quiet over the past few weeks so I 
figured I would try one more time on this as it is still an open issue 
for me.
I have a report that I am generating that utilizes a horizontal bar 
cfchart. I am having an issue with the styling of the y-axis.


The problem is that if there is a space in the label it creates a 
carriage return. Here is the xml code that I'm using to style:
















isMultiline="false"/>










I've tried using WebCharts to resolve the issue but can't seem to 
figure it out. Any help?




-
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
-





RE: [ACFUG Discuss] cfchart

2008-11-14 Thread Troy Jones
Thanks for your suggestions.

Although none of them panned out, I did find a site running similar code
on our dev box, so I ripped the snippet and put it in where the
malfunctioning call was happening. The only difference between the two
instances was the "name" attribute assigned to the faulty one. After
testing the ripped one to make sure it worked, I removed the "name"
attribute from the suspect one and, voila!, it works.

Weird.

Troy Jones
Dynapp Support Team
678-528-2952



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Cameron
Childress
Sent: Friday, November 14, 2008 5:19 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] cfchart

Sometimes I've seen this happen when the /cfide/ mapping is not setup
properly or not visible by the browser.  I don't recall the specifics,
but I think it may use a .js file that's in the CFIDE for some of the
Flash embed code.  That would cause the browser to miss the chart, but
no CF error would be thrown.  If this is true, you may see a 404 error
in the IIS logs, however.

-Cameron

On Fri, Nov 14, 2008 at 4:35 PM, Troy Jones <[EMAIL PROTECTED]> wrote:
> 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  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  call:
> :
> :  chartwidth="450"
> :  show3d="true" title="Tour Views Per Day" name="statChart">
> :  : itemcolumn="Date"
> : valuecolumn="View" >
> :  :  query="getHits"> :  value="#TotalHits#">
> : 
> : 
> :
> : I dumped the query variable that contains the value requested in the
> :   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]>
>
> To: 
>
> Date: Fri, 24 Oct 2008 15:27:18 -0400
>
> Subject: [ACFUG Discuss] cfchart
>
>
>
> Hey all,
>
>
>
> I am troubleshooting an instance of the  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  call:
>
>
>
>  chartwidth="450" show3d="true" title="Tour Views Per Day"
name="statChart">
>
> 
> itemcolumn="Date"
>
> valuecolumn="View" >
>
>  query="getHits"> value="#TotalHits#">
>
> 
>
> 
>
>
>
> I dumped the query variable that contains the value requested in the
>  and it does exist when this tag is called. I can find no
> errors being thrown either in the CF administ

Re: [ACFUG Discuss] cfchart

2008-11-14 Thread Cameron Childress
Sometimes I've seen this happen when the /cfide/ mapping is not setup
properly or not visible by the browser.  I don't recall the specifics,
but I think it may use a .js file that's in the CFIDE for some of the
Flash embed code.  That would cause the browser to miss the chart, but
no CF error would be thrown.  If this is true, you may see a 404 error
in the IIS logs, however.

-Cameron

On Fri, Nov 14, 2008 at 4:35 PM, Troy Jones <[EMAIL PROTECTED]> wrote:
> 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  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  call:
> :
> :  chartwidth="450"
> :  show3d="true" title="Tour Views Per Day" name="statChart">
> :  : itemcolumn="Date"
> : valuecolumn="View" >
> :  :  query="getHits"> :  value="#TotalHits#">
> : 
> : 
> :
> : I dumped the query variable that contains the value requested in the
> :   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]>
>
> To: 
>
> Date: Fri, 24 Oct 2008 15:27:18 -0400
>
> Subject: [ACFUG Discuss] cfchart
>
>
>
> Hey all,
>
>
>
> I am troubleshooting an instance of the  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  call:
>
>
>
>  chartwidth="450" show3d="true" title="Tour Views Per Day" name="statChart">
>
> 
> itemcolumn="Date"
>
> valuecolumn="View" >
>
>  query="getHits"> value="#TotalHits#">
>
> 
>
> 
>
>
>
> I dumped the query variable that contains the value requested in the
>  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
> -
>
> - To uns

RE: [ACFUG Discuss] cfchart

2008-11-14 Thread bkiser
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  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:
...
", 
"","all")>
)((\n|\r|.)*?)(?:<\/script>)", "", "all")>
#chart_output#
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: discussion@acfug.org
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  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  call:
:
: 
: 
: 
: 
: 
:
: I dumped the query variable that contains the value requested in the
:   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: <mailto:discussion@acfug.org>
Date: Fri, 24 Oct 2008 15:27:18 -0400
Subject: [ACFUG Discuss] cfchart

Hey all,

I am troubleshooting an instance of the  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  call:







I dumped the query variable that contains the value requested in the 
 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>
-
---

RE: [ACFUG Discuss] cfchart

2008-11-14 Thread Troy Jones
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  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  call: 
:   
:  
: 
:  
:  
:  
:   
: I dumped the query variable that contains the value requested in the
:   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:  <mailto:discussion@acfug.org> 

Date: Fri, 24 Oct 2008 15:27:18 -0400

Subject: [ACFUG Discuss] cfchart

  

Hey all,

 

I am troubleshooting an instance of the  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
 call:

 











 

I dumped the query variable that contains the value requested in the
 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
<http://www.acfug.org?fa=login.edituserform>  

For more info, see http://www.acfug.org/mailinglists
<http://www.acfug.org/mailinglists>  
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
<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 http://www.fusionlink.com

-




re: [ACFUG Discuss] cfchart

2008-10-24 Thread Mischa Uppelschoten ext 10



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 
 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  call: :
   : :
  show3d="true" title="Tour Views Per
 Day" name="statChart"> : : itemcolumn="Date"
 : valuecolumn="View"
 >: :
  query="getHits">:
  value="#TotalHits#">
 : 
 :  :   :
 I dumped the query variable that contains
 the value requested in the:  
 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]>
To: 
Date: Fri, 24 Oct 2008 15:27:18
 -0400
Subject: [ACFUG Discuss]
 cfchart
  

Hey all,
 
I am troubleshooting an
 instance of the  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  call:
 

   
 
   
 itemcolumn="Date" 
   
 valuecolumn="View" >
   
 
   
 

 
I dumped the query variable
 that contains the value requested in the
  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 -


-
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
-





Re: [ACFUG Discuss] cfchart

2008-10-24 Thread Szwedo . Ed
Just a quick look and it seems like your  tag is wrong.
You need to specify the query as a parameter in the tag.

See my example:


  


__
Ed Szwedo
Web Development Team Lead
CSC

109 TW Alexander Drive, Building NCC, Mail Drop N176-05, Research
Triangle Park, NC 27711
Information Technology Infrastructure Solutions | Office: (919)541-3955
| Fax: (919)541-3641 | [EMAIL PROTECTED] | www.csc.com



 "Troy Jones"   
 <[EMAIL PROTECTED]   
 >   To 
 Sent by: 
 [EMAIL PROTECTED] cc 

Subject 
 10/24/2008 03:27 [ACFUG Discuss] cfchart   
 PM 


  Please respond
to  
 [EMAIL PROTECTED]   
   .org 






Hey all,

I am troubleshooting an instance of the  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
 call:







I dumped the query variable that contains the value requested in the
 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
-

N�r��yb�X��f�j���鮇���mq

Re: [ACFUG Discuss] Cfchart output = flash, z-index

2008-08-19 Thread Darin Kohles
I've got a similar example on my blog:

darinkohles.wordpress.com

On Mon, Aug 18, 2008 at 4:51 PM, Mike Staver <[EMAIL PROTECTED]> wrote:
> I'm attempting to have a Div containing a table and some other good stuff
> slide out over the top of a cfchart based graph that is output into flash.
>  I've been digging and digging trying to find a solution to how to make
> the chart obey the z-index value of it's parent Div.  I know this has been
> a problem in the past, and one solution I tried is placing the cfchart
> into a cfsavecontent and running this:
>
> http://";,
> "https://";, "all")>
>  '
>
> The page I'm working with will always be viewed over port 443 / SSL which
> is why I have the other replace in there.  I'm obviously doing something
> incorrect with the wmode bit - and I can't find any answers via various
> google searches.
>
> Has anyone on the list solved this one before? Adobe's forums are a
> massive pain to search anymore so I'm not finding much help there.
>
>
> -
> 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
> -
>
>
>
>



-- 
Darin Kohles
RIA Developer


-
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
-





Re: [ACFUG Discuss] CFChart and printing

2008-04-23 Thread Mike Staver
Thanks everyone for the info, it has been a large help.  I ended up
modifying the webcharts3d.xml file so that the timeout is longer, that
seems to solve the short term problem. The user can now print images as
well as view them up to 2 minutes after they are created.  For future
pages, I will probably do what Brooks is suggesting and save off the image
so it is always around (atleast until I no longer need it).  Thanks again
everybody.

> Mike:
>
> Here a trick I developed that might help you. I needed to create a pie
> chart showing the results of an on-line poll. I used Macromedia Pollster
> to create and maintain the polls. Pollster uses a Flash user interface,
> but my client want an HTML equivalent. So I used an HTML form to collect
> the data and cfchart to display it. I ran into the same problem with the
> chart image expiring. Also, the site is heavily cached. The solution that
> I came up with is a little clunky but it works.
>
> Use cfsavecontent to capture the output of the cfgraph call.
> Parse the cfsavecontent output and recover the image file name that was
> created with cfgraph. It looks something like
> '/CFIDE/GraphData.cfm?graphCache=wc50&graphID=Images&id="Images_123456789"'.
> Once I have the image file name and location, I made a copy of the image
> in my cache directory with cffile. Pollster uses UUIDs to id the polls, so
> I named them image "cache/UUID.png".
> I go through the above logic whenever someone takes the poll, thereby
> refreshing the image.
> Lastly, to force the browser to refresh the image I append the vote count
> as a URL parameter in the image statement:  src="cache/UUID.png?total=#totalVotes#"/>
>
> This seems to solve the problem of the expiring image and allows me keep
> the site cached. You can see the browser side of the code in action at
> http://www.frbatlanta.org/. I generated a png but it will work with jpg
> (or gif).
>
> Sincerely,
>
> Brooks Wilson
> 640K ought to be enough for anybody. - Bill Gates (1981)
>
>
>
>
>  Federal Reserve Bank of Atlanta · 1000 Peachtree Street, N.E. · Atlanta
> Georgia 30309-4470
> 404.498.8178 · fax 404.498.8239 · [EMAIL PROTECTED]
>
>
>
>
>
> "Ajas Mohammed" <[EMAIL PROTECTED]>
> Sent by: [EMAIL PROTECTED]
> 04/22/2008 10:52 AM
> Please respond to
> discussion@acfug.org
>
>
> To
> discussion@acfug.org
> cc
>
> Subject
> Re: [ACFUG Discuss] CFChart and printing
>
>
>
>
>
>
> Hi,
>
> Try this
>
> I guess you need to increase the timeout value. The charts/images are
> cached and the timeout value says how long to cache the chart/images.
>
> go to cf install path\lib\webcharts.3d.xml
>
> look for the code below at the top
> 
>  so on.
>
> time is in millisecs
>
> we had same issue and setting timeout value fixed the issue.
>
> Hope it helps.
>
> Try it out.
>
> --
> 
> http://ajashadi.blogspot.com
> No matter what, find a way. Because thats what winners do.
> You can't improve what you don't measure.
> Quality is never an accident; it is always the result of high intention,
> sincere effort, intelligent direction and skillful execution; it
> represents the wise choice of many alternatives.
> "Live as if you were to die tomorrow. Learn as if you were to live
> forever."
>
>
> On 4/21/08, Mike Staver <[EMAIL PROTECTED]> wrote:
> An application I'm working on uses the CFChart tag to generate a bar graph
> based on a query.  The graph looks great on the screen. This graph is
> inside a loop, and the graph gets generated approximately 1 to 6 times in
> most cases.  When the user tries to print the screen, some of the images
> print and some don't.  When the system really starts acting up, not a
> single image will print.  The message being displayed in the images place
> on the print out is "Image Expired", etc.  The standard message when you
> hit a back button to view a page without refreshing the page.  Some other
> info to note:
>
> 1) This webserver is NOT clustered.
> 2) ColdFusion version MX 7.0.2.
> 3) The cfchart tag is generating a jpeg image.
> 4) The browser in question is IE 7.
> 5) The webserver is IIS 6 on Windows 2003, using SSL.
> 6) The user is immediately trying to print the page, not letting it sit
> for more than 10 seconds max.
> 7) The site is not under any kind of heavy load.
> 8) I don't immediately have access to IIS or ColdFusion logs.
>
> All the research I've done points to the problem of having a clustered
> site, whic

Re: [ACFUG Discuss] CFChart and printing

2008-04-23 Thread Brooks . Wilson
Mike:

Here a trick I developed that might help you. I needed to create a pie 
chart showing the results of an on-line poll. I used Macromedia Pollster 
to create and maintain the polls. Pollster uses a Flash user interface, 
but my client want an HTML equivalent. So I used an HTML form to collect 
the data and cfchart to display it. I ran into the same problem with the 
chart image expiring. Also, the site is heavily cached. The solution that 
I came up with is a little clunky but it works.

Use cfsavecontent to capture the output of the cfgraph call.
Parse the cfsavecontent output and recover the image file name that was 
created with cfgraph. It looks something like 
'/CFIDE/GraphData.cfm?graphCache=wc50&graphID=Images&id="Images_123456789"'.
Once I have the image file name and location, I made a copy of the image 
in my cache directory with cffile. Pollster uses UUIDs to id the polls, so 
I named them image "cache/UUID.png".
I go through the above logic whenever someone takes the poll, thereby 
refreshing the image.
Lastly, to force the browser to refresh the image I append the vote count 
as a URL parameter in the image statement: 

This seems to solve the problem of the expiring image and allows me keep 
the site cached. You can see the browser side of the code in action at 
http://www.frbatlanta.org/. I generated a png but it will work with jpg 
(or gif).

Sincerely,

Brooks Wilson
640K ought to be enough for anybody. - Bill Gates (1981)




 Federal Reserve Bank of Atlanta · 1000 Peachtree Street, N.E. · Atlanta 
Georgia 30309-4470 
404.498.8178 · fax 404.498.8239 · [EMAIL PROTECTED]

 



"Ajas Mohammed" <[EMAIL PROTECTED]> 
Sent by: [EMAIL PROTECTED]
04/22/2008 10:52 AM
Please respond to
discussion@acfug.org


To
discussion@acfug.org
cc

Subject
Re: [ACFUG Discuss] CFChart and printing






Hi,
 
Try this
 
I guess you need to increase the timeout value. The charts/images are 
cached and the timeout value says how long to cache the chart/images.
 
go to cf install path\lib\webcharts.3d.xml
 
look for the code below at the top 


http://ajashadi.blogspot.com
No matter what, find a way. Because thats what winners do.
You can't improve what you don't measure.
Quality is never an accident; it is always the result of high intention, 
sincere effort, intelligent direction and skillful execution; it 
represents the wise choice of many alternatives.
"Live as if you were to die tomorrow. Learn as if you were to live 
forever." 

 
On 4/21/08, Mike Staver <[EMAIL PROTECTED]> wrote: 
An application I'm working on uses the CFChart tag to generate a bar graph
based on a query.  The graph looks great on the screen. This graph is
inside a loop, and the graph gets generated approximately 1 to 6 times in
most cases.  When the user tries to print the screen, some of the images
print and some don't.  When the system really starts acting up, not a
single image will print.  The message being displayed in the images place
on the print out is "Image Expired", etc.  The standard message when you
hit a back button to view a page without refreshing the page.  Some other
info to note:

1) This webserver is NOT clustered.
2) ColdFusion version MX 7.0.2.
3) The cfchart tag is generating a jpeg image.
4) The browser in question is IE 7.
5) The webserver is IIS 6 on Windows 2003, using SSL.
6) The user is immediately trying to print the page, not letting it sit
for more than 10 seconds max.
7) The site is not under any kind of heavy load.
8) I don't immediately have access to IIS or ColdFusion logs.

All the research I've done points to the problem of having a clustered
site, which does not fit my case here.  Has anybody else had to deal with
this issue before?


-
Annual Sponsor FigLeaf Software - http://www.figleaf.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








- 
Annual Sponsor - Figleaf Software 

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 
- 
<><><>

Re: [ACFUG Discuss] CFChart and printing

2008-04-22 Thread Ajas Mohammed
Hi,

Try this

I guess you need to increase the timeout value. The charts/images are cached
and the timeout value says how long to cache the chart/images.

go to cf install path\lib\webcharts.3d.xml

look for the code below at the top


http://ajashadi.blogspot.com
No matter what, find a way. Because thats what winners do.
You can't improve what you don't measure.
Quality is never an accident; it is always the result of high intention,
sincere effort, intelligent direction and skillful execution; it represents
the wise choice of many alternatives.
"Live as if you were to die tomorrow. Learn as if you were to live forever."



On 4/21/08, Mike Staver <[EMAIL PROTECTED]> wrote:
>
> An application I'm working on uses the CFChart tag to generate a bar graph
> based on a query.  The graph looks great on the screen. This graph is
> inside a loop, and the graph gets generated approximately 1 to 6 times in
> most cases.  When the user tries to print the screen, some of the images
> print and some don't.  When the system really starts acting up, not a
> single image will print.  The message being displayed in the images place
> on the print out is "Image Expired", etc.  The standard message when you
> hit a back button to view a page without refreshing the page.  Some other
> info to note:
>
> 1) This webserver is NOT clustered.
> 2) ColdFusion version MX 7.0.2.
> 3) The cfchart tag is generating a jpeg image.
> 4) The browser in question is IE 7.
> 5) The webserver is IIS 6 on Windows 2003, using SSL.
> 6) The user is immediately trying to print the page, not letting it sit
> for more than 10 seconds max.
> 7) The site is not under any kind of heavy load.
> 8) I don't immediately have access to IIS or ColdFusion logs.
>
> All the research I've done points to the problem of having a clustered
> site, which does not fit my case here.  Has anybody else had to deal with
> this issue before?
>
>
> -
> Annual Sponsor FigLeaf Software - http://www.figleaf.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
> -
>
>
>
>



-
Annual Sponsor FigLeaf Software - http://www.figleaf.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
-



Re: [ACFUG Discuss] CFChart doesn't display Flash movie or PNG

2007-08-14 Thread shawn gorrell
Another option is to take the output of a cfchart and write it to a file that 
you manage yourself. Use the name attribute of cfchart set to something like 
myChart, then do a cffile write with the output being myChart. Personally I 
kind of prefer this approach to the admin caching settings because it isn't one 
size fits all. I can cache my output for as long or as little as I like and 
where I would like. Just a thought.



- Original Message 
From: Scott Councill <[EMAIL PROTECTED]>
To: discussion@acfug.org
Sent: Tuesday, August 14, 2007 10:16:36 AM
Subject: RE: [ACFUG Discuss] CFChart doesn't display Flash movie or PNG




 
 









This does look like an issue that I will look into.  However,
what I am experiencing is I have 2 copies of the same application – Dev and
Staging, and the Chart works on Dev but not on Staging.  The only difference 
that
I can see between the 2 apps is that Staging has an SSL.  I have chosen to
cache the charts in memory rather than the default of the hard drive.  We have
plenty of memory and this is a relatively low volume app so it won’t be a
problem.
 

  
 

Scott Councill
 

Software Engineer
 

Direct: 404.601.4390
 

[EMAIL PROTECTED]
 

  
 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ajas Mohammed

Sent: Tuesday, August 14, 2007 9:56 AM

To: discussion@acfug.org

Subject: Re: [ACFUG Discuss] CFChart doesn't display Flash movie or PNG
 




  
 

Hi,

 We had faced the image expired issue as the image is
cached for only sometime. The file you need to edit is I think \lib\webcharts3d.xml and you can increase minTimeout and
maxTimeout v alues. 



Here are some helpful links



http://cfchart.blogspot.com/2005_06_01_archive.html




http://www.cfguru.org/index.cfm/2006/5/31/CFChart-Issues



I Hope it helps.



Ajas Mohammed.




 



On 8/14/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]>
wrote:
 



The graph files
exists for a short period of time and then they are deleted by the CF server.
If you are caching the page, you will see the behavior you describe - since the
html cache still holds the reference to a file that no longer exist. I think
there is an administrator setting to change how long the graph file lives. One
thing that I have done is make a copy of the graphing file somewhere that I
control. I then change the cached html to reference that file instead. 



Sincerely,



Brooks Wilson 
 

There
is no education like adversity. - Benjamin Disraeli 
 


 
  
  Federal Reserve Bank of Atlanta · 1000
  Peachtree Street, N.E. · Atlanta Georgia 30309-4470

  404.498.8178 · fax 404.498.8239 · [EMAIL PROTECTED]
 
  
 


  
 

  




 


 
  
  "Scott
  Councill" <[EMAIL PROTECTED]> 

  Sent by: [EMAIL PROTECTED] 
 
  08/13/2007
  05:24 PM 
 
  
   

Please respond to

discussion@acfug.org
 

   
  
  
  
  
   

To
 




 

   
   

cc
 



   
   

Subject
 


[ACFUG
Discuss] CFChart doesn't display Flash movie or PNG
 

   
  

 
  
   




   
  
  
 










I
get a "File Not Found" in the HTTP Header.  A couple things I am
try to understand.  I have a multi-homed IIS setup and 1 instance of CFMX7
running.  When the CFChart is included in a file, it actually calls a file
/CFIDE/GraphData.cfm?graphCache=wc50&graphID=Images/100058.SWF but there is
no such file as GraphData.cfm in the CFIDE folder, nor is there a file called
100058.SWF in the /CFIDE/Images/ folder. 

 


I
have 2 sites (DEV and STAGING) on the same server mentioned above.  On
DEV, the page works like a champ – on STAGING, nothing.  Well, on STAGING
the page comes up without any errors displayed and the placeholder for the SWF
file is there, just no chart.  OK, STAGING is under an SSL and DEV is not.
 I have already updated the WebChart3D.xml file to reflect the HTTPS://
link to the Flash codebase, so that is done.  \CFIDE is set as a virtual
folder under both IIS entries PLUS is a virtual path in CFMX Admin. 

 


Can
someone explain to me first how GraphData.cfm is found on DEV and where exactly
the SWF files are stored. 

 


 


 

 


 
  
  Scott Councill 

  Software Engineer 

  Direct: 404.601.4390 

  [EMAIL PROTECTED] 

  Spunlogic

  Expect More From the Web

  www.spunlogic.com 
 
  
 




Looking for
insights and tips on all aspects of interactive marketing? Visit Spunlogic's
Blog
for a look inside the minds of a leading interactive agency. 

 

 



- 

Annual Sponsor - Figleaf Software




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

RE: [ACFUG Discuss] CFChart doesn't display Flash movie or PNG

2007-08-14 Thread Scott Councill
This does look like an issue that I will look into.  However, what I am
experiencing is I have 2 copies of the same application - Dev and Staging,
and the Chart works on Dev but not on Staging.  The only difference that I
can see between the 2 apps is that Staging has an SSL.  I have chosen to
cache the charts in memory rather than the default of the hard drive.  We
have plenty of memory and this is a relatively low volume app so it won't be
a problem.

 

Scott Councill

Software Engineer

Direct: 404.601.4390

[EMAIL PROTECTED]

 

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ajas Mohammed
Sent: Tuesday, August 14, 2007 9:56 AM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] CFChart doesn't display Flash movie or PNG

 

Hi,
 We had faced the image expired issue as the image is cached for only
sometime. The file you need to edit is I think \lib\webcharts3d.xml and you can increase minTimeout and maxTimeout v
alues. 

Here are some helpful links

http://cfchart.blogspot.com/2005_06_01_archive.html 

http://www.cfguru.org/index.cfm/2006/5/31/CFChart-Issues

I Hope it helps.

Ajas Mohammed.



On 8/14/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:


The graph files exists for a short period of time and then they are deleted
by the CF server. If you are caching the page, you will see the behavior you
describe - since the html cache still holds the reference to a file that no
longer exist. I think there is an administrator setting to change how long
the graph file lives. One thing that I have done is make a copy of the
graphing file somewhere that I control. I then change the cached html to
reference that file instead. 

Sincerely,

Brooks Wilson 

There is no education like adversity. - Benjamin Disraeli 


Federal Reserve Bank of Atlanta . 1000 Peachtree Street, N.E. . Atlanta
Georgia 30309-4470
404.498.8178 . fax 404.498.8239 . [EMAIL PROTECTED]

 

  




"Scott Councill" <[EMAIL PROTECTED]> 
Sent by: [EMAIL PROTECTED] 

08/13/2007 05:24 PM 


Please respond to
discussion@acfug.org


To

 


cc



Subject

[ACFUG Discuss] CFChart doesn't display Flash movie or PNG

 






I get a "File Not Found" in the HTTP Header.  A couple things I am try to
understand.  I have a multi-homed IIS setup and 1 instance of CFMX7 running.
When the CFChart is included in a file, it actually calls a file
/CFIDE/GraphData.cfm?graphCache=wc50&graphID=Images/100058.SWF but there is
no such file as GraphData.cfm in the CFIDE folder, nor is there a file
called 100058.SWF in the /CFIDE/Images/ folder. 
  
I have 2 sites (DEV and STAGING) on the same server mentioned above.  On
DEV, the page works like a champ - on STAGING, nothing.  Well, on STAGING
the page comes up without any errors displayed and the placeholder for the
SWF file is there, just no chart.  OK, STAGING is under an SSL and DEV is
not.  I have already updated the WebChart3D.xml file to reflect the HTTPS://
link to the Flash codebase, so that is done.  \CFIDE is set as a virtual
folder under both IIS entries PLUS is a virtual path in CFMX Admin. 
  
Can someone explain to me first how GraphData.cfm is found on DEV and where
exactly the SWF files are stored. 
  
  
  


Scott Councill 
Software Engineer 
Direct: 404.601.4390 
 <mailto:[EMAIL PROTECTED]> [EMAIL PROTECTED] 
Spunlogic
Expect More From the Web
 <http://www.spunlogic.com/?CMP=EMC-OutlookSig> www.spunlogic.com 


Looking for insights and tips on all aspects of interactive marketing? Visit
<http://www.spunlogic.com/blog/?CMP=EMC-OutlookSig> Spunlogic's Blog for a
look inside the minds of a leading interactive agency. 
  


- 
Annual Sponsor - Figleaf Software <http://www.figleaf.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/
<http://www.mail-archive.com/discussion%40acfug.org/> 
List hosted by FusionLink <http://www.fusionlink.com/>  
- 




-- 

http://ajashadi.blogspot.com
No matter what, find a way. Because thats what winners do. 
You can't improve what you don't measure. 
- 
Annual Sponsor - Figleaf Software <http://www.figleaf.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>  
- 




-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To

Re: [ACFUG Discuss] CFChart doesn't display Flash movie or PNG

2007-08-14 Thread Ajas Mohammed
Hi,
 We had faced the image expired issue as the image is cached for only
sometime. The file you need to edit is I think \lib\webcharts3d.xml and you can increase minTimeout and maxTimeout v
alues.

Here are some helpful links

http://cfchart.blogspot.com/2005_06_01_archive.html

http://www.cfguru.org/index.cfm/2006/5/31/CFChart-Issues

I Hope it helps.

Ajas Mohammed.


On 8/14/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
>
> The graph files exists for a short period of time and then they are
> deleted by the CF server. If you are caching the page, you will see the
> behavior you describe - since the html cache still holds the reference to a
> file that no longer exist. I think there is an administrator setting to
> change how long the graph file lives. One thing that I have done is make a
> copy of the graphing file somewhere that I control. I then change the cached
> html to reference that file instead.
>
> Sincerely,
>
> Brooks Wilson
>
> There is no education like adversity. - Benjamin Disraeli
>
>   Federal Reserve Bank of Atlanta · 1000 Peachtree Street, N.E. · Atlanta
> Georgia 30309-4470
> 404.498.8178 · fax 404.498.8239 · [EMAIL PROTECTED]
>
>
>
>
>  *"Scott Councill" <[EMAIL PROTECTED]>*
> Sent by: [EMAIL PROTECTED]
>
> 08/13/2007 05:24 PM  Please respond to
> discussion@acfug.org
>
>   To
>   cc
>
>  Subject
> [ACFUG Discuss] CFChart doesn't display Flash movie or PNG
>
>
>
>
>
>
> I get a "File Not Found" in the HTTP Header.  A couple things I am try to
> understand.  I have a multi-homed IIS setup and 1 instance of CFMX7 running.
>  When the CFChart is included in a file, it actually calls a file
> /CFIDE/GraphData.cfm?graphCache=wc50&graphID=Images/100058.SWF but there is
> no such file as GraphData.cfm in the CFIDE folder, nor is there a file
> called 100058.SWF in the /CFIDE/Images/ folder.
>
> I have 2 sites (DEV and STAGING) on the same server mentioned above.  On
> DEV, the page works like a champ – on STAGING, nothing.  Well, on STAGING
> the page comes up without any errors displayed and the placeholder for the
> SWF file is there, just no chart.  OK, STAGING is under an SSL and DEV is
> not.  I have already updated the WebChart3D.xml file to reflect the
> HTTPS:// link to the Flash codebase, so that is done.  \CFIDE is set as a
> virtual folder under both IIS entries PLUS is a virtual path in CFMX Admin.
>
> Can someone explain to me first how GraphData.cfm is found on DEV and
> where exactly the SWF files are stored.
>
>
>
>
>  *Scott Councill *
> Software Engineer
> Direct: 404.601.4390 *
> [EMAIL PROTECTED] <[EMAIL PROTECTED]>
> *Spunlogic*
> Expect More From the Web*
> **www.spunlogic.com* 
> *Looking for insights and tips on all aspects of interactive marketing?
> Visit **Spunlogic's Blog*
> * for a look inside the minds of a leading interactive agency. *
>
>
>
> -
> Annual Sponsor - *Figleaf Software* 
>
> 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://ajashadi.blogspot.com
No matter what, find a way. Because thats what winners do.
You can't improve what you don't measure.



-

Annual Sponsor FigLeaf Software - http://www.figleaf.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

-


<>

Re: [ACFUG Discuss] CFChart doesn't display Flash movie or PNG

2007-08-14 Thread Brooks . Wilson
The graph files exists for a short period of time and then they are 
deleted by the CF server. If you are caching the page, you will see the 
behavior you describe - since the html cache still holds the reference to 
a file that no longer exist. I think there is an administrator setting to 
change how long the graph file lives. One thing that I have done is make a 
copy of the graphing file somewhere that I control. I then change the 
cached html to reference that file instead.

Sincerely,

Brooks Wilson
There is no education like adversity. - Benjamin Disraeli

Federal Reserve Bank of Atlanta · 1000 Peachtree Street, N.E. · Atlanta 
Georgia 30309-4470
404.498.8178 · fax 404.498.8239 · [EMAIL PROTECTED]

 



"Scott Councill" <[EMAIL PROTECTED]> 
Sent by: [EMAIL PROTECTED]
08/13/2007 05:24 PM
Please respond to
discussion@acfug.org


To

cc

Subject
[ACFUG Discuss] CFChart doesn't display Flash movie or PNG






I get a ?File Not Found? in the HTTP Header.  A couple things I am try to 
understand.  I have a multi-homed IIS setup and 1 instance of CFMX7 
running.  When the CFChart is included in a file, it actually calls a file 
/CFIDE/GraphData.cfm?graphCache=wc50&graphID=Images/100058.SWF but there 
is no such file as GraphData.cfm in the CFIDE folder, nor is there a file 
called 100058.SWF in the /CFIDE/Images/ folder.
 
I have 2 sites (DEV and STAGING) on the same server mentioned above.  On 
DEV, the page works like a champ ? on STAGING, nothing.  Well, on STAGING 
the page comes up without any errors displayed and the placeholder for the 
SWF file is there, just no chart.  OK, STAGING is under an SSL and DEV is 
not.  I have already updated the WebChart3D.xml file to reflect the 
HTTPS:// link to the Flash codebase, so that is done.  \CFIDE is set as a 
virtual folder under both IIS entries PLUS is a virtual path in CFMX 
Admin.
 
Can someone explain to me first how GraphData.cfm is found on DEV and 
where exactly the SWF files are stored.
 
 
 

Scott Councill 
Software Engineer 
Direct: 404.601.4390 
[EMAIL PROTECTED] 
Spunlogic
Expect More From the Web
www.spunlogic.com 
Looking for insights and tips on all aspects of interactive marketing? 
Visit Spunlogic's Blog for a look inside the minds of a leading 
interactive agency. 
 

- 
Annual Sponsor - Figleaf Software 

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 

<>