PlanetMaster
Member
Hi,
 
I can't get 'Minify CSS' to work.
 
I have installed APC and MemCached and added JUST this to config.php:
 
	
	
	
		
 
I also tried flushing memory cache on my server but the CSS is still non-minified.
 
Please advice?
 
Best regards,
PM
				
			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