我可以使用带有CFZIP操作的URL =读取吗?

时间:2015-10-01 00:51:27

标签: coldfusion-10 railo

当我在本地使用Coldfusion 10时,我可以使用以下方法读取zip文件的文本文件内容:

<cfzip action="read" file="http://someurl.com/somezip.zip" entrypath="sometext.txt" variable="somevar"  />

但是在我的Railo VPS上,这会在IIS7.5上产生内部服务器错误500

谁能告诉我Railo在哪里出错?

1 个答案:

答案 0 :(得分:0)

不确定Railo,但according to the <cfzip> doc,ACF不支持读取http://,仅支持ram://。您应该先使用<cfhttp>下载内容。