======Applications - Adobe - ColdFusion======
=====Blogposts/Articles=====
[[http://blog.tech-cats.com/2007/11/getting-enabled-disabled-active.html|Aaquagua! - Getting Enabled / Disabled Active Directory Accounts in ColdFusion and T-SQL]] \\
[[http://blog.joshuaadams.com/index.cfm/2008/9/4/Upgrading-from-ColdFusion-MX-to-ColdFusion-8|Josh Adams's Blog - Upgrading from ColdFusion MX to ColdFusion 8]] \\
[[http://blog.joshuaadams.com/index.cfm/2011/5/3/Entering-a-Serial-Number-into-the-ColdFusion-9-Administrator|Josh Adams's Blog - Entering a Serial Number into the ColdFusion 9 Administrator]] \\
[[http://blog.joshuaadams.com/index.cfm/2009/11/19/Issue-with-ColdFusion-9-Accepting-Standard-License-Keys-during-Installation-on-64-bit-Linux|Josh Adams's Blog - Issue with ColdFusion 9 Accepting Standard License Keys during Installation on 64-bit Linux]] \\
[[https://www.web-workers.ch/index.php/2018/03/31/how-to-install-adobe-coldfusion-9-x64-on-windows-server-2016-x64/|Web Workers - How to install Adobe ColdFusion 9 x64 on Windows Server 2016/2019 x64]] \\
====ColdFusion 9====
[[http://cftipsplus.com/blog/?p=25|CFTipsPlus - ColdFusion 9: What’s New | CFUnited 2009]] \\
[[http://jaminquimby.com/index.php/coldfusion/101-step-by-step-coldfusion-9-installation|Jamin Quimby - Step by Step - ColdFusion 9 Installation]] \\
[[http://jaminquimby.com/index.php/coldfusion/102-error-coldfusion-9-installation-4043|Jamin Quimby - Error - ColdFusion 9 Installation 404.3]] \\
=====Documentation=====
====ColdFusion 8====
[[http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags-pt0_21.html|Tag changes since ColdFusion 5]] \\
====ColdFusion 9====
[[http://www.adobe.com/products/coldfusion-family/white-papers.html|Adobe ColdFusion 9 Family - Data sheets and White papers]] \\
[[http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec17576-7fef.html|Tag changes since ColdFusion 5]] \\
====ColdFusion 8====
[[http://www.adobe.com/products/coldfusion/coldfusion8/systemreqs/|ColdFusion 8 system requirements and systems support matrix]] \\
[[http://www.adobe.com/products/coldfusion/coldfusion8/editions/|ColdFusion 8 Product editions]] \\
[[http://kb2.adobe.com/cps/403/kb403277.html|FAQ about the ColdFusion 8 Update (8.0.1)]] \\
====ColdFusion 9====
[[http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/products/coldfusion/pdfs/91025512-cf9-lockdownguide-wp-ue.pdf|Adobe ColdFusion 9 Server Lockdown Guide]] \\
=====Software updates=====
[[http://www.adobe.com/support/coldfusion/downloads_updates.html|Adobe - Updates - ColdFusion]]
====ColdFusion 8====
[[http://kb2.adobe.com/cps/402/kb402604.html|Adobe Support - ColdFusion Hot Fixes (ColdFusion 8 and 8.0.1)]] \\
====ColdFusion 9====
[[http://kb2.adobe.com/cps/529/cpsid_52967.html|Adobe TechNote - ColdFusion 9 : List of Hot fixes]] \\
======Troubleshooting======
=====Installation of the JT400 JDBC driver in ColdFusion 9 to access an AS/400=====
A 64-bit installation of ColdFusion 9 does not support 64-bit ODBC drivers ([[http://forums.adobe.com/thread/695275?start=0&tstart=0|source]]). \\
Installing the 64-bit iSeries Client Access to get the ODBC drivers is therefore useless. \\
To work around this you can revert to using 32-bit ColdFusion 9 and iSeries Access Client or you can install a JDBC driver for AS/400 in ColdFusion 9 by doing the following:
- Download the latest JT400 driver from [[http://jt400.sourceforge.net/|JTOpen]].
- Extract **jt400.jar** from the zip file to **\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\lib\** (for multiserver or J2EE configuration) or **%cf_root%/lib** (for server configuration only) on the server.
- Restart all ColdFusion 9 services or just the **Macromedia JRun CFusion Server** service for the multiserver or J2EE configuration.
- Open a browser, browse to http://servername/IDE/administrator and log in.
- Go to **Data & Services** -> **Data Sources**.
- Below **Add New Data Source**:
- Enter a name for Data Source Name.
- Select **other** as the driver.
- Click on **Add**.
- Enter a JDBC URL like jdbc:as400://server_name/database_name;prompt=false;
- Enter the following for **Driver Class**:com.ibm.as400.access.AS400JDBCDriver
- Enter **JT400** as **Driver Name**.
- Enter a username and password for the connection.
- Click on Submit
Sources: \\
[[http://coldfusion.sys-con.com/node/42109|ColdFusion Developer's Journal - Macromedia ColdFusion - MX to iSeries Demystified]] for the JDBC URL and Driver Class. \\
[[http://help.adobe.com/en_US/ColdFusion/9.0/Admin/WSc3ff6d0ea77859461172e0811cbf3639b1-7fe6.html|Configuring and Administering ColdFusion 9 - Data Source Management - Connecting to an external JDBC Type 4 data source]] for the correct location for jt400.jar. \\
[[http://forums.adobe.com/thread/695275?start=0&tstart=0|Adobe Forums > ColdFusion > ColdFusion Server Administration > 64-bit ColdFusion 9 ODBC drivers confusion? (architecture mismatch)]] to find out that the 64-bit ColdFusion 9 does not properly support 64-bit ODBC drivers. \\