Copy link to clipboard
Copied
I recently installed CF 2023 and from the CF Admin console I chose the option to Download and Install the latest update (update 10). I noted that hotfix-010-330680.jar was downloaded to <cf_root>\bundles\updateinstallers\, but other than that, no install was kicked off. Tried the option 2 or 3 times.
So I decided to go the manual route (ColdFusion (2023 release) Update 10 (adobe.com)). Step 1, download the hotfix... simple. The part I question is steps 2 & 3 which state to download a file named hotfix-packages-cf2023-010-330680.zip, upzip it to a location, and then "Update "packagesurl" in cfusion/lib/neo_updates.xml of cfusion and all its child instances to point to <InstallerRepositoryUnzippedPath>/bundles/bundlesdependency.json present inside the downloaded folder." With <InstallerRepositoryUnzippedPath> being the path where the hotfix-packages-cf2023-010-330680.zip file was extracted. (NOTE - The online documentation is wrong, because the bundlesdependency.json file is in the root of wherever the zip file is extracted to. This is no "bundles" subfolder in the zip file)
While simple enough to follow, the process strikes me as somewhat contrived. Looking at what gets extracted from the packages file appears to largely be equivalent to the files that already exist at <cf_root>\bundles\ folder:
My questions are:
1) If following the instructions as written, should the "packagesurl" value in <cf_root>/cfusion/lib/neo_updates.xml be reverted afterwards?
2) Does anyone know if it is ok to take the contents of the hotfix-packages-cf2023-<...>.zip file and copy/overwrite to the <cf_root>\bundles\ folder?
3) Anything issue with ignoring steps 2 & 3 and just running <cf_root>\jre\bin\java.exe -jar hotfix-010-330680.jar?
Hi Jason,
Please try the following:
Please refer to the update article: https://helpx.adobe.com/coldfusion/kb/coldfusion-2023-update-10.html
Download the repro from: https://cfdownload.adobe.com/pub/adobe/coldfusion/2023/packages/hotfix-packages-cf2023-010-330680.zip
Extract the zip file and replace the bundles folder in \ColdFusion2023\bundles folder(Replace the entire folder).
Stop all the CF services, open the command prompt as admin and navigate to ColdFusion2023\jre\bin folder.
ColdFusion2023\
Copy link to clipboard
Copied
Hi Jason,
Please try the following:
Please refer to the update article: https://helpx.adobe.com/coldfusion/kb/coldfusion-2023-update-10.html
Download the repro from: https://cfdownload.adobe.com/pub/adobe/coldfusion/2023/packages/hotfix-packages-cf2023-010-330680.zi...
Extract the zip file and replace the bundles folder in \ColdFusion2023\bundles folder(Replace the entire folder).
Stop all the CF services, open the command prompt as admin and navigate to ColdFusion2023\jre\bin folder.
ColdFusion2023\jre\bin>java -Djdk.util.zip.disableZip64ExtraFieldValidation=true -jar C:\ColdFusion2023\bundles\updateinstallers\hotfix-010-330680.jar
Follow the on-screen instructions and complete the installation. Open the task manager, kill all the CF processes, and restart the CF from the service management console.
Go to ColdFusion2023\cfusion\runtime\bin location, run the wsconfig tool as admin, and upgrade the connector.
NOTE: Please take a snapshot of the server before making any changes.
Thanks,
Abhishek
Copy link to clipboard
Copied
Thanks Abhishek.
Your response clarified what I suspected. I have followed your instructions and the latest update (update 10) applied without any issue.
Jason