SlideShare ist ein Scribd-Unternehmen logo
1 von 39
zeropointdevelopment.com for WordPress Sydney
Wil Brown
@DeveloperWil
Make image file sizes as small as possible before
uploading to your website.
Image file size largely depends on width x height
– Remove embedded data: EXIF, aperture, ISO,
geolocation
– Quality: JPG (max, high, medium, low)
@DeveloperWil #wpsyd
1
Image Squishing Tools
– Kraken.io – web-based image optimiser. Pricing
plans increase for larger amounts of data.
– TinyPNG – free web-based image optimiser for JPG
and PNG files.
– PNGGauntlet – free Windows desktop app for
optimising images.
@DeveloperWil #wpsyd
1
Use srcset to show different image sizes to
different screen sizes.
<img src="small.jpg" srcset="medium.jpg 1000w, large.jpg 2000w">
With srcset, the browser does the work of figuring
out which image is best.
@DeveloperWil #wpsyd
1
Themes can contain 100’s of CSS and JS files.
– In HTTP v1 they all load asynchronously (after each
other)
– During development we need these files to be
readable
– Readable files contain lots of white space and
comments
– File sizes can be large
@DeveloperWil #wpsyd
2
Minification removes white spaces and comments
to shrink the file size.
@DeveloperWil #wpsyd
2
Original “style.css”:
//**** Colour CSS ***//
.a{
color: blue;
}
.a:hover{
color: orange;
}
Becomes “style.css.min”:
.a{color:blue;}.a:hover{color:orange;}
Non-developers:
– Auptomize plugin
Developers:
– Research running a task runner called Gulp
– Integrate into your development environment
– Real-time minification to *.css.min
– Enqueue only *.css.min files
@DeveloperWil #wpsyd
2
“Speed up” page rendering by moving JavaScript
files into the footer area.
Browser loads page HTML and CSS, displays on
browser, then starts to load JS scripts
Faster page = Google likes
@DeveloperWil #wpsyd
3
Non-developers:
– Scripts to Footer plugin
Developers:
– Use wp_enqueue_script() function
– Set last parameter bool $in_footer = true
@DeveloperWil #wpsyd
3
@DeveloperWil #wpsyd
4
Chrome 62 shows http: URLs as “Not secure”
Chrome 70 shows red warning on HTTP forms
All forms, not only cart checkout and payment
forms need to be secured by HTTPS.
As of 2018 HTTPS is a significant Google ranking
signal.
Secure sites rank higher than similar non-secure
sites.
@DeveloperWil #wpsyd
4
Use Let’s Encrypt link on cPanel
Free DV SSL certificate with wildcards.
DV, OV & EV Certificates explained. EV Certs dead!
@DeveloperWil #wpsyd
4
Avoid Google finding broken links after your site
launch.
– Prevents search bots indexing your entire site
– Affects your ranking position
Do not install the Broken Link Checker plugin.
– Not maintained +2 years
– Maxes-out server RAM and CPU
– Slows down your server
@DeveloperWil #wpsyd
5
Use a broken link checking service instead.
– Brokenlinkcheck.com – web service.
Limited link depth but will cover most websites.
– Crawly – free and paid services.
– Google Analytics – Behaviour > Site Content > All
Pages and search for your 404.php page.
@DeveloperWil #wpsyd
5
Skip this step if launching a brand new site.
If you are moving sites, domains, pages and post
around you really need to be implementing
redirection so that you don’t lose existing SEO
traffic.
@DeveloperWil #wpsyd
6
Non-developers:
– Yoast SEO Premium – The Premium upgrade is good
for redirections and lots more SEO stuff
– Redirection plugin
Developers and System Admins
– Apache web server: add rewrites to .htaccess file
– Nginx: add rewrite statements to location server
block
@DeveloperWil #wpsyd
6
Site icons, called Favicons play an important part
in branding.
Extensively used on mobiles and tables for
bookmarking sites and pages
@DeveloperWil #wpsyd
7
Use an on-line generator:
– favicon.cc
– favicongenerator
– iconifer – this also generates Apple Icons
Download as a zip file and unpack in the
WordPress root folder.
@DeveloperWil #wpsyd
7
On-page SEO is crucial to get ranked properly
Google, Facebook and Twitter snippet previews
@DeveloperWil #wpsyd
8
In-depth content analysis
@DeveloperWil #wpsyd
8
• Target keyphrase
• In-depth content readability analysis
• Suggested internal posts to link to
• Change snippet appearance for Facebook and
Twitter (image, title & description)
• Site-map generation, + lots more
Read my step-by-step guide to setting up the Yoast
SEO plugin.
@DeveloperWil #wpsyd
8
Security is key to maintaining your website
authority, brand and customer confidence and
loyalty.
WordPress’ popularity has made it a BIG target for
hackers.
Install Wordfence before you launch!
@DeveloperWil #wpsyd
9
Installing a firewall plugin is a great first step.
Website security is more than just installing a
firewall plugin.
@DeveloperWil #wpsyd
10
• Social Engineering
• Usernames & Passwords
• Unix File Permissions
• WP File & Folder Perms
• WP Config Files
• Server Malware
• Updating WordPress
• Automatic WP Updates
• Avoid “Free” Paid Themes
• Malware in Themes
• Malware in Plugins
• Tim Thumb Script still lives
• SSL Certificates
• Secure WP Dashboard
• Software Firewalls
• Limit Login Attempts
• WordPress Backups
• 2FA Security Login
• Moving wp-content Folder
• Prevent Script Injections
• Secure wp-admin folder
• .... +more
@DeveloperWil #wpsyd
10
Watch my WordPress Security Best Practices 2017
video.
@DeveloperWil #wpsyd
10
Make your site load super fast
@DeveloperWil #wpsyd
11
I recommend using W3 Total Cache (free)
Works especially well with Nginx servers. UI sucks.
Remember to exclude dynamic pages such as
checkouts, member dashboards and payment
forms.
You can also try WP Rocket (paid $49USD/year)
“Recognized as the most powerful caching plugin by WordPress experts”
@DeveloperWil #wpsyd
11
Want to double up on speed?
Run your site through the Cloudflare CDN (icon on
cPanel)
A Content Delivery Network is a kind of global
caching system.
They keep fragments of your visited website on
servers dotted around the planet.
@DeveloperWil #wpsyd
11
You’d be bonkers mad if you didn’t sign up a site to
use Google Analytics before launch.
– Free and provides heaps of data on website data and
content being consumed
One of the best plugins to use with Google
Analytics is MonsterInsights.
– Brings GA overview data to your WP dashboard
– adds the GA JavaScript code so you don’t have to
@DeveloperWil #wpsyd
12
@DeveloperWil #wpsyd
12
You need to be able to restore a site quickly if
there are any problems.
Issues can result from updating badly developed
plugins, PHP version incompatibilities, hacking and
a myriad of other stuff.
Having backups are hand is uber critical.
@DeveloperWil #wpsyd
13
I recommend using VaultPress (paid)
– $5USD/month :daily backups, 30-day retention
– $15USD/month :real-time backups, unlimited retention
Other backup plugins:
– XCloner – free, backup to Amazon S3, sFTP
Also has a server cron script (WP Cron sucks)
– Backup Buddy – was never 100% reliable for
– BackWPUp – Backup to Amazon S3, Dropbox, FTP
and more.
@DeveloperWil #wpsyd
13
Do testing before launching a website!
What to test?
• Form submissions – did you get the email notification? Was the
confirmation message/redirection OK?
• Button links – do they go to the correct place?
• Email addresses – are the obfuscated and do they link to the
correct mailto: address?
• Navigation links – do they work OK? Are all your navigation
menus responsive?
@DeveloperWil #wpsyd
14
• Sign-ups – do your sign-up add the correct details to the correct
mailing list?
• Payments – is your checkout working? Is the money arriving in the
bank? Are they the correct prices?
• Registrations – are they working? Does the user get a
notification? Can the login?
• Dashboards – what can the logged in user see? Is it correct?
• Permissions/User Roles – can the correct level of user see the
correct stuff?
• Comments – are they working? Catching spam? Moderation
working?
• Console errors – are there any errors in Chrome console? 404 can’t
load resource? JavaScript errors?
@DeveloperWil #wpsyd
14
1. Optimise Images
2. Minify CSS and JS Files
3. Load JS Files in Footer
4. Install SSL Certificate
5. Check Broken Links
6. Set Up Redirections
7. Favicons & Apple Icons
@DeveloperWil #wpsyd
8. Set Up Yoast SEO
9. Install Wordfence
10. Secure the Website
11. Set Up Caching & CDN
12. Set Up Google Analytics
13. Set Up and Test Backups
14. Run Site Tests
@DeveloperWil #wpsyd
You can read my accompanying blog article that
goes into more depth in each of these areas.
Download PDF and MS Word Checklist
Resources
https://rebrand.ly/launching-website-33327
[Front Cover] zeropointdevelopment.com
[10] PN Melbourne pn.com.au
[12] cpanel.com
[14] google.com
[19,20] zeropointdevelopment.com
[25] zeropointdevelopment.com
[26] giphy.com
[30] monsterinsights.com
[Back Cover] zeropointdevelopment.com
@DeveloperWil #wpsyd
WordPress Consultant & Developer
Plugins, APIs, Security, eCommerce
Organiser WPSyd & WordCamp Sydney
@DeveloperWil #wpsyd
zeropointdevelopment.com
linkedin.com/in/developerwil
@DeveloperWil
♥ Pizza & Craft Beer
@DeveloperWil #wpsyd
@DeveloperWil

