SlideShare a Scribd company logo
@hans2103
Joomla World Conference 2012 Site Performance Optimization
Joomla Site Speed Optimization
@hans2103
Hans Kuijpers
@hans2103
Joomla World Conference 2012 Site Performance Optimization
@hans2103
Joomla World Conference 2012 Site Performance Optimization
Speed matters!
@hans2103
Joomla World Conference 2012 Site Performance Optimization
+500ms➙-20%traffic
@ Google
+100ms➙-1%sales
@ Amazon
@hans2103
Joomla World Conference 2012 Site Performance Optimizationhttp://www.websiteoptimization.com/speed/tweak/average-web-page/
Websites are bigger
@hans2103
Joomla World Conference 2012 Site Performance Optimization
Google for:
Gomez Web Speed Survey
@hans2103
Joomla World Conference 2012 Site Performance Optimization
Now what?
• Measure
• Learn
• Optimize
• Iterate
@hans2103
Joomla World Conference 2012 Site Performance Optimization
and again and again
@hans2103
Joomla World Conference 2012 Site Performance Optimization
Default Joomla 2.5.x installation
with sample data
@hans2103
Joomla World Conference 2012 Site Performance Optimization
http://tools.pingdom.com/fpt/
@hans2103
Joomla World Conference 2012 Site Performance Optimization
@hans2103
Joomla World Conference 2012 Site Performance Optimization
http://developer.yahoo.com/
performance/rules.html
@hans2103
Joomla World Conference 2012 Site Performance Optimization
http://yslow.org
@hans2103
Joomla World Conference 2012 Site Performance Optimization
@hans2103
Joomla World Conference 2012 Site Performance Optimization
https://developers.google.com/speed/
docs/insights/rules
@hans2103
Joomla World Conference 2012 Site Performance Optimization
@hans2103
Joomla World Conference 2012 Site Performance Optimization
@hans2103
Joomla World Conference 2012 Site Performance Optimization
http://gtmetrix.com
@hans2103
Joomla World Conference 2012 Site Performance Optimization
@hans2103
Joomla World Conference 2012 Site Performance Optimization
@hans2103
Joomla World Conference 2012 Site Performance Optimization
@hans2103
Joomla World Conference 2012 Site Performance Optimization
things to do first
• reduce http request
• use gzip compression
• use caching
@hans2103
Joomla World Conference 2012 Site Performance Optimization
browser server
HTTP requests
@hans2103
Joomla World Conference 2012 Site Performance Optimization
@hans2103
Joomla World Conference 2012 Site Performance Optimization
@hans2103
Joomla World Conference 2012 Site Performance Optimization
6 css files
@hans2103
Joomla World Conference 2012 Site Performance Optimization
6 js files
@hans2103
Joomla World Conference 2012 Site Performance Optimization
http://yireo.com/scriptmerge
@hans2103
Joomla World Conference 2012 Site Performance Optimization
Before cache plugin
@hans2103
Joomla World Conference 2012 Site Performance Optimization
2 css files
@hans2103
Joomla World Conference 2012 Site Performance Optimization
1 js files
@hans2103
Joomla World Conference 2012 Site Performance Optimization
reduced with 11
@hans2103
Joomla World Conference 2012 Site Performance Optimization
@hans2103
Joomla World Conference 2012 Site Performance Optimization
still too low
@hans2103
Joomla World Conference 2012 Site Performance Optimization
Gzip compression
server
serverbrowser
browser
1 2
34
zip
browser
5
unzip
@hans2103
Joomla World Conference 2012 Site Performance Optimization
http://www.whatsmyip.org/
http-compression-test/
@hans2103
Joomla World Conference 2012 Site Performance Optimization
change toYES
@hans2103
Joomla World Conference 2012 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
@hans2103
Joomla World Conference 2012 Site Performance Optimization
@hans2103
Joomla World Conference 2012 Site Performance Optimization
@hans2103
Joomla World Conference 2012 Site Performance Optimization
Caching
is page in Joomla cache?
• yes ➙ serve cached page
• no ➙ generate page
Joomla cache is good
jotCache is better.
exclude pages from cache
@hans2103
Joomla World Conference 2012 Site Performance Optimization
http://www.jotcomponents.net/
web-programming/jotcache
@hans2103
Joomla World Conference 2012 Site Performance Optimization
order last
my settings
@hans2103
Joomla World Conference 2012 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
@hans2103
Joomla World Conference 2012 Site Performance Optimization
@hans2103
Joomla World Conference 2012 Site Performance Optimization
There are 3 static components
without a far-future expiration date.
@hans2103
Joomla World Conference 2012 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 andYSlow will
give you a higher score
add to .htaccess
@hans2103
Joomla World Conference 2012 Site Performance Optimization
less is more...
• combine css images in sprites
• css3 instead of images
• optimize images
• remove unwanted css files
• remove unwanted js files
• show less ...
@hans2103
Joomla World Conference 2012 Site Performance Optimization
@hans2103
Joomla World Conference 2012 Site Performance Optimization
@hans2103
Joomla World Conference 2012 Site Performance Optimization
reference to a sprite img
@hans2103
Joomla World Conference 2012 Site Performance Optimization
reduction of 6 http requests
from 7 to 1
@hans2103
Joomla World Conference 2012 Site Performance Optimization
button as css3 instead of image
@hans2103
Joomla World Conference 2012 Site Performance Optimization
@hans2103
Joomla World Conference 2012 Site Performance Optimization
http://www.colorzilla.com/
gradient-editor/
@hans2103
Joomla World Conference 2012 Site Performance Optimization
http://css3generator.com
@hans2103
Joomla World Conference 2012 Site Performance Optimization
• original image: 2.4MB
• png-24: 387.9 KB
• gif 256 colors: 164.3KB
• png-8 256 colors: 139KB
• jpg 60 quality: 99.46 KB
choose wisely
@hans2103
Joomla World Conference 2012 Site Performance Optimization
Do you really need
mootools?
if not... remove it
using Mootools
Enabler/Disabler
@hans2103
Joomla World Conference 2012 Site Performance Optimization
https://github.com/phproberto/
plg_sys_mootable
@hans2103
Joomla World Conference 2012 Site Performance Optimization
@hans2103
Joomla World Conference 2012 Site Performance Optimization
set per menu item
@hans2103
Joomla World Conference 2012 Site Performance Optimization
and again and again
@hans2103
Joomla World Conference 2012 Site Performance Optimization
Is a fast website
important?
yes it is!
@hans2103
Joomla World Conference 2012 Site Performance Optimization
are there more
things to improve?
yes there are... tons of books and
sites are written about it.
go out find them and enjoy
improving your site speed.
@hans2103
Joomla World Conference 2012 Site Performance Optimization
one more thing
• just seen at the presentation by
Eli Aschkenasy
@hans2103
Joomla World Conference 2012 Site Performance Optimization
@hans2103
Joomla World Conference 2012 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
@hans2103
Joomla World Conference 2012 Site Performance Optimization

