Fixed
Pinned fields
Click on the next to a field label to start pinning.
Details
Assignee
Brad WoodBrad WoodReporter
Brad WoodBrad WoodAffects versions
Fix versions
Priority
MajorComponents
Details
Details
Assignee
Brad Wood
Brad WoodReporter
Brad Wood
Brad WoodAffects versions
Fix versions
Priority
Components
Sentry
Sentry
Sentry
Created October 25, 2016 at 8:57 PM
Updated November 15, 2016 at 7:36 PM
Resolved October 25, 2016 at 8:57 PM
https://github.com/Ortus-Solutions/commandbox/pull/102
This will correct the paths in the flex-config.xml file that were invalid due to a bug that re-appended part of the path on every server start. (server still starts fine, but paths in this file keep growing and growing)
So when your flex-config.xml has stuff like this:
<global-css-url>C:\Users\user\.CommandBox/server/F072138B9E86DC43FD4DC1C70F3B5CAF-myviawest/adobe-10.0.21.300068C:\Users\user\.CommandBox/server/F072138B9E86DC43FD4DC1C70F3B5CAF-myviawest/adobe-10.0.21.300068C:\Users\user\.CommandBox/server/F072138B9E86DC43FD4DC1C70F3B5CAF-myviawest/adobe-10.0.21.300068C:\Users\user\.CommandBox/server/F072138B9E86DC43FD4DC1C70F3B5CAF-myviawest/adobe-10.0.21.300068</global-css-url>
upon server start, it will be updated to a valid path, like:
<global-css-url>C:\Users\user\.CommandBox/server/F072138B9E86DC43FD4DC1C70F3B5CAF-myviawest/adobe-10.0.21.300068/WEB-INF/cfform/global.css</global-css-url>
There are several places in the flex-config.xml file where paths were getting corrupt. This corrects them all.