Weitere ähnliche Inhalte

Was ist angesagt?

How to Create WordPress Website in Easy Steps
How to Create WordPress Website in Easy StepsHow to Create WordPress Website in Easy Steps
How to Create WordPress Website in Easy StepsSingsys Pte Ltd
 
The road to professional web development
The road to professional web developmentThe road to professional web development
The road to professional web developmentChristian Heilmann
 
Automating Google Lighthouse
Automating Google LighthouseAutomating Google Lighthouse
Automating Google LighthouseHamlet Batista
 
WordPress Website Creation Training Course Slides
WordPress Website Creation Training Course SlidesWordPress Website Creation Training Course Slides
WordPress Website Creation Training Course SlidesEquinet Academy
 
Best Friend || Worst Enemy: WordPress Multisite
Best Friend || Worst Enemy: WordPress MultisiteBest Friend || Worst Enemy: WordPress Multisite
Best Friend || Worst Enemy: WordPress MultisiteTaylor McCaslin
 
Getting started with WordPress development
Getting started with WordPress developmentGetting started with WordPress development
Getting started with WordPress developmentSteve Mortiboy
 
Wordpress Plugin Development Short Tutorial
Wordpress Plugin Development Short TutorialWordpress Plugin Development Short Tutorial
Wordpress Plugin Development Short TutorialChristos Zigkolis
 
