I am using yui-compressor.jar to contact all my css files together. This works fine on all browsers except IE 9
This is how I am contacting:
exec ('cat '.implode($css_files, ' ').' | java -jar yuicompressor.jar --type css -o ../css/all.css');
What would I have to look for to figure out why this is happening. There must be an error in a css file somewhere, but I don't know what to look for.
This is NOT happen in IE 10, 11 or any other browser.