ColdFusion 11 Express 安装和设置

ColdFusion 11 Express Installation and Setup

我是 ColdFusion 的新手。我想从安装和设置环境开始。并在上面测试一个虚拟页面。

我从 adobe 网站 "ColdFusion_exp_11_WWEJ_win64" 下载了速成版版本 11。但是我没有看到安装程序或其他东西。这只是一个大文件夹。很抱歉有一个菜鸟问题,但我该怎么办呢?我的电脑上有一个 WAMP 服务器。 运行这个是怎么做到的?

如何测试页面以查看它是否 运行ning?

我用谷歌搜索 "how to start coldfusion express",第一个 link 解释了一切:“Installing ColdFusion Express”。

没什么可说的。在 cfusion/bin 目录中有一个 cfstart.bat。 运行它。

巧合的是,我刚刚在今天晚上完成了这项任务,并且可以确认仅此而已。不过请通读这些文档。

(评论太长)

found the cfstart.bat and when I click it, it opens the console and then closes it

当您 运行 cfstart.bat 时,控制台应该保持打开状态,除非出现问题。例如,如果默认端口 8500 已被使用。 运行 cfstart.bat 文件在 cmd.exe 中以便您可以查看错误。如果这是问题所在,Adam 发布的 link 中的项目 #4a 包含有关如何更改端口号的说明:

... if [the] default port (8500) for the built-in web server is already in use, the Express edition will not start. To change the port see the <ARCHIVE_ROOT>\cfusion\runtime\conf\server.xml file and edit the port on the line starting with <Connector port="8500" .... Save the file and return to step 2.

.bat 文件的作用只是启动 CF 服务器。一旦它是 运行ning(即控制台保持打开状态且没有错误),您将通过浏览器工作。请参阅 link 中的说明,了解如何通过 CF Admin 配置 CF。您可以通过在 wwwroot 目录中创建 .cfm 文件来 运行 CFML 代码。最终,您会希望使用 IDE 来编写 CFML 代码,但现在您可以使用任何文本编辑器,例如记事本。请务必使用 .cfm 扩展名(而非 .txt)保存文件。

例如,输入以下代码:<cfoutput>#now()#</cfoutput>并将其保存到wwwroot目录下的名为"test.cfm"的文件中:{cf_root}\wwwroot\test.cfm。然后在浏览器中输入:http://127.0.0.1:8500/test.cfm(其中 8500 是您最终使用的任何端口号)来查看它。如果 CF 正常 运行ning,它应该显示当前日期和时间:

    {ts '2015-08-29 15:02:47'}