Ask a Question related to Macromedia ColdFusion, Design and Development.

  1. #1

    Default Charts Under SSL

    I run an application with lots of charts. The application runs under SSL. The
    problem is that some browsers (IE on XP especially) display the following
    warning message: 'This page contains both secure and nonsecure items. Do you
    want to continue?' I can't find a way to turn this warning off in IE 6.0. The
    offending code in the chart out put is this line:
    codebase='http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,2,0'
    Since it is not an [url]https://.[/url].. url, the browser recognizes it as 'insecure'.
    Any suggestions on how to overcome this?

    CNaser Guest

  2. Similar Questions and Discussions

    1. Pie charts
      can anyone give me an example or point me in the right direction of dynamically creating a pie chart? Thanks
    2. CF MX 7 and the charts?
      We are planing on upgrading from version 6.1 to MX 7. I have read that the chart functions were overworked completely. We have some reports running...
    3. 3 d pie charts
      Does illustrator do 3-d pie charts. If so how?
    4. Need help with charts
      I am trying to do a chart in Illustrator 8 but when I enter all the information I get a random bar first that goes up to 5000 even thought the...
    5. Using Charts.
      right click the chart and select edit chart to enter the data you want. "Lee" <lee@nospam.com> wrote in message...
  3. #2

    Default Re: Charts Under SSL

    Make your call to cfchart from within a cfsavecontent, e.g.

    <cfcsavecontent variable="mychart">
    <cfchart .....>
    </cfchart>
    </cfcsavecontent>

    Now do a Replace on the mychart variable, like so

    <cfset mychart = Replace(mychart,"http://","https://") />

    And then output it

    <cfoutput>#mychart#</cfoutput>

    Andy

    xentrix Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139