More Related Content

PDF
Is your website's speed letting you down?
PPTX
Performace optimization (increase website speed)
PDF
Website speed optimization guide for technically advanced webmasters
PPT
Website speed optimization techniques
PDF
Site Performance Optimization for Joomla #jwc13
PDF
Need for Speed: Website Edition – Website Optimization Tools and Techniques P...
PPTX
PDF
Beyond Resizing: The Image Performance Checklist
Is your website's speed letting you down?
Performace optimization (increase website speed)
Website speed optimization guide for technically advanced webmasters
Website speed optimization techniques
Site Performance Optimization for Joomla #jwc13
Need for Speed: Website Edition – Website Optimization Tools and Techniques P...
Beyond Resizing: The Image Performance Checklist

What's hot (19)

PPTX
WordPress SEO Site Optimization Strategies & Techniques
PDF
Performance as User Experience [AEADC 2018]
POTX
Its timetostopstalling limerick
PPTX
POTX
Mobile App Performance, Dublin MOT
PDF
Better Performance === Greater Accessibility [Inclusive Design 24 2018]
PPTX
Edi react fastandbeautiful
PPTX
Modelling Web Performance Optimization - FFSUx
PDF
JSP Web Technology Application on Road Transport Services
PPTX
WordPress Performance 101
PDF
Optimizing WordPress Performance
PPTX
Life in the Fast Lane: Speed, Usability & Search Engine Optimization
PPTX
Front-End Web Performance Optimization by BucketSoft
PPTX
Day of code
PPTX
Imagesandvideo stockholm webmeetup
PDF
Happy Browser, Happy User! NY Web Performance Meetup 9/20/19
PDF
DevFest Makerere html5 presentation by caesar mukama
PPTX
Imagesandvideo tallinn
WordPress SEO Site Optimization Strategies & Techniques
Performance as User Experience [AEADC 2018]
Its timetostopstalling limerick
Mobile App Performance, Dublin MOT
Better Performance === Greater Accessibility [Inclusive Design 24 2018]
Edi react fastandbeautiful
Modelling Web Performance Optimization - FFSUx
JSP Web Technology Application on Road Transport Services
WordPress Performance 101
Optimizing WordPress Performance
Life in the Fast Lane: Speed, Usability & Search Engine Optimization
Front-End Web Performance Optimization by BucketSoft
Day of code
Imagesandvideo stockholm webmeetup
Happy Browser, Happy User! NY Web Performance Meetup 9/20/19
DevFest Makerere html5 presentation by caesar mukama
Imagesandvideo tallinn
Ad

Similar to Site Speed Optimisation for JWC2012 (20)

