2012-10-12 63 views
0

我有一個小問題<cfchart> ...
<cfchart>與我的生活網站正常工作。 但是,不與子域一起工作。 作爲,花費<cfchart>網址爲http://subdomain.mysite.com/CFIDE/GraphChart.cfm 代替http://mysite.com/CFIDE/GraphChart.cfm替換子域中的Cfchart的URL

這裏在相關代碼:

<cfchart format="flash" xaxistitle="Month" yaxistitle="Reviews" chartwidth="180" chartheight="150" show3d="yes"> 
    <cfchartseries type="bar" colorlist="##778899,##778899,##778899,##778899"> 
     <cfchartdata item="#DateFormat(LastMonthThree, 'mmm')#" value="0"> 
    </cfchartseries> 
</cfchart> 
+0

你可以發佈您的代碼? –

+0

@馬特Busche: 以下是我的代碼: < cfchartseries type =「bar」colorlist =「## 778899,## 778899,## 778899,## 778899」> 這是我的代碼。 其實問題與子域一致。 阿賈克斯呼籲應爲:http://mysite.com/CFIDE/GraphChart.cfm 但它是http://subdomain.mysite.com/CFIDE/GraphChart.cfm 任何想法??? –

+0

你在哪裏做ajax呼叫? –

回答

0

感謝大家對我的迴應... 反正,我已經解決了這個問題...
這個問題實際上是與cfchart標籤通過其相對路徑需要地圖CFIDE。

(/CFIDE/chartData.cfm) 

所以,當我試圖與subdomain.mysite.com,它確實找到了CFIDE。
(as it was tring to access **(subdomain.mysite.com/CFIDE/chartData.cfm) ** ...
但是,當我嘗試訪問與mysite.com/CFIDE CFIDE,它正在

(as it was added from the IIS-Server)  

所以,我只是去到IIS的管理器,並添加我的CFIDE文件夾subdomain.mysite.com

(subdomain.mysite.com/CFIDE)  

而且它的工作... :)