site performance optimization for joomla #jwc13

77
@hans2103 @hans2103 @hans2103 #JWC13 Site Performance Optimization Site Performance Optimization Hans Kuijpers @hans2103 slideshare.net/hans2103

Upload: hans-kuijpers

Post on 06-Dec-2014

2.476 views

Category:

Technology


1 download

DESCRIPTION

It's easy to improve the speed of your Joomla website. Just follow the tips & tricks of this presentation about Site Performance Optimization. These are the slides used during the Joomla World Conference 2013 in Boston #jwc13

TRANSCRIPT

Page 1: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Site Performance Optimization

Hans Kuijpers @hans2103slideshare.net/hans2103

Page 2: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

presentation is based on default Joomla 3.1.x installation

with sample data

Page 3: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Page 4: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

connection to serveruse ping to measure

Page 5: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

ping msnippets.net

Page 6: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

ping joomla.org

from The Netherlands

Page 7: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

ping joomla.org

from Boston HMS

Page 8: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

conclusion different server means different

connection timeand

location of server matters

Page 9: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

HTML, PHP, etc. Database

CSS Images

JavaScript

website files

Page 10: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

tools for testing

Page 11: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

YSlow

Page 12: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

PageSpeed

Page 13: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

PageSpeed Insights

Page 14: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

GTMetrix

Page 15: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

pingdom

Page 16: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

404 - not found

use Inspect Element to find and solve

Page 17: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

find and solve broken links

Page 18: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Optimize and combine images

Page 19: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

http://creativebloq.com/design/image-compression-

tools-1132865

Page 20: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

imageoptim.com

Page 21: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

use Command line Interface to optimize images

Page 22: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Optimize your JPG’s with JpegOptim

$ find path/to/images/ -iname *.jpg -exec jpegoptim --strip-all -p {} \;

Page 23: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Optimize your PNG’s with OptiPNG

$ find path/to/images/ -iname *.png -exec optipng -o7 -preserve {} \;

Page 24: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

#!/bin/bash # convertImages.sh # Author: Peter Jaap Blaakmeer (elgentos.nl) # https://gist.github.com/peterjaap/7080989 NEWQUALITY=80 NEWSIZE=1000 DIRECTORY=media/catalog/product/ du -hs $DIRECTORY for f in $(find $DIRECTORY -type f); do WIDTH=`identify -format '%w' $f | tr -d "\r\n"`; if [ $WIDTH -gt $NEWSIZE ]; then SIZEBEFORE=`ls -lah $f | awk '{ print $5}'`; convert $f -resize $NEWSIZE -quality $NEWQUALITY $f; SIZEAFTER=`ls -lah $f | awk '{ print $5}'`; echo "$f has been converted - from ${SIZEBEFORE} to ${SIZEAFTER}"; fi done

Page 25: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

use sprite images

Page 26: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Page 27: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

reference to a sprite img

Page 28: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

reduction of 6 http requestsfrom 7 to 1

Page 29: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Google for: Retina Revolution

Page 30: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

check emptyfill

Page 31: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Page 32: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization1024px x 768px

Page 33: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization1024px x 768px

Page 34: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Minify, Combine & Compress Files

Page 35: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Page 36: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Page 37: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

1 css filecreated using less

Page 38: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

The example needs more http-requests.

Page 39: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Page 40: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

6 css files

Page 41: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

6 js files

Page 42: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization@hans2103 #JWC13 Site Performance Optimization

Page 43: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

http://www.yireo.com/software/joomla-extensions/scriptmerge

@hans2103 #JWC13 Site Performance Optimization

Page 44: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Before cache plugin

Page 45: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

2 css files

Page 46: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

1 js files

Page 47: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Gzip compression

Page 48: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

http://www.whatsmyip.org/ http-compression-test/

Page 49: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

change to YES

Page 50: Site Performance Optimization for Joomla #jwc13

@hans2103

@hans2103 #JWC13 Site Performance Optimization

# Compress output using mod_deflate <IfModule mod_deflate.c> AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript AddOutputFilterByType DEFLATE application/xml application/xhtml+xml application/rss+xml AddOutputFilterByType DEFLATE application/javascript application/x-javascript ! BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4\.0[678] no-gzip BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html ! SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.(?:pdf|doc)$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.(?:avi|mov|mp3|mp4|rm)$ no-gzip dont-vary </IfModule>

add to .htaccess

Page 51: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Page 52: Site Performance Optimization for Joomla #jwc13

@hans2103

@hans2103 #JWC13 Site Performance Optimization

Caching

is page in Joomla cache? yes ➙ serve cached page