The Need for Speed (5 Performance Optimization Tipps) - brightonSEO 2014
The Need for Speed (5 Performance Optimization Tipps) - brightonSEO 2014The Need for Speed (5 Performance Optimization Tipps) - brightonSEO 2014
The Need for Speed (5 Performance Optimization Tipps) - brightonSEO 2014Bastian Grimm
 
Increase Your WordPress Website's Google PageSpeed Score
Increase Your WordPress Website's Google PageSpeed ScoreIncrease Your WordPress Website's Google PageSpeed Score
Increase Your WordPress Website's Google PageSpeed ScoreBrainspire Solutions
 
Alice Phieu - WordPress For Beginners
Alice Phieu - WordPress For BeginnersAlice Phieu - WordPress For Beginners
Alice Phieu - WordPress For BeginnersAlice Phieu
 
Mobile App Performance, Dublin MOT
Mobile App Performance, Dublin MOTMobile App Performance, Dublin MOT
Mobile App Performance, Dublin MOTDoug Sillars
 
SynapseIndia wordpress installation training module
SynapseIndia wordpress installation training moduleSynapseIndia wordpress installation training module
SynapseIndia wordpress installation training moduleSynapseIndia
 
WordPress what is Wordpress
WordPress what is WordpressWordPress what is Wordpress
WordPress what is WordpressShahid Husain
 
Please, dont touch the slow parts v.3.6 @webtechcon
Please, dont touch the slow parts v.3.6 @webtechconPlease, dont touch the slow parts v.3.6 @webtechcon
Please, dont touch the slow parts v.3.6 @webtechconFrancesco Fullone
 
Using composer with WordPress
Using composer with WordPressUsing composer with WordPress
Using composer with WordPressMicah Wood
 

Was ist angesagt? (20)

How to Create WordPress Website in Easy Steps
How to Create WordPress Website in Easy StepsHow to Create WordPress Website in Easy Steps
How to Create WordPress Website in Easy Steps
 
The road to professional web development
The road to professional web developmentThe road to professional web development
The road to professional web development
 
High-Speed HTML5
High-Speed HTML5High-Speed HTML5
High-Speed HTML5
 
Automating Google Lighthouse
Automating Google LighthouseAutomating Google Lighthouse
Automating Google Lighthouse
 
