Google PageSpeed Insights

Goodfella

Well-known member
I hope this is in the right section.

So I ran the PageSpeed Insights on my forum and the results dont seem like they are good. Does anyone here have experience with fine tuning this?

Here are my results, Red is Mobile, Orange is Desktop.

Any help to fix this would be appreciated.

Thank you!
 

Attachments

  • Screen Shot 2014-10-19 at 2.52.46 PM.webp
    Screen Shot 2014-10-19 at 2.52.46 PM.webp
    27.4 KB · Views: 33
  • Screen Shot 2014-10-19 at 2.49.48 PM.webp
    Screen Shot 2014-10-19 at 2.49.48 PM.webp
    26.3 KB · Views: 30
First, check that the site is being hit on the new server. Compression is enabled with nginx.

The mininfy stuff can be set in the performance section of the options in the ACP. You can also set it to serve files from the cache as zendopcache is installed.

I can take a proper look when I'm back at work tonight.
 
First, check that the site is being hit on the new server. Compression is enabled with nginx.

The mininfy stuff can be set in the performance section of the options in the ACP. You can also set it to serve files from the cache as zendopcache is installed.

I can take a proper look when I'm back at work tonight.
That would be great. Thank you Matt!
 
I think pagespeed is still going to the old site (my work ISP is still going to the old version as well!)

Code:
        gzip                            on;
        gzip_static                     on;
        gzip_vary                       on;
        gzip_buffers                    16 8k;
        gzip_comp_level                 2;
        gzip_http_version               1.0;
        gzip_min_length                 512;
        gzip_proxied                    any;
        gzip_types                      text/css text/plain text/xml
                                        application/x-javascript application/rss+xml;
 
I think pagespeed is still going to the old site (my work ISP is still going to the old version as well!)

Code:
        gzip                            on;
        gzip_static                     on;
        gzip_vary                       on;
        gzip_buffers                    16 8k;
        gzip_comp_level                 2;
        gzip_http_version               1.0;
        gzip_min_length                 512;
        gzip_proxied                    any;
        gzip_types                      text/css text/plain text/xml
                                        application/x-javascript application/rss+xml;
Maybe i should give it some time to update, or is there something else i can do on my end?
 
Top Bottom