Concrete 5 Running Slow
Permalink
Hello,
my site (http://www.thortechnology.co.uk) is running slow. When I was building locally it was fine and as soon as i've moved it to the domain it's been running slow.
Is there any way that I can speed up the website ?
Regards
my site (http://www.thortechnology.co.uk) is running slow. When I was building locally it was fine and as soon as i've moved it to the domain it's been running slow.
Is there any way that I can speed up the website ?
Regards
How do I upgrade the version of concrete 5 ?
http://www.concrete5.org/documentation/developers/5.7/installation/upgrading-concrete5
Looks like you need to add some stuff to your htaccess file. If you have access and modules installed add this:
Also use webpage test help: http://www.webpagetest.org/
<FilesMatch "\.(js|css|html|htm|php|xml)$"> SetOutputFilter DEFLATE </FilesMatch> <IfModule mod_headers.c> BrowserMatch MSIE ie Header set X-UA-Compatible "IE=Edge,chrome=1" env=ie </IfModule> <IfModule mod_expires.c> # Enable expirations ExpiresActive On ExpiresDefault "access plus 1 month" ExpiresByType image/x-icon "access plus 1 year" ExpiresByType image/gif "access plus 1 month" ExpiresByType image/png "access plus 1 month" ExpiresByType image/jpg "access plus 1 month"
Viewing 15 lines of 27 lines. View entire code block.
Also use webpage test help: http://www.webpagetest.org/
Seems like your server is missing some optimization. Using gzip compression and server + browser caching with expire headers (like Steevb suggested) would help a lot.
Another step might be image optimization, using "imageoptim" and "optipng" on the shell - if available.
Also a merge and minify of all those css and js files should help out, altough you shouldn't touch those unless you know what you're doing. Also convert any pngs without transparency to jpgs. Aditionally Concrete5 supports thumbnails and responsive images to serve images with the right dimension.
Another step might be image optimization, using "imageoptim" and "optipng" on the shell - if available.
Also a merge and minify of all those css and js files should help out, altough you shouldn't touch those unless you know what you're doing. Also convert any pngs without transparency to jpgs. Aditionally Concrete5 supports thumbnails and responsive images to serve images with the right dimension.
Check out pagespeed
https://developers.google.com/speed/pagespeed/insights/?url=http%3A%...
this can give some indication on where your site is going slow. My guess is your hosting package is on a slow server.