View comments | RSS feed

Post-install problems

CLOB and data corruption

Problem: You are using the Japanese version of ColdFusion MX 7 and Oracle 8/9 with NLS_Characterset JA16SJJS, and encounter CLOB corruption and data corruption.

Solution: Set codepageoverride=MS932 in the JDBC URL.

Unsupported keysize or algorithm parameters

Problem: You are running ColdFusion MX 7 on WebSphere 5.1 on IBM JVM 1.4.1 and encounter an "Unsupported keysize or algorithm parameters" exception.

Solution: You must install unlimited jurisdiction policy files, as follows:

  1. Download and install Unrestricted JCE Policy files for IBM SDK 1.4 from https://www6.software.ibm.com/dl/jcesdk/jcesdk-p.
  2. Unzip the file.
  3. Copy files unzipped from this link to the jre/lib/security directory.
  4. Restart WebSphere.

Virtual mapping resource path of /* does not work

Problem: You add a virtual mapping resource path of /* which does not work.

Solution: Do not map any directories to wildcard resource paths that contain WEB-INF as a virtual mapping. In ColdFusion MX 6.1, the fact that this worked was a side-effect of the particular way the classloader was configured. For ColdFusion MX 7, the classloader is consistent across all editions; the ColdFusion classloader is no longer blended with the application server's classloader. This change was made to ensure that ColdFusion MX 7 works consistently in standalone server as well as deployed as an EAR/WAR to any certified J2EE application server.


ColdFusion 9 | ColdFusion 8 | ColdFusion MX 7 | ColdFusion MX 6.1 | ColdFusion MX | Forums | Developer Center | KnowledgeBase | Bug Reporting

Version 7

Comments


jrunrandy said on Feb 15, 2005 at 6:41 AM :
If you are running the Getting Started Experience Tutorial
(not the tutorial that is part of the Getting Started manual;
sorry for the confusion...), you will encounter a problem
viewing the index.cfm page, receiving an error similar
to the following:
"Element LOCALE is undefined in REQUEST"

This is a problem in the Application.cfm file. You can fix
this by opening the CFIDE/gettingstarted/Application.cfm and the
CFIDE/gettingstarted/experience/Application.cfm files and
changing:
<cfif request.locale neq "jp" and request.locale neq "ja">
<cfset request.locale = "en">
</cfif>

to:
<cfif isdefined(“request.locale”) AND request.locale neq "jp" and request.locale neq "ja">
<cfset request.locale = "en">
</cfif>
valcom said on Feb 28, 2005 at 6:46 PM :
I believe you have amistake in your solution. You stte we must change both CFIDE/gettingstarted/Application.cfm and the
CFIDE/gettingstarted/experience/Application.cfm files. I tried that and got an error. Further investigation revealed that the only the CFIDE/gettingstarted/Application.cfm requires the change your suggest. Changing both files causes a different problem. Google for the error "Element LOCALE is undefined ien REQUEST" and you will see the solution. Thanks for helping me find the correct answer to my problem. Bill
jazzgilbert said on May 25, 2005 at 11:21 AM :
I'll have to backup valcom, I changed only the file CFIDE/gettingstarted/Application.cfm and that resolved the problem for me. I haven't had to touch the second file jrunrandy mentioned, but I also haven't completed the tutorial etc.

Thanks to both for your help.
No screen name said on Jun 10, 2005 at 4:03 AM :
I have just finished resolving this problem myself.
What worked for me was to change just the CFIDE/gettingstarted/Application.cfm file, as others have said. Except if you copy and paste the replacment code from above, the style of quotes used around request.locale may trigger another error. If you do get such an error like I did just change the quotes like this:

<cfif isdefined("request.locale") AND request.locale neq "jp" and request.locale neq "ja">
<cfset request.locale = "en">
</cfif>
ASandstrom said on Jul 13, 2005 at 11:42 AM :
The tech note "Apache "worker" multi-processing module not supported on Linux or Unix" is at:
http://www.macromedia.com/go/6adf261a
ASandstrom said on Oct 17, 2005 at 10:10 AM :
There is a tech note:
"ColdFusion MX 7 clustering configures without errors but doesn’t work"
at
http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=26e04a0d
ASandstrom said on Nov 15, 2005 at 10:51 AM :
There is a tech note, "ColdFusion MX/JRun 4.0: Hot fix available for JRun4 Updater 6, IIS 6.0 redirect response truncation " at http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=5c9389c8.
ASandstrom said on Nov 15, 2005 at 10:53 AM :
There is a tech note, "Updated DataDirect JDBC drivers (version 3.5)" at http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=42dcb10a.
ASandstrom said on Nov 15, 2005 at 10:55 AM :
There is a tech note, "ColdFusion MX 7.0 and 7.0.1: Hot fix available for SequeLink 5.4 Socket server" at http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=4378f5a4.
ASandstrom said on Dec 8, 2005 at 8:10 AM :
When you create a server instance using the Instance Manager, if you previously modified the cfusion (Enterprise Manger) instance, the log files for the new instance point to the default cfusion instance. Before you modify the cfusion instance, ensure that you want to share any changes among all new instances.
ASandstrom said on May 2, 2006 at 11:09 AM :
There is a Tech Note titled "How to upgrade the JVM shipped with ColdFusion" located at:
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=2d547983

 

RSS feed | Send me an e-mail when comments are added to this page | Comment Report

Current page: http://livedocs.adobe.com/coldfusion/7/htmldocs/00000062.htm