WordPress Website Creation Training Course Slides
WordPress Website Creation Training Course SlidesWordPress Website Creation Training Course Slides
WordPress Website Creation Training Course Slides
 
Best Friend || Worst Enemy: WordPress Multisite
Best Friend || Worst Enemy: WordPress MultisiteBest Friend || Worst Enemy: WordPress Multisite
Best Friend || Worst Enemy: WordPress Multisite
 
Getting started with WordPress development
Getting started with WordPress developmentGetting started with WordPress development
Getting started with WordPress development
 
Wordpress Plugin Development Short Tutorial
Wordpress Plugin Development Short TutorialWordpress Plugin Development Short Tutorial
Wordpress Plugin Development Short Tutorial
 
The Need for Speed (5 Performance Optimization Tipps) - brightonSEO 2014
The Need for Speed (5 Performance Optimization Tipps) - brightonSEO 2014The Need for Speed (5 Performance Optimization Tipps) - brightonSEO 2014
The Need for Speed (5 Performance Optimization Tipps) - brightonSEO 2014
 
Increase Your WordPress Website's Google PageSpeed Score
Increase Your WordPress Website's Google PageSpeed ScoreIncrease Your WordPress Website's Google PageSpeed Score
Increase Your WordPress Website's Google PageSpeed Score
 
7 steps
7 steps7 steps
7 steps
 
Alice Phieu - WordPress For Beginners
Alice Phieu - WordPress For BeginnersAlice Phieu - WordPress For Beginners
Alice Phieu - WordPress For Beginners
 
Mobile App Performance, Dublin MOT
Mobile App Performance, Dublin MOTMobile App Performance, Dublin MOT
Mobile App Performance, Dublin MOT
 
WordPress Complete Tutorial
WordPress Complete TutorialWordPress Complete Tutorial
WordPress Complete Tutorial
 
wordcampUK SEO tools & plugins
wordcampUK SEO tools & pluginswordcampUK SEO tools & plugins
wordcampUK SEO tools & plugins
 
SynapseIndia wordpress installation training module
SynapseIndia wordpress installation training moduleSynapseIndia wordpress installation training module
SynapseIndia wordpress installation training module
 
Wordpress 101 Training
Wordpress 101 TrainingWordpress 101 Training
Wordpress 101 Training
 
WordPress what is Wordpress
WordPress what is WordpressWordPress what is Wordpress
WordPress what is Wordpress
 
Please, dont touch the slow parts v.3.6 @webtechcon
Please, dont touch the slow parts v.3.6 @webtechconPlease, dont touch the slow parts v.3.6 @webtechcon
Please, dont touch the slow parts v.3.6 @webtechcon
 
Using composer with WordPress
Using composer with WordPressUsing composer with WordPress
Using composer with WordPress
 

Ähnlich wie 14 Things You Must Do Before Launching a Website

The 5 most common reasons for a slow WordPress site and how to fix them – ext...
The 5 most common reasons for a slow WordPress site and how to fix them – ext...The 5 most common reasons for a slow WordPress site and how to fix them – ext...
The 5 most common reasons for a slow WordPress site and how to fix them – ext...Otto Kekäläinen
 
ASHOK KUMAR UI Developer Resume
ASHOK KUMAR UI Developer ResumeASHOK KUMAR UI Developer Resume
ASHOK KUMAR UI Developer ResumeSorakayala Ashok
 
WordPress North East (Jan 2021) ~ SEO Fundamentals For WordPress
WordPress North East (Jan 2021) ~ SEO Fundamentals For WordPressWordPress North East (Jan 2021) ~ SEO Fundamentals For WordPress
WordPress North East (Jan 2021) ~ SEO Fundamentals For WordPressDan Taylor
 
Advanced WordPress Optimization - iGaming Supershow 2012
Advanced WordPress Optimization - iGaming Supershow 2012Advanced WordPress Optimization - iGaming Supershow 2012
Advanced WordPress Optimization - iGaming Supershow 2012Bastian Grimm
 
Popular Wordpress Plug-ins of May 2013
Popular Wordpress Plug-ins of May 2013Popular Wordpress Plug-ins of May 2013
Popular Wordpress Plug-ins of May 2013magentodeveloperindia
 
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to DevelopmentWordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to DevelopmentEvan Mullins
 
WordPress Plugins and Security
WordPress Plugins and SecurityWordPress Plugins and Security
WordPress Plugins and SecurityThink Media Inc.
 
How Not to Be Conned by Your Drupal Vendor!
How Not to Be Conned by Your Drupal Vendor!How Not to Be Conned by Your Drupal Vendor!
How Not to Be Conned by Your Drupal Vendor!pixelonion
 
5 Steps to Develop a WordPress Plugin From Scratch.pdf
5 Steps to Develop a WordPress Plugin From Scratch.pdf5 Steps to Develop a WordPress Plugin From Scratch.pdf
5 Steps to Develop a WordPress Plugin From Scratch.pdfBeePlugin
 
Enjoying the full stack - Frontend 2010
Enjoying the full stack - Frontend 2010Enjoying the full stack - Frontend 2010
Enjoying the full stack - Frontend 2010Christian Heilmann
 
Vue Storefront - Progressive Web App for Magento (1.9, 2.x) - MM18DE speech
Vue Storefront - Progressive Web App for Magento (1.9, 2.x) - MM18DE speechVue Storefront - Progressive Web App for Magento (1.9, 2.x) - MM18DE speech
Vue Storefront - Progressive Web App for Magento (1.9, 2.x) - MM18DE speechDivante
 
Webinar: On-Page SEO Tips and Tricks
Webinar: On-Page SEO Tips and TricksWebinar: On-Page SEO Tips and Tricks
Webinar: On-Page SEO Tips and TricksWP Engine
 
WordPress Optimization & Security - LAC 2013, London
WordPress Optimization & Security - LAC 2013, LondonWordPress Optimization & Security - LAC 2013, London
WordPress Optimization & Security - LAC 2013, LondonBastian Grimm
 
vue-storefront - PWA eCommerce for Magento2 MM17NYC presentation
vue-storefront - PWA eCommerce for Magento2 MM17NYC presentationvue-storefront - PWA eCommerce for Magento2 MM17NYC presentation
vue-storefront - PWA eCommerce for Magento2 MM17NYC presentationDivante
 
AD113 Speed Up Your Applications w/ Nginx and PageSpeed
AD113  Speed Up Your Applications w/ Nginx and PageSpeedAD113  Speed Up Your Applications w/ Nginx and PageSpeed
AD113 Speed Up Your Applications w/ Nginx and PageSpeededm00se
 
Ultimate Cheatsheet to Selecting Commercial WordPress Themes
Ultimate Cheatsheet to Selecting Commercial WordPress ThemesUltimate Cheatsheet to Selecting Commercial WordPress Themes
Ultimate Cheatsheet to Selecting Commercial WordPress ThemesSKT Themes
 
Responsive websites. Toolbox
Responsive websites. ToolboxResponsive websites. Toolbox
Responsive websites. ToolboxWojtek Zając
 

Ähnlich wie 14 Things You Must Do Before Launching a Website (20)

Managed WordPress Demystified
Managed WordPress DemystifiedManaged WordPress Demystified
Managed WordPress Demystified
 
The 5 most common reasons for a slow WordPress site and how to fix them – ext...
The 5 most common reasons for a slow WordPress site and how to fix them – ext...The 5 most common reasons for a slow WordPress site and how to fix them – ext...
The 5 most common reasons for a slow WordPress site and how to fix them – ext...
 
ASHOK KUMAR UI Developer Resume
ASHOK KUMAR UI Developer ResumeASHOK KUMAR UI Developer Resume
ASHOK KUMAR UI Developer Resume
 
WordPress North East (Jan 2021) ~ SEO Fundamentals For WordPress
WordPress North East (Jan 2021) ~ SEO Fundamentals For WordPressWordPress North East (Jan 2021) ~ SEO Fundamentals For WordPress
WordPress North East (Jan 2021) ~ SEO Fundamentals For WordPress
 
Advanced WordPress Optimization - iGaming Supershow 2012
Advanced WordPress Optimization - iGaming Supershow 2012Advanced WordPress Optimization - iGaming Supershow 2012
Advanced WordPress Optimization - iGaming Supershow 2012
 
Popular Wordpress Plug-ins of May 2013
Popular Wordpress Plug-ins of May 2013Popular Wordpress Plug-ins of May 2013
Popular Wordpress Plug-ins of May 2013
 
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to DevelopmentWordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
 
WordPress Plugins and Security
WordPress Plugins and SecurityWordPress Plugins and Security
WordPress Plugins and Security
 
How Not to Be Conned by Your Drupal Vendor!
How Not to Be Conned by Your Drupal Vendor!How Not to Be Conned by Your Drupal Vendor!
How Not to Be Conned by Your Drupal Vendor!
 
5 Steps to Develop a WordPress Plugin From Scratch.pdf
5 Steps to Develop a WordPress Plugin From Scratch.pdf5 Steps to Develop a WordPress Plugin From Scratch.pdf
5 Steps to Develop a WordPress Plugin From Scratch.pdf
 
Enjoying the full stack - Frontend 2010
Enjoying the full stack - Frontend 2010Enjoying the full stack - Frontend 2010
Enjoying the full stack - Frontend 2010
 
Vue Storefront - Progressive Web App for Magento (1.9, 2.x) - MM18DE speech
Vue Storefront - Progressive Web App for Magento (1.9, 2.x) - MM18DE speechVue Storefront - Progressive Web App for Magento (1.9, 2.x) - MM18DE speech
Vue Storefront - Progressive Web App for Magento (1.9, 2.x) - MM18DE speech
 
Webinar: On-Page SEO Tips and Tricks
Webinar: On-Page SEO Tips and TricksWebinar: On-Page SEO Tips and Tricks
Webinar: On-Page SEO Tips and Tricks
 
WordPress Optimization & Security - LAC 2013, London
WordPress Optimization & Security - LAC 2013, LondonWordPress Optimization & Security - LAC 2013, London
WordPress Optimization & Security - LAC 2013, London
 
vue-storefront - PWA eCommerce for Magento2 MM17NYC presentation
vue-storefront - PWA eCommerce for Magento2 MM17NYC presentationvue-storefront - PWA eCommerce for Magento2 MM17NYC presentation
vue-storefront - PWA eCommerce for Magento2 MM17NYC presentation
 
AD113 Speed Up Your Applications w/ Nginx and PageSpeed
AD113  Speed Up Your Applications w/ Nginx and PageSpeedAD113  Speed Up Your Applications w/ Nginx and PageSpeed
AD113 Speed Up Your Applications w/ Nginx and PageSpeed
 
Faster WordPress Workflows
Faster WordPress WorkflowsFaster WordPress Workflows
Faster WordPress Workflows
 
WordPress Security Best Practices
WordPress Security Best PracticesWordPress Security Best Practices
WordPress Security Best Practices
 
Ultimate Cheatsheet to Selecting Commercial WordPress Themes
Ultimate Cheatsheet to Selecting Commercial WordPress ThemesUltimate Cheatsheet to Selecting Commercial WordPress Themes
Ultimate Cheatsheet to Selecting Commercial WordPress Themes
 
Responsive websites. Toolbox
Responsive websites. ToolboxResponsive websites. Toolbox
Responsive websites. Toolbox
 

Kürzlich hochgeladen

Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Servicesexy call girls service in goa
 
Radiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girlsRadiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girlsstephieert
 
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girladitipandeya
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.soniya singh
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024APNIC
 
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night StandHot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Standkumarajju5765
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...Diya Sharma
 
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$kojalkojal131
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Sheetaleventcompany
 
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445ruhi
 
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...Neha Pandey
 
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...APNIC
 
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersMoving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersDamian Radcliffe
 
Russian Call girls in Dubai +971563133746 Dubai Call girls
Russian  Call girls in Dubai +971563133746 Dubai  Call girlsRussian  Call girls in Dubai +971563133746 Dubai  Call girls
Russian Call girls in Dubai +971563133746 Dubai Call girlsstephieert
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebJames Anderson
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Delhi Call girls
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024APNIC
 

Kürzlich hochgeladen (20)

Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
 
Radiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girlsRadiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girls
 
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
 
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
 
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024
 
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night StandHot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
 
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
 
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
 
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
 
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
 
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersMoving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
 
Russian Call girls in Dubai +971563133746 Dubai Call girls
Russian  Call girls in Dubai +971563133746 Dubai  Call girlsRussian  Call girls in Dubai +971563133746 Dubai  Call girls
Russian Call girls in Dubai +971563133746 Dubai Call girls
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
 

14 Things You Must Do Before Launching a Website

  • 1. zeropointdevelopment.com for WordPress Sydney Wil Brown @DeveloperWil
  • 2. Make image file sizes as small as possible before uploading to your website. Image file size largely depends on width x height – Remove embedded data: EXIF, aperture, ISO, geolocation – Quality: JPG (max, high, medium, low) @DeveloperWil #wpsyd 1
  • 3. Image Squishing Tools – Kraken.io – web-based image optimiser. Pricing plans increase for larger amounts of data. – TinyPNG – free web-based image optimiser for JPG and PNG files. – PNGGauntlet – free Windows desktop app for optimising images. @DeveloperWil #wpsyd 1
  • 4. Use srcset to show different image sizes to different screen sizes. <img src="small.jpg" srcset="medium.jpg 1000w, large.jpg 2000w"> With srcset, the browser does the work of figuring out which image is best. @DeveloperWil #wpsyd 1
  • 5. Themes can contain 100’s of CSS and JS files. – In HTTP v1 they all load asynchronously (after each other) – During development we need these files to be readable – Readable files contain lots of white space and comments – File sizes can be large @DeveloperWil #wpsyd 2
  • 6. Minification removes white spaces and comments to shrink the file size. @DeveloperWil #wpsyd 2 Original “style.css”: //**** Colour CSS ***// .a{ color: blue; } .a:hover{ color: orange; } Becomes “style.css.min”: .a{color:blue;}.a:hover{color:orange;}
  • 7. Non-developers: – Auptomize plugin Developers: – Research running a task runner called Gulp – Integrate into your development environment – Real-time minification to *.css.min – Enqueue only *.css.min files @DeveloperWil #wpsyd 2
  • 8. “Speed up” page rendering by moving JavaScript files into the footer area. Browser loads page HTML and CSS, displays on browser, then starts to load JS scripts Faster page = Google likes @DeveloperWil #wpsyd 3
  • 9. Non-developers: – Scripts to Footer plugin Developers: – Use wp_enqueue_script() function – Set last parameter bool $in_footer = true @DeveloperWil #wpsyd 3
  • 10. @DeveloperWil #wpsyd 4 Chrome 62 shows http: URLs as “Not secure” Chrome 70 shows red warning on HTTP forms
  • 11. All forms, not only cart checkout and payment forms need to be secured by HTTPS. As of 2018 HTTPS is a significant Google ranking signal. Secure sites rank higher than similar non-secure sites. @DeveloperWil #wpsyd 4
  • 12. Use Let’s Encrypt link on cPanel Free DV SSL certificate with wildcards. DV, OV & EV Certificates explained. EV Certs dead! @DeveloperWil #wpsyd 4
  • 13. Avoid Google finding broken links after your site launch. – Prevents search bots indexing your entire site – Affects your ranking position Do not install the Broken Link Checker plugin. – Not maintained +2 years – Maxes-out server RAM and CPU – Slows down your server @DeveloperWil #wpsyd 5
  • 14. Use a broken link checking service instead. – Brokenlinkcheck.com – web service. Limited link depth but will cover most websites. – Crawly – free and paid services. – Google Analytics – Behaviour > Site Content > All Pages and search for your 404.php page. @DeveloperWil #wpsyd 5
  • 15. Skip this step if launching a brand new site. If you are moving sites, domains, pages and post around you really need to be implementing redirection so that you don’t lose existing SEO traffic. @DeveloperWil #wpsyd 6
  • 16. Non-developers: – Yoast SEO Premium – The Premium upgrade is good for redirections and lots more SEO stuff – Redirection plugin Developers and System Admins – Apache web server: add rewrites to .htaccess file – Nginx: add rewrite statements to location server block @DeveloperWil #wpsyd 6
  • 17. Site icons, called Favicons play an important part in branding. Extensively used on mobiles and tables for bookmarking sites and pages @DeveloperWil #wpsyd 7
  • 18. Use an on-line generator: – favicon.cc – favicongenerator – iconifer – this also generates Apple Icons Download as a zip file and unpack in the WordPress root folder. @DeveloperWil #wpsyd 7
  • 19. On-page SEO is crucial to get ranked properly Google, Facebook and Twitter snippet previews @DeveloperWil #wpsyd 8
  • 21. • Target keyphrase • In-depth content readability analysis • Suggested internal posts to link to • Change snippet appearance for Facebook and Twitter (image, title & description) • Site-map generation, + lots more Read my step-by-step guide to setting up the Yoast SEO plugin. @DeveloperWil #wpsyd 8
  • 22. Security is key to maintaining your website authority, brand and customer confidence and loyalty. WordPress’ popularity has made it a BIG target for hackers. Install Wordfence before you launch! @DeveloperWil #wpsyd 9
  • 23. Installing a firewall plugin is a great first step. Website security is more than just installing a firewall plugin. @DeveloperWil #wpsyd 10
  • 24. • Social Engineering • Usernames & Passwords • Unix File Permissions • WP File & Folder Perms • WP Config Files • Server Malware • Updating WordPress • Automatic WP Updates • Avoid “Free” Paid Themes • Malware in Themes • Malware in Plugins • Tim Thumb Script still lives • SSL Certificates • Secure WP Dashboard • Software Firewalls • Limit Login Attempts • WordPress Backups • 2FA Security Login • Moving wp-content Folder • Prevent Script Injections • Secure wp-admin folder • .... +more @DeveloperWil #wpsyd 10
  • 25. Watch my WordPress Security Best Practices 2017 video. @DeveloperWil #wpsyd 10
  • 26. Make your site load super fast @DeveloperWil #wpsyd 11
  • 27. I recommend using W3 Total Cache (free) Works especially well with Nginx servers. UI sucks. Remember to exclude dynamic pages such as checkouts, member dashboards and payment forms. You can also try WP Rocket (paid $49USD/year) “Recognized as the most powerful caching plugin by WordPress experts” @DeveloperWil #wpsyd 11
  • 28. Want to double up on speed? Run your site through the Cloudflare CDN (icon on cPanel) A Content Delivery Network is a kind of global caching system. They keep fragments of your visited website on servers dotted around the planet. @DeveloperWil #wpsyd 11
  • 29. You’d be bonkers mad if you didn’t sign up a site to use Google Analytics before launch. – Free and provides heaps of data on website data and content being consumed One of the best plugins to use with Google Analytics is MonsterInsights. – Brings GA overview data to your WP dashboard – adds the GA JavaScript code so you don’t have to @DeveloperWil #wpsyd 12
  • 31. You need to be able to restore a site quickly if there are any problems. Issues can result from updating badly developed plugins, PHP version incompatibilities, hacking and a myriad of other stuff. Having backups are hand is uber critical. @DeveloperWil #wpsyd 13
  • 32. I recommend using VaultPress (paid) – $5USD/month :daily backups, 30-day retention – $15USD/month :real-time backups, unlimited retention Other backup plugins: – XCloner – free, backup to Amazon S3, sFTP Also has a server cron script (WP Cron sucks) – Backup Buddy – was never 100% reliable for – BackWPUp – Backup to Amazon S3, Dropbox, FTP and more. @DeveloperWil #wpsyd 13
  • 33. Do testing before launching a website! What to test? • Form submissions – did you get the email notification? Was the confirmation message/redirection OK? • Button links – do they go to the correct place? • Email addresses – are the obfuscated and do they link to the correct mailto: address? • Navigation links – do they work OK? Are all your navigation menus responsive? @DeveloperWil #wpsyd 14
  • 34. • Sign-ups – do your sign-up add the correct details to the correct mailing list? • Payments – is your checkout working? Is the money arriving in the bank? Are they the correct prices? • Registrations – are they working? Does the user get a notification? Can the login? • Dashboards – what can the logged in user see? Is it correct? • Permissions/User Roles – can the correct level of user see the correct stuff? • Comments – are they working? Catching spam? Moderation working? • Console errors – are there any errors in Chrome console? 404 can’t load resource? JavaScript errors? @DeveloperWil #wpsyd 14
  • 35. 1. Optimise Images 2. Minify CSS and JS Files 3. Load JS Files in Footer 4. Install SSL Certificate 5. Check Broken Links 6. Set Up Redirections 7. Favicons & Apple Icons @DeveloperWil #wpsyd 8. Set Up Yoast SEO 9. Install Wordfence 10. Secure the Website 11. Set Up Caching & CDN 12. Set Up Google Analytics 13. Set Up and Test Backups 14. Run Site Tests
  • 36. @DeveloperWil #wpsyd You can read my accompanying blog article that goes into more depth in each of these areas. Download PDF and MS Word Checklist Resources https://rebrand.ly/launching-website-33327
  • 37. [Front Cover] zeropointdevelopment.com [10] PN Melbourne pn.com.au [12] cpanel.com [14] google.com [19,20] zeropointdevelopment.com [25] zeropointdevelopment.com [26] giphy.com [30] monsterinsights.com [Back Cover] zeropointdevelopment.com @DeveloperWil #wpsyd
  • 38. WordPress Consultant & Developer Plugins, APIs, Security, eCommerce Organiser WPSyd & WordCamp Sydney @DeveloperWil #wpsyd zeropointdevelopment.com linkedin.com/in/developerwil @DeveloperWil ♥ Pizza & Craft Beer

Hinweis der Redaktion

  1. Demo of Chrome Inspect & Customizer CSS