当我在本地使用Coldfusion 10时,我可以使用以下命令读取zip文件的文本文件内容:
<cfzip action="read" file="http://someurl.com/somezip.zip" entrypath="sometext.txt" variable="somevar" />但是在我的Railo VPS上,这在IIS7.5上产生了一个内部服务器错误500
有人能告诉我Railo哪里出问题了吗?
发布于 2015-10-01 09:32:27
不确定Railo,但according to the doc,ACF不支持读出http://,只支持ram://。您应该先使用<cfhttp>下载内容。
https://stackoverflow.com/questions/32877845
复制相似问题