I am working on migrating a 6.2.8 site from CF8/Win2K3/IIS6 to CF10/Win2k12/IIS8
I seem to have things mostly working except for the caching of css.
I have something like the following:
<skin:loadCSS id="CSCDCSS-Jquery" basehref="/js/jquery" append="" bCombine="true" lfiles="/colorbox/colorbox.css,/jquery-ui/jquery-ui-1.8.21.custom.css"></skin:loadCSS>
<skin:loadCSS id="CSCDCSS-bootstrap" basehref="/_assets/bootstrap/3-1-1/css" append="" bCombine="false" lfiles="bootstrap.min.css,bootstrap-theme.min.css"></skin:loadCSS>
<skin:loadCSS id="CSCDCSS-Common" basehref="/css" append="" bCombine="true" lfiles="cmicro.css"></skin:loadCSS>
When i view source I see:
<link rel="stylesheet" id="stylesheet-CSCDCSS-Jquery" type="text/css" href="/cache/CSCDCSS-Jquery-DFABC69F31D4BC52F6AC651497C736D7.css" media="all" >
<link rel="stylesheet" type="text/css" href="/_assets/bootstrap/3-1-1/css/bootstrap.min.css" media="all" >
<link rel="stylesheet" type="text/css" href="/_assets/bootstrap/3-1-1/css/bootstrap-theme.min.css" media="all"
<link rel="stylesheet" id="stylesheet-CSCDCSS-Common" type="text/css" href="/cache/CSCDCSS-Common-DFABC69F31D4BC52F6AC651497C736D7.css" media="all" >
The problem is, when i view the source of the css files, CSCDCCSS-Jquery and CSCDSSS-Common files are the same (CSCDCSS-Common is showing the same combined css file as the CSCDJquery file and not the codethat should be in cmicro.css).
thoughts?