Cacheable resources

Hi
Checking my speed using gtmetrix.com they report the following “The following cacheable resources have a short freshness lifetime. Specify an expiration at least one week in the future for the following resources:” and then a list of which this is a sample
http://www.bridgeenterprises.co.uk/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=4.4.1 (4 hours)http://www.bridgeenterprises.co.uk/wp-content/plugins/contact-form-7/includes/js/jquery.form.min.js?ver=3.51.0-2014.06.20 (4 hours)http://www.bridgeenterprises.co.uk/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=4.4.1 (4 hours)http://www.bridgeenterprises.co.uk/wp-content/plugins/organization-schema-widget/css/style.css?ver=20131110 (4 hours)http://www.bridgeenterprises.co.uk/wp-content/plugins/quick-pagepost-redirect-plugin/js/qppr_frontend_script.min.js?ver=5.1.7 (4 hours)http://www.bridgeenterprises.co.uk/wp-content/plugins/traffic_player_pro/tp_public.css (4 hours)http://www.bridgeenterprises.co.uk/wp-content/plugins/traffic_player_pro/tp_public.js (4 hours)http://www.bridgeenterprises.co.uk/wp-content/themes/mh_coperate/js/scripts.js?ver=4.4.2 (4 hours)
Is this not controlled by Cometcache?
If so how can I up the times?

No, that’s talking about browser caching. Comet Cache handles server-side caching.

What you need to do is add something to your site’s .htaccess file. I suggest this:

# Browser Caching
FileETag MTime Size

<IfModule expires_module>
    ExpiresActive on
    ExpiresDefault "access plus 1 week"
</IfModule>