Compressor
Compressor copied to clipboard
Craft CMS plugin to automatically combine, minify, and cache-break your CSS and JS resources.
Plugin doesn't work. A cache folder has been created, with required permissions but the plugin doesn't combine files. E.g, my template code: `{{ craft.compressor.css([ '/css/normalize.css', '/css/main.css' ]) }}` Outputs: ``
When i use a Multilanguage / Multienviroment Setup like this: ``` return array( '*' => array( 'devMode' => false, 'limitAutoSlugsToAscii' => true, 'convertFilenamesToAscii' => true, 'enableTemplateCaching' => false, 'defaultSearchTermOptions' =>...
Tell me why it is not working the plugin? The cache folder (permissions - 755) created but files is not present? Connect to: ` {{ craft.compressor.css([ '/css/main.css', '/css/patch.css' ]) }}`...
Prescribed in the template: {{ craft.compressor.css([ '/css/main.css', '/css/normalize.min.css' ]) }} The folder cache is created but compression not working, cache folder is empty. Please tell me how to fix it?...
Could you include a license file or note the license in the readme?
Hey man, awesome plugin. Works pretty good. Few issues; document_root should not use $_SERVER[document_root], this breaks when you're setting up multiple environments (dev, staging, production). We need to find a...
I'm not sure if you want this or not, but it's useful to me so thought I'd offer it up.
Great work. Loving the plugin. Just a few quick suggestions a) In dev mode, still cache the files individually with unique name, or add a timestamp as an argument on...