Monday 1 December 2014

How to Fast Loading Websites

How to Fast Loading Websites

I am sharing some rules or tips to make website loading faster and improve website performance and decrease bandwidth.
  • Rule 1 - Make Fewer HTTP Requests – image mapping, css sprite, inline css, inline images, inline css images
  • Rule 2 - Use a Content Delivery Network  - images, css, and scripts on CDN
  • Rule 3 - Add an Expires Header  - it really helps
  • Rule 4 - Gzip Components - its really make website speed double faster
  • Rule 5 - Put Stylesheets at the Top
  • Rule 6 - Put Scripts at the Bottom
  • Rule 7 - Avoid CSS Expressions
  • Rule 8 - Make JavaScript and CSS External
  • Rule 9 - Reduce DNS Lookups
  • Rule 10 - Minify JavaScript
  • Rule 11 - Avoid Redirects
  • Rule 12 - Remove Duplicate Scripts
  • Rule 13 - Configure ETags
  • Rule 14 - Make AJAX Cacheable

Create .ICS file using PHP code

Recently worked on creating a .ics file in PHP after a very long time, code so thought to share with everybody. Please find below the comple...