运行使用ColdFusion与Coldspling、Reactor和Model Glue构建的网站的本地服务器的最简单方



情况如下:我得到了一台带有旧网站子版本存储库的机器,可以不时更新/添加内容。该网站是使用ColdFusion和Model Glue MVC构建的,我对ColdFusions一无所知。我们运行的另一个网站是CakePHP,这对我来说已经足够好了;(

话虽如此,我修改它的内容没有问题,因为它都是HTML和javascript。问题是,对于每一个小的更改,我都必须提交到服务器上的开发存储库,然后上网查看更改的样子
对于一个简单的东西,比如html标签的"高度"属性,只尝试不同的值会让人非常沮丧!!更让我沮丧的是,我试图在我的机器上为该存储库运行本地副本!

到目前为止我尝试了什么:

  • 我安装了带有WAMP的CF10
  • 已为新服务器配置vhosts文件
  • 将我的用户添加到ColdFusion应用程序服务器服务(windows 7x64)

但每当我试图在浏览器中打开它时,它都会给我"异常服务错误应用程序异常"!!请帮忙吗?

**更新:我忘记问了!如何知道网站开始使用的index.cfm文件?例如,我在CakePHP中知道它的app/webroot/index.php。在(Coldfusion X Model Glue)中是什么?有这么多的index.cfm和application.cfm文件!

关于该服务器的httpd-vhosts.conf块如下所示:

<VirtualHost *>
ServerName localhost-CF
DocumentRoot "C:/wamp/www/my/webroot/directory/"
<Directory "C:/wamp/www/my/webroot/directory/">
Options Indexes FollowSymLinks Includes ExecCGI
allow from all
order allow,deny
# Enables .htaccess files for this site
AllowOverride All
</Directory>
# Apache will look for these two files, in this order, if no file is specified in the URL
DirectoryIndex index.cfm index.html index.php
</VirtualHost> 

这里有一个Screen Cap的链接——没有足够的rep;{-关于我使用两个服务器(但不是同时使用)apache和内置的:CF10本地服务器设置问题

此外,这里还有一个来自cfusion\logs\application.log的块:

"Error","ajp-bio-8012-exec-1","08/15/13","10:34:38","PREK","Error during init: Could not find the                 ColdFusion component or interface coldspring.beans.DefaultXmlBeanFactory. Ensure that the name is correct and that the component or interface exists."  
"Error","ajp-bio-8012-exec-1","08/15/13","10:34:38","PREK","Error during exception service init: Element EXCEPTIONSERVICE is undefined in a Java object of type class [Ljava.lang.String;. "  
"Error","ajp-bio-8012-exec-1","08/15/13","10:34:38","PREK","Error during application init: The datasource named cfclientstorage is not a valid client storage DSN. Define client storage DSN through the ColdFusion Administrator."  

我确实将cfclientstorage作为DSN存储,管理员告诉我它已验证
然而,我认为,如果这个确切的存储库在服务器上运行良好,那么我就不必担心代码了!很可能是系统/服务器配置或安装问题(在我的本地机器上)。

看起来您正在使用ColdSpring。您需要登录到ColdFusion Administrator,并将映射添加到ColdSpring目录中,例如:

/冷弹簧-->c:/coldspring

此外,您还需要设置一个数据源来指向您的"cfclientstorage"数据库。这也在ColdFusion管理员中

相关内容

  • 没有找到相关文章

最新更新