PPTX
SearchLove San Diego 2018 | Mat Clayton | Site Speed for Digital Marketers
PPTX
SEO 101 - Google Page Speed Insights Explained
PDF
The 5 most common reasons for a slow WordPress site and how to fix them – ext...
KEY
Site Performance Optimization - Joomla!
PPTX
Speed up Your Joomla Site for Ultimate Performance
PDF
Increase Your WordPress Website's Google PageSpeed Score
PPTX
Hardcode SEO
KEY
Optimize wordpress
DOCX
How to Improve Magento Performance | Tips to Speed up Magento eCommerce Site/...
PPTX
The Need for Speed - SMX Sydney 2013
PDF
Responsive design in plone
PPTX
Optimization 2020 | Using Edge SEO For Technical Issues ft. Dan Taylor
PDF
The Need for Speed (5 Performance Optimization Tipps) - brightonSEO 2014
PDF
How to optimize your Magento store
PPTX
Minimize website page loading time – 20+ advanced SEO tips
PDF
Site Speed Optimization for Elementor Websites
PPT
Make Drupal Run Fast - increase page load speed
PPTX
Setup and run wordpress: 201
PDF
Static site gen talk
PPTX
SearchLove San Diego 2018 | Mat Clayton | Site Speed for Digital Marketers
SEO 101 - Google Page Speed Insights Explained
The 5 most common reasons for a slow WordPress site and how to fix them – ext...
Site Performance Optimization - Joomla!
Speed up Your Joomla Site for Ultimate Performance
Increase Your WordPress Website's Google PageSpeed Score
Hardcode SEO
Optimize wordpress
How to Improve Magento Performance | Tips to Speed up Magento eCommerce Site/...
The Need for Speed - SMX Sydney 2013
Responsive design in plone
Optimization 2020 | Using Edge SEO For Technical Issues ft. Dan Taylor
The Need for Speed (5 Performance Optimization Tipps) - brightonSEO 2014
How to optimize your Magento store
Minimize website page loading time – 20+ advanced SEO tips
Site Speed Optimization for Elementor Websites
Make Drupal Run Fast - increase page load speed
Setup and run wordpress: 201
Static site gen talk
Ad

More from Hans Kuijpers (20)

PDF
JD19NL - Joomla Template Overrides, Alternate Layouts en JLayouts
PDF
RSForm!pro jug073 maart 2019
PDF
Template overrides in joomla jug073 februari 2019
PDF
Joomla Website optimaliseren - jug073 augustus 2018
PDF
Joomla Custom Fields - the next level
PDF
Best Practice: Joomla! templating
PDF
JD17NL Joomla! Overrides and alternate layouts
PDF
Maak je website geschikt voor mobiel
PDF
Bootstrap 3 in Joomla!
PDF
Google Webmasters Tools
PDF
Google Tag Manager #jd14nl
PDF
Social Share Buttons - #jd14nl
PDF
Rich Snippets in Joomla - #JUG073
PDF
Rich Snippets in Magento product page - #MUG020
PDF
Rich Snippets in Magento product page
PDF
CSS with LESS for #jd13nl
PDF
Form2content case for #JUG073
PDF
Magento Theme - set the basics right - mm12nl
PDF
Google analytics - jd12nl met Byte Internet
PDF
Joomla extensies kiezen-jd12nl
JD19NL - Joomla Template Overrides, Alternate Layouts en JLayouts
RSForm!pro jug073 maart 2019
Template overrides in joomla jug073 februari 2019
Joomla Website optimaliseren - jug073 augustus 2018
Joomla Custom Fields - the next level
Best Practice: Joomla! templating
JD17NL Joomla! Overrides and alternate layouts
Maak je website geschikt voor mobiel
Bootstrap 3 in Joomla!
Google Webmasters Tools
Google Tag Manager #jd14nl
Social Share Buttons - #jd14nl
Rich Snippets in Joomla - #JUG073
Rich Snippets in Magento product page - #MUG020
Rich Snippets in Magento product page
CSS with LESS for #jd13nl
Form2content case for #JUG073
Magento Theme - set the basics right - mm12nl
Google analytics - jd12nl met Byte Internet
Joomla extensies kiezen-jd12nl

Recently uploaded (20)

PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PPT
Teaching material agriculture food technology
PDF
Machine learning based COVID-19 study performance prediction
PPTX
sap open course for s4hana steps from ECC to s4
PDF
Empathic Computing: Creating Shared Understanding
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Electronic commerce courselecture one. Pdf
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Teaching material agriculture food technology
Machine learning based COVID-19 study performance prediction
sap open course for s4hana steps from ECC to s4
Empathic Computing: Creating Shared Understanding
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Diabetes mellitus diagnosis method based random forest with bat algorithm
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Electronic commerce courselecture one. Pdf
Understanding_Digital_Forensics_Presentation.pptx
Encapsulation_ Review paper, used for researhc scholars
Programs and apps: productivity, graphics, security and other tools
Spectral efficient network and resource selection model in 5G networks
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
MYSQL Presentation for SQL database connectivity
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton

Site Speed Optimisation for JWC2012