如何在 Coldfusion 中找到 {CFIDE-HOME}
任何人都知道,如何在我的服务器中找到 {CFIDE-HOME}
路径?这是用于 Coldfusion 8.0.1
any one has idea, how can I find {CFIDE-HOME}
path in my server? this is for coldfusion 8.0.1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您是否需要从您的应用程序获取此路径,或者您是否需要它,因为您的网站上未设置该路径,而您需要找到它才能使您的应用程序正常工作?
如果您的应用需要此功能,则应使用
#ExpandPath("/CFIDE")#
。如果您因为设置不正确而需要此目录,并且您只需要在磁盘上查找该目录,那么最好的选择就是在硬盘驱动器中搜索 CFIDE 目录。如果您在 JRUN 下安装 CF,则 CFIDE 目录将位于每个服务器实例的目录下。如果您将 CF 作为独立应用程序安装,那么它很可能位于
/ColdFusion8/wwwroot/CFIDE
下。担
Do you need to get this path from your application, or do you need it because it's not set up on your site and you need to find it to get your app working correctly?
If you need this from your app, you should use
#ExpandPath("/CFIDE")#
.If you need this because it's not set up correctly and you just need to find the directory on disk, then your best bet is to simply search your hard drive for the CFIDE directory. If you installed CF under JRUN, then the CFIDE directory will be under each server instance's directory. If you install CF as a standalone app then it's most likely under
/ColdFusion8/wwwroot/CFIDE
.Dan
检查 neo-runtime.xml。根据您的安装路径,该文件将为 ColdFusion8/lib/neo-runtime.xml 或 WEB-INF\cfusion\lib\neo-runtime.xml
Check neo-runtime.xml. Based upon your installation path of that file will be ColdFusion8/lib/neo-runtime.xml or WEB-INF\cfusion\lib\neo-runtime.xml
如果您没有安装 ColdFusion,您可以在您的平台上搜索 CFIDE/。
you could just do a search for CFIDE/ on your platform if you don't where ColdFusion is installed.