no ➙ generate page

Page 53: Site Performance Optimization for Joomla #jwc13

@hans2103

@hans2103 #JWC13 Site Performance Optimization

use jotCache

Joomla cache is good jotCache is better.

exclude pages from cache

Page 54: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Page 55: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Page 56: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

http://www.jotcomponents.net/ web-programming/jotcache

Page 57: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

order last

my settings

Page 58: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

http://msnippets.net/index.php?option=com_content&

view=article&id=1&Itemid=12

Page 59: Site Performance Optimization for Joomla #jwc13

@hans2103

@hans2103 #JWC13 Site Performance Optimization

Optimize Browser Caching

Page 60: Site Performance Optimization for Joomla #jwc13

@hans2103

@hans2103 #JWC13 Site Performance Optimization

# Turn on Expires and set default to 0!ExpiresActive On!ExpiresDefault A0! !# Set up caching on media files for 1 year (forever?)!<filesMatch "\.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav)$">! ExpiresDefault A29030400! Header append Cache-Control "public"!</filesMatch>! !# Set up caching on media files for 1 week!<filesMatch "\.(gif|jpg|jpeg|png|swf)$">! ExpiresDefault A604800! Header append Cache-Control "public"!</filesMatch>! !# Set up 2 Hour caching on commonly updated files!<filesMatch "\.(xml|txt|html|js|css)$">! ExpiresDefault A7200! Header append Cache-Control "proxy-revalidate"!</filesMatch>! !# Force no caching for dynamic files!<filesMatch "\.(php|cgi|pl|htm)$">! ExpiresActive Off! Header set Cache-Control "private, no-cache, no-store, proxy-revalidate, no-transform"! Header set Pragma "no-cache"!</filesMatch>

add to .htaccess

mod_expires in combination with

mod_deflate I know my provider

installed both

Page 61: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Page 62: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

There are 3 static components without a far-future expiration date.

Page 63: Site Performance Optimization for Joomla #jwc13

@hans2103

@hans2103 #JWC13 Site Performance Optimization

# Turn on Expires and set default to 0!ExpiresActive On!ExpiresDefault A0! !# Set up caching on media files for 1 year (forever?)!<filesMatch "\.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav)$">! ExpiresDefault A29030400! Header append Cache-Control "public"!</filesMatch>! !# Set up caching on media files for 1 week!<filesMatch "\.(gif|jpg|jpeg|png|swf)$">! ExpiresDefault A604800! Header append Cache-Control "public"!</filesMatch>! !# Set up 2 Hour caching on commonly updated files!<filesMatch "\.(xml|txt|html|js|css)$">! ExpiresDefault A7200! Header append Cache-Control "proxy-revalidate"!</filesMatch>! !# Force no caching for dynamic files!<filesMatch "\.(php|cgi|pl|htm)$">! ExpiresActive Off! Header set Cache-Control "private, no-cache, no-store, proxy-revalidate, no-transform"! Header set Pragma "no-cache"!</filesMatch>

set this value to a week and YSlow will give you a higher score

add to .htaccess

Page 64: Site Performance Optimization for Joomla #jwc13

@hans2103

@hans2103 #JWC13 Site Performance Optimization

less is more

Page 65: Site Performance Optimization for Joomla #jwc13

@hans2103

@hans2103 #JWC13 Site Performance Optimization

remove unneeded modules

Page 66: Site Performance Optimization for Joomla #jwc13

@hans2103

@hans2103 #JWC13 Site Performance Optimization

Page 67: Site Performance Optimization for Joomla #jwc13

@hans2103

@hans2103 #JWC13 Site Performance Optimization

Page 68: Site Performance Optimization for Joomla #jwc13

@hans2103

@hans2103 #JWC13 Site Performance Optimization

uncomment non-used less files

Page 69: Site Performance Optimization for Joomla #jwc13

@hans2103

@hans2103 #JWC13 Site Performance Optimization

Do you really need mootools?

if not... remove it

using Mootools Enabler/Disabler

Page 70: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

https://github.com/phproberto/plg_sys_mootable

Page 71: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Page 72: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

set per menu item

Page 73: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

https://developers.google.com/speed/libraries/devguide

Page 74: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Page 75: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

Is a fast website important?

yes it is!

Page 76: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimization

have fun creating fast websites

Page 77: Site Performance Optimization for Joomla #jwc13

@hans2103@hans2103

@hans2103 #JWC13 Site Performance Optimizationhttp://www.flickr.com/photos/trasimac/1217071176

thank you for your time and have fun

http://slideshare.net/hans2103

hans2103

http://about.me/hans2103