Minify CSS not working!

Hi,

I can't get 'Minify CSS' to work.

I have installed APC and MemCached and added JUST this to config.php:

Code:
$config['cache']['backend'] = 'Memcached';
$config['cache']['backendOptions'] = array(
    'compression' => false,
    'servers' => array(
        array(
            // your memcached server IP /address
            'host' => 'localhost',
         
            // memcached port
            'port' => 11211,
        )
    )
);

I also tried flushing memory cache on my server but the CSS is still non-minified.

Please advice?

Best regards,
PM
 
The Minify CSS option is independent of the caching - you just should use the caching for speed.

Either way, the CSS is heavily cached on the client side. You need to hard refresh (ctrl+f5 usually) to see if it has taken effect. Or provide a URL and we can see.
 
Top Bottom