Page 1 of 1

Google PageSpeed Insight

Posted: Thu Apr 12, 2018 4:23 pm
by Blitzer
This homepage is very slow. Is the template too slow?
(Google PageSpeed Insights: 46 percent, normal would be 75 percent)

Blitzer

Re: Google PageSpeed Insight

Posted: Thu Apr 12, 2018 6:15 pm
by Pablo
Which website are you referring to?

Note that the speed of a website mainly depends on the speed of the server/host and the size of the used images.

Re: Google PageSpeed Insight

Posted: Sat Jun 09, 2018 3:41 pm
by Blitzer
https://developers.google.com/speed/pagespeed/insights/
- Enter a web web page URL - (http://qnewb.com/)

It appears that the "Compress" option is enabled with gzip on the server.
Google Pagespeed Insights is now 86 percent.

Tip!
To enable compression, some providers may change the .htaccess. The following block should be inserted:

# enable php compression
php_value zlib.output_compression 1
php_value zlib.output_compression_level 6

# enable apache compression
<IfModule mod_deflate.c>
<IfModule mod_filter.c>
SetOutputFilter DEFLATE
AddOutputFilterByType DEFLATE application / * text / * font / * image / x-icon image / svg + xml
</ IfModule>
</ IfModule>

Blitzer