Has anyone here used Mark Story's Asset Compress (https://github.com/markstory/asset_compress/) plugin ?
I've followed the installation instructions to the last bit and have the plugin up and running - but it simply won't generate the combined JS files to the specified cache (cache_js) folder.
I'm using Cake 1.3 and v0.2 of AssetCompress (the latest available download from github).
- The plugin has been placed in the app/plugins/asset_compress folder
- Cache folders - cache_js and cache_css created in WEBROOT
- JsMin and CssMin filters downloaded and added to app/vendors/JsMin and app/vendors/CssMin respectively
- Config file setup to point to the cache folders and filters
- Routes configured as per requirements
- Debug mode set to 1
My config.ini:
[Javascript]
searchPaths[] = WEBROOT/js/
searchPaths[] = WEBROOT/js/jquery/
searchPaths[] = WEBROOT/js/jquery/plugins/
stripComments = true
cacheFilePath = WEBROOT/cache_js/
cacheFiles = false
filters[] = JsMin
[Css]
searchPaths[] = WEBROOT/css/
stripComments = true
cacheFilePath = WEBROOT/cache_css/
cacheFiles = false
filters[] = CssMin
Still no output in the cache folders.
Any ideas why ?
Thanks, m^e