Skip to content
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.

URL is not in cache #1720

Open
uhlhosting opened this issue Nov 21, 2020 · 104 comments
Open

URL is not in cache #1720

uhlhosting opened this issue Nov 21, 2020 · 104 comments

Comments

@uhlhosting
Copy link

Hi,

After deploying pagespeed on my server, tested several configs and options, yet lately these info messages are filling the console, was wondering if anyone knows how to handle these:

Attached the console messages in a gist.
https://gist.github.com/uhlhosting/c6bf91d643b8fc0d86f6459eddb80e4c

Running on CentOS 8, with nginx 1.19.4.

Version: 14: on

Filters
ah	Add Head
cw	Collapse Whitespace
cc	Combine Css
jc	Combine Javascript
gp	Convert Gif to Png
jp	Convert Jpeg to Progressive
jw	Convert Jpeg To Webp
mc	Convert Meta Tagsa
pj	Convert Png to Jpeg
ws	When converting images to WebP, prefer lossless conversions
ec	Cache Extend Css
ei	Cache Extend Images
es	Cache Extend Scripts
fc	Fallback Rewrite Css 
if	Flatten CSS Imports
hw	Flushes html
ci	Inline Css
ii	Inline Images
il	Inline @import to Link
ji	Inline Javascript
js	Jpeg Subsampling
rj	Recompress Jpeg
rp	Recompress Png
rw	Recompress Webp
rc	Remove Comments
ri	Resize Images
cf	Rewrite Css
jm	Rewrite External Javascript
jj	Rewrite Inline Javascript
cu	Rewrite Style Attributes With Url
cp	Strip Image Color Profiles
md	Strip Image Meta Data

Options
  AdminPath (nap)                              /pagespeed_admin
  AvoidRenamingIntrospectiveJavascript (aris)  True
  BeaconUrl (bu)                               /ngx_pagespeed_beacon
  ConsolePath (ncp)                            /pagespeed_console
  CriticalImagesBeaconEnabled (cibe)           True
  EnableCachePurge (euci)                      True
  EnableRewriting (e)                          1
  FetchHttps (fhs)                             enable
  FileCacheCleanIntervalMs (afcci)             3600000
  FileCacheInodeLimit (afcl)                   500000
  FileCachePath (afcp)                         /mnt/ram/pagespeed
  FileCacheSizeKb (afc)                        102400
  GlobalAdminPath (ngap)                       /pagespeed_global_admin
  GlobalStatisticsPath (ngsp)                  /ngx_pagespeed_global_statistics
  HttpCacheCompressionLevel (hccl)             0
  ImageMaxRewritesAtOnce (im)                  3
  LogDir (ald)                                 /var/log/pagespeed
  LowercaseHtmlNames (lh)                      True
  MaxSegmentLength (uss)                       250
  MemcachedServers (ams)                       127.0.0.1:11211
  MemcachedTimeoutUs (amo)                     1000000
  MessagesPath (nmp)                           /ngx_pagespeed_message
  PreserveUrlRelativity (pur)                  True
  PrivateNotVaryForIE (pnvie)                  False
  RespectXForwardedProto (rxfp)                True
  RewriteLevel (l)                             Core Filters
  RewriteRandomDropPercentage (rrdp)           1
  Statistics (ase)                             True
  StatisticsLogging (asle)                     True
  StatisticsPath (nsp)                         /ngx_pagespeed_statistics

Domain Lawyer
  http://uhl.site/ Auth RewriteDomain:http://www.uhl.site/
  http://www.uhl.site/ Auth
  https://uhl.site/ Auth OriginDomain:http://uhl.site/

Invalidation Timestamp: (none)
@Lofesa
Copy link

Lofesa commented Nov 21, 2020

Hi
These messages are normal, as far as pagespeed don´t cache the htlm code:
Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
These others not:

Trying to serve rewritten resource in-place: http://127.0.0.1/nginx_status
Could not rewrite resource in-place because URL is not in cache: http://127.0.0.1/nginx_status

What are yours directives:

pagespeed MapRewriteDomain
pagespeed Domain
pagespeed MapOriginDomain

How your site works?
I will say: Are served from http localhost and maped to https://uhl.site/, have a proxy cache?.... What type of cache are in place?

@uhlhosting
Copy link
Author

Hi,
Using Nginx + FastCGI cache + opcache + redis this was the main original stack.

I then added pagespeed and testing since, if its needed will remove the previous ones.

https://gist.github.com/uhlhosting/4ef7e41ece8ee0fc2ab8fa6049766b78 here is the uhl.site config.
Here is the nginx.conf https://gist.github.com/uhlhosting/634ce18b5f30f9dcb22e931ccc500ecc

About uhl.site true since not caching html, alto not sure why it toke the stub url address for status from nginx into connsideration.

@Lofesa
Copy link

Lofesa commented Nov 22, 2020

Hi
Some questions about the config files:

1.- There is some files (pagespeed.conf in file uhl.site.conf line 5, pagespeedstatslog.conf line 68, pagespeedhandler.conf line 69) you have no included. Maybe in this files are the directives for nginx_status and pagespeed log or the server block for 127.0.0.1?

2.- Why you have fastcgi directives out of a server block in uhl.site.conf? If the directives are out of a server block is the same as put it in the http block, so why don´t put it at the same level that other fastcgi directives in nginx.conf

3.- You have enbled pagespeed in the http block so pagespeed works for all the server blocks. You need pagespeed working in phpadmin or in the default server? if not, put pagespeed unplugged; in it to disable pagespeed in these servers

4.- Why you need pagespeed MapOriginDomain "http://uhl.site" "https://uhl.site";? You serve uhl.site in https protocol and when http://uhl.site is requested, is redirected to https://uhl.site (as per the uhl.site.conf config)

5.- Why you need if ($scheme = http)? If the request go to uhl.site port 80, the request is allways http scheme, I think the if is not needed and the request must be inconditionally redirected to uhl.site port 443.

6.- Why do you need pagespeed ModPagespeedRespectXForwardedProto on;? This directive is used when you have a ssl endpoint before the server:
user -> https proxy/ssl endpont -> http server
and if needed, because you have a ssl endoint, you need pagespeed RespectXForwardedProto on; (for nginx. You have used the syntax for apache)

7.- What means this pagespeed Allow wildcard_spec;? Here wildcard_spec here is a regular expresion, not the this literal text. By default (if these directive is NOT present) the value is pagespeed Allow "*"; so maybe you don´t need it. See the examples here

8.- You have pagespeed ModPagespeedFetchHttps enable; this directive is for apache, for nginx is pagespeed FetchHttps enable;

9.- You say use Redis, but in the config files Memcached is configured, not Redis.

10.- Why you need gzip enabled in .pagespeed. reosurces?

11.- If you use wordpress, maybe you need to exclude wp-admin from pagespeed:
pagespeed Disallow /wp-admin;

12.- Why you use default_type application/octet-stream;?

@uhlhosting
Copy link
Author

Hi,

Here are the remaining details:

./pagespeed.conf:pagespeed MessageBufferSize 100000;
./pagespeed.conf:pagespeed NumRewriteThreads 6;
./pagespeed.conf:pagespeed NumExpensiveRewriteThreads 6;
./pagespeed.conf:pagespeed ImageMaxRewritesAtOnce 3;
./pagespeed.conf:pagespeed LogDir /var/log/pagespeed;
./pagespeed.conf:pagespeed FileCachePath /mnt/ram/pagespeed;
./pagespeed.conf:pagespeed StatisticsPath /ngx_pagespeed_statistics;
./pagespeed.conf:pagespeed GlobalStatisticsPath /ngx_pagespeed_global_statistics;
./pagespeed.conf:pagespeed MessagesPath /ngx_pagespeed_message;
./pagespeed.conf:pagespeed ConsolePath /pagespeed_console;
./pagespeed.conf:pagespeed AdminPath /pagespeed_admin;
./pagespeed.conf:pagespeed GlobalAdminPath /pagespeed_global_admin;
./pagespeedhandler.conf:#  Ensure requests for pagespeed optimized resources go to the pagespeed
./pagespeedhandler.conf:location ~ "\.pagespeed\.([a-z]\.)?[a-z]{2}\.[^.]{10}\.[^.]+" { add_header "" ""; }
./pagespeedhandler.conf:location ~ "^/pagespeed_static/" { }
./pagespeedhandler.conf:location ~ "^/ngx_pagespeed_beacon$" { }
./pagespeedhandler.conf:location /ngx_pagespeed_statistics { include custom/admin-ips.conf; deny all; }
./pagespeedhandler.conf:location /ngx_pagespeed_global_statistics { include custom/admin-ips.conf; deny all; }
./pagespeedhandler.conf:location /ngx_pagespeed_message { include custom/admin-ips.conf; deny all; }
./pagespeedhandler.conf:location /pagespeed_console { include custom/admin-ips.conf; deny all; }
./pagespeedhandler.conf:location ~ ^/pagespeed_admin { include custom/admin-ips.conf; deny all; }
./pagespeedhandler.conf:location ~ ^/pagespeed_global_admin { include custom/admin-ips.conf; deny all; }
./pagespeedstatslog.conf:pagespeed Statistics on;
./pagespeedstatslog.conf:pagespeed StatisticsLogging on;
./pagespeedstatslog.conf:pagespeed EnableCachePurge on;
  1. At the time of setup, well i had issues, and asked around since we test aapanel, so according to their docs, thats the way to enable fastcgi, based on this nginx configuration we use.

  2. I was testing this option also with unplugged, guess will just try it and in end will leave only main websites.

  3. This indeed has no meaning, was just testing to see if this works as a redirect or if it helps.

  4. Thats another default setting that come with our aapanel, its in their template, for the time beying was not causing me loops or issues, so i left it.

  5. I have to review the settings, while this is fresh deployment, surely had missplaced from apache directives instead of nginx ones, will double check and fix.

  6. yes you are right, il change this to * .

  7. will update this.

  8. I said redis on the server side, with wordpress. Indeed ngx has memcached, since redis was experimental accoring to docs.

  9. I found some online threads using it, as a test just gave this a chance.

11.I had some dissalow rules in wordpress i first config, will introduce them again. Needed a bit more research.

  1. no specific reason, it was in by default, i left it be, will tidy up config.

Beside this, I noticed several things, my security headers seems to be ignored some of them.

Also the caching time for all ressources has changed now, and is mixed some ressourced cached 5 mins, while some 30 days.

@Lofesa
Copy link

Lofesa commented Nov 22, 2020

Hi
1.- these 3 files have a mixed directives content. Some are needed for the server block you enable pagespeed or can be set at http block, but other are needed only in the server block you use to view the console and stats pages. And for the nignx logic all tree files must be set in a server block (you have include pagespeed.conf; in the http block). Niginx uses this:

http{
      server {
            location{
            }
       }
}

Maybe a reorder of these files is needed, making all directives for statistics, console and other in 1 file for each, and not spreaded in these 3.

2.- All these fastcgi are used ONLY where you have php locations, so you can put it together and have all fascgi directives only in one point and not spread it.

3.- Personally I use only pagespeed on; ony in the server blocks I need it, and a explicit pagespeed unplugged; in those I don´t need.

4.- I think you don´t need pagespeed MapOriginDomain "http://uhl.site" "https://uhl.site"; at all.

5.- this if is not needed, like if ($server_port !~ 443) (in uhl.site.conf lines 77 - 80). These directives make sense when you have a server block with ports 80 and 443 enabled, but you have these ports in diferent server blocks so waste resources making a test not need. It works? sure, but you have not enabled https in the 80 port so a https never reach this server, and you have only enabled the 443 in the server block thus a request to others port never reach this.

9.- You can use Redis. In the docs say "experimental" but don´t is. Is safe and estable, and for me better option that memcached.

10.- You have brotli and gzip enabled in the http block. and these are applied to .pagespeed. resources too.

11.- Pagespeed may have bad consecuences in the admin area for wordpress. Better disabled for it. Same for the fastcgi cache, you don´t need the wp-login cached.

12.- You are not serving binary content by default but text/html, better change it.

13.- I see you have an other include directive i´m not aware before: include proxy.conf;. I can´t see any config directive that say you are using a proxy, so maybe the directives in this files introduces some distortion on how the site works. And one more: include include enable-php.conf; or include /www/server/panel/vhost/rewrite/uhl.site.conf;

Maybe I´m lossing some info with all those includes...... Maybe the panel you use have cnfigured nginx to work with a proxy, then it may work as:

user -> nginx proxy -> nginx server

and then some directives make sense.

@uhlhosting
Copy link
Author

proxy_temp_path /www/server/nginx/proxy_temp_dir;
proxy_cache_path /www/server/nginx/proxy_cache_dir levels=1:2 keys_zone=cache_one:20m inactive=1d max_size=5g;
client_body_buffer_size 512k;
proxy_connect_timeout 60;
proxy_read_timeout 60;
proxy_send_timeout 60;
proxy_buffer_size 32k;
proxy_buffers 4 64k;
proxy_busy_buffers_size 128k;
proxy_temp_file_write_size 128k;
proxy_next_upstream error timeout invalid_header http_500 http_503 http_404;
proxy_cache cache_one;

This is the proxy.conf.

	location ~ [^/]\.php(/|$)
	{
		try_files $uri =404;
		fastcgi_pass  unix:/tmp/php-cgi-74.sock;
		fastcgi_index index.php;
		include fastcgi.conf;
		include pathinfo.conf;
	}

This it the enable-php.conf.

the rewrite file is empty yet that is linked to the frontend where users can add manually rewrite rules, at the moment is empty.

  1. here that was correct your mention of port 80, i had it together before, just some of my testing made me change it, i changed it back so now its on same server entry with 443 this was the default .

Other very strange behaviour would be the page sometimes giving a blank white page, and also there is a 404 and a 501 errors hit from time to time. guess still experimenting , would need to start with less filters.

I will update the newly renewed configs, once I finish them. Any idea why the timeouts of the domain when using refresh only.

@Lofesa
Copy link

Lofesa commented Nov 23, 2020

To debug the blank page you need to look at server logs and see what happens when the blank page come. Maybe you need to put error messages in debug level to get more info:
error_log /path/to/log debug;

I think that the panel had created very complicated config file structure for a simple one server config. Maybe you need some step by step process to get a whole config, I mean, make the simplified setup config as posible w/o proxy or even pagespeed, make it work clean and w/o any errors, and then intrude things like the pagespeed module.

@uhlhosting
Copy link
Author

Seems that is not helping, seems no errors are recorder whatsoever:

94.112.41.18 - - [23/Nov/2020:11:09:02 +0100] "GET / HTTP/2.0" 200 10339 "https://uhl.site/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15"
94.112.41.18 - - [23/Nov/2020:11:09:02 +0100] "GET /wp-content/uploads/2020/11/Testimonial-Background,402x.png.pagespeed.ce.3PAmB2kjHN.png HTTP/2.0" 200 24886 "https://uhl.site/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15"
94.112.41.18 - - [23/Nov/2020:11:09:02 +0100] "GET /wp-content/uploads/2020/11/Footer-Background,402x.png.pagespeed.ce.jADOP1tFTI.png HTTP/2.0" 200 27969 "https://uhl.site/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) 

This is the most we have from access log, while error log is empty on the vhost side.

@uhlhosting
Copy link
Author

uhlhosting commented Nov 23, 2020

Seems that even debug does not track it, there is a bug maybe?

The most intresting part is that error console from nginx in the site vhost is not showing any errors.
And the browser registers a 200 page on hit, yet the page is blank. This upon refresh clears out from time to time.

Managed to get something in error log:

2020/11/23 12:02:28 [notice] 3633495#0: *463 "443" matches "443", client: 94.112.41.18, server: uhl.site, request: "GET / HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/hello-world/"
2020/11/23 12:02:28 [notice] 3633495#0: *463 "/wp-admin/|/xmlrpc.php|wp-.*.php|/feed/|index.php|sitemap(_index)?.xml" does not match "/", client: 94.112.41.18, server: uhl.site, request: "GET / HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/hello-world/"
2020/11/23 12:02:28 [notice] 3633495#0: *463 "comment_author|wordpress_[a-f0-9]+|wp-postpass|wordpress_no_cache|wordpress_logged_in" does not match "X_CACHE_KEY=29a7cb29daceb7c27b6294402d720a1a", client: 94.112.41.18, server: uhl.site, request: "GET / HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/hello-world/"
2020/11/23 12:02:28 [notice] 3633495#0: *463 "/wp-admin$" does not match "/", client: 94.112.41.18, server: uhl.site, request: "GET / HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/hello-world/"
2020/11/23 12:02:28 [notice] 3633495#0: *463 "443" matches "443", client: 94.112.41.18, server: uhl.site, request: "GET / HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/hello-world/"
2020/11/23 12:02:28 [notice] 3633495#0: *463 "/wp-admin/|/xmlrpc.php|wp-.*.php|/feed/|index.php|sitemap(_index)?.xml" does not match "/", client: 94.112.41.18, server: uhl.site, request: "GET / HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/hello-world/"
2020/11/23 12:02:28 [notice] 3633495#0: *463 "comment_author|wordpress_[a-f0-9]+|wp-postpass|wordpress_no_cache|wordpress_logged_in" does not match "X_CACHE_KEY=29a7cb29daceb7c27b6294402d720a1a", client: 94.112.41.18, server: uhl.site, request: "GET / HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/hello-world/"
2020/11/23 12:02:28 [notice] 3633495#0: *463 "/wp-admin$" does not match "/", client: 94.112.41.18, server: uhl.site, request: "GET / HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/hello-world/"
2020/11/23 12:02:28 [info] 3633495#0: [ngx_pagespeed 1.13.35.2-0] Trying to serve rewritten resource in-place: https://uhl.site/
2020/11/23 12:02:28 [info] 3633495#0: [ngx_pagespeed 1.13.35.2-0] Cache entry is expired: https://uhl.site/ (fragment=uhl.site)
2020/11/23 12:02:28 [info] 3633495#0: [ngx_pagespeed 1.13.35.2-0] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
2020/11/23 12:02:28 [notice] 3633495#0: *463 "443" matches "443", client: 94.112.41.18, server: uhl.site, request: "GET / HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/hello-world/"
2020/11/23 12:02:28 [notice] 3633495#0: *463 "/wp-admin/|/xmlrpc.php|wp-.*.php|/feed/|index.php|sitemap(_index)?.xml" does not match "/", client: 94.112.41.18, server: uhl.site, request: "GET / HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/hello-world/"
2020/11/23 12:02:28 [notice] 3633495#0: *463 "comment_author|wordpress_[a-f0-9]+|wp-postpass|wordpress_no_cache|wordpress_logged_in" does not match "X_CACHE_KEY=29a7cb29daceb7c27b6294402d720a1a", client: 94.112.41.18, server: uhl.site, request: "GET / HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/hello-world/"
2020/11/23 12:02:28 [notice] 3633495#0: *463 "/wp-admin$" does not match "/index.php", client: 94.112.41.18, server: uhl.site, request: "GET / HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/hello-world/"
2020/11/23 12:02:28 [info] 3633495#0: [ngx_pagespeed 1.13.35.2-0] Trying to serve rewritten resource in-place: https://uhl.site/
2020/11/23 12:02:28 [info] 3633495#0: [ngx_pagespeed 1.13.35.2-0] Cache entry is expired: https://uhl.site/ (fragment=uhl.site)
2020/11/23 12:02:28 [info] 3633495#0: [ngx_pagespeed 1.13.35.2-0] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
2020/11/23 12:02:28 [info] 3633495#0: [ngx_pagespeed 1.13.35.2-0] Cache entry is expired: https://uhl.site/ (fragment=uhl.site)
2020/11/23 12:02:28 [notice] 3633495#0: *464 "443" matches "443", client: 172.18.6.10, server: uhl.site, request: "GET / HTTP/1.1", host: "uhl.site", referrer: "https://uhl.site/"
2020/11/23 12:02:28 [notice] 3633495#0: *464 "/wp-admin/|/xmlrpc.php|wp-.*.php|/feed/|index.php|sitemap(_index)?.xml" does not match "/", client: 172.18.6.10, server: uhl.site, request: "GET / HTTP/1.1", host: "uhl.site", referrer: "https://uhl.site/"
2020/11/23 12:02:28 [notice] 3633495#0: *464 "comment_author|wordpress_[a-f0-9]+|wp-postpass|wordpress_no_cache|wordpress_logged_in" does not match "", client: 172.18.6.10, server: uhl.site, request: "GET / HTTP/1.1", host: "uhl.site", referrer: "https://uhl.site/"
2020/11/23 12:02:28 [notice] 3633495#0: *464 "/wp-admin$" does not match "/", client: 172.18.6.10, server: uhl.site, request: "GET / HTTP/1.1", host: "uhl.site", referrer: "https://uhl.site/"
2020/11/23 12:02:28 [debug] 3633495#0: *463 CollectAccumulatedWrites, -2
2020/11/23 12:02:28 [debug] 3633495#0: *463 CollectAccumulatedWrites, -2
2020/11/23 12:02:28 [debug] 3633495#0: *463 CollectAccumulatedWrites, 0
2020/11/23 12:02:28 [info] 3633495#0: *464 client 172.18.6.10 closed keepalive connection
2020/11/23 12:02:28 [info] 3633495#0: [ngx_pagespeed 1.13.35.2-0] HTTPCache key=https://uhl.site/ fragment=uhl.site: remembering recent failure for 299 seconds.
2020/11/23 12:02:28 [notice] 3633495#0: *463 "443" matches "443", client: 94.112.41.18, server: uhl.site, request: "GET / HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/"
2020/11/23 12:02:28 [notice] 3633495#0: *463 "/wp-admin/|/xmlrpc.php|wp-.*.php|/feed/|index.php|sitemap(_index)?.xml" does not match "/", client: 94.112.41.18, server: uhl.site, request: "GET / HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/"
2020/11/23 12:02:28 [notice] 3633495#0: *463 "comment_author|wordpress_[a-f0-9]+|wp-postpass|wordpress_no_cache|wordpress_logged_in" does not match "X_CACHE_KEY=29a7cb29daceb7c27b6294402d720a1a", client: 94.112.41.18, server: uhl.site, request: "GET / HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/"
2020/11/23 12:02:28 [notice] 3633495#0: *463 "/wp-admin$" does not match "/", client: 94.112.41.18, server: uhl.site, request: "GET / HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/"

@Lofesa
Copy link

Lofesa commented Nov 23, 2020

Hi.... Occam, a missconfiguration rather tan a bug.
For example, in you fastcgi.conf have you a line like:
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
or in the uhl.site.conf there is this at line 101:
try_files $uri =404;
this try to find a file that match the uri and if not found return a 404. Better try to use this
try_files $uri $uri/ /index.php$is_args$args ;
This tries to fin a file, if not found, try if is a folder, if not found try the index.php with parameters (if one is set)
In wordpress if you use pretty url, some like https://uhl.site/some-post/ the /some-post/ part is not a file nor folder but rather than wordpress convert it in some like https://uhl.site/index.php?post-id=XXXX

@uhlhosting
Copy link
Author

Changed that line:

2020/11/23 12:21:08 [info] 3638298#0: [ngx_pagespeed 1.13.35.2-0] HTTPCache key=https://uhl.site/ fragment=uhl.site: remembering recent failure for 283 seconds.
2020/11/23 12:21:08 [debug] 3638298#0: *204 CollectAccumulatedWrites, 0
2020/11/23 12:21:09 [notice] 3638298#0: *199 "443" matches "443", client: 94.112.41.18, server: uhl.site, request: "GET /hello-world/ HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/"
2020/11/23 12:21:09 [notice] 3638298#0: *199 "/wp-admin/|/xmlrpc.php|wp-.*.php|/feed/|index.php|sitemap(_index)?.xml" does not match "/hello-world/", client: 94.112.41.18, server: uhl.site, request: "GET /hello-world/ HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/"
2020/11/23 12:21:09 [notice] 3638298#0: *199 "comment_author|wordpress_[a-f0-9]+|wp-postpass|wordpress_no_cache|wordpress_logged_in" does not match "wp-settings-1=libraryContent%3Dbrowse; wp-settings-time-1=1605847282; X_CACHE_KEY=ac0b86989d4a9ef403a39cb4ee779433", client: 94.112.41.18, server: uhl.site, request: "GET /hello-world/ HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/"
2020/11/23 12:21:09 [notice] 3638298#0: *199 "/wp-admin$" does not match "/hello-world/", client: 94.112.41.18, server: uhl.site, request: "GET /hello-world/ HTTP/2.0", host: "uhl.site", referrer: "https://uhl.site/"

these were not previously, will check also to the admins from aapanel what they say about the config.

@Lofesa
Copy link

Lofesa commented Nov 23, 2020

@uhlhosting
Copy link
Author

@Lofesa thanks il give it a try, anyhow that would be more complex to addapt to the deployment of nginx we have now.

I have found now a recent docker deployment and im testing it out.

It seems when I disable pagespeed the white pages are out, so il start slowly taking all issues one by one. Il also try to involve the aapanel admins.

@uhlhosting
Copy link
Author

It seems there is some conflicts of some sort, while in the moment I enabled pagespeed, imediatelly my pages goes from 404 to 501 and back and forth to white screen.

image

image

While access console shows:

94.112.41.18 - - [23/Nov/2020:20:35:13 +0100] "GET / HTTP/2.0" 404 1 "https://uhl.site/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4327.0 Safari/537.36" "-" "uhl.site" sn="uhl.site" rt=0.001 ua="-" us="-" ut="-" ul="-" cs=-
94.112.41.18 - - [23/Nov/2020:20:35:14 +0100] "GET / HTTP/2.0" 200 1 "https://uhl.site/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4327.0 Safari/537.36" "-" "uhl.site" sn="uhl.site" rt=0.000 ua="-" us="-" ut="-" ul="-" cs=-
94.112.41.18 - - [23/Nov/2020:20:35:14 +0100] "GET /favicon.ico HTTP/2.0" 302 2150 "https://uhl.site/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4327.0 Safari/537.36" "-" "uhl.site" sn="uhl.site" rt=0.002 ua="-" us="-" ut="-" ul="-" cs=HIT
94.112.41.18 - - [23/Nov/2020:20:35:14 +0100] "GET /wp-content/uploads/2020/11/cropped-web-programming-32x32.png HTTP/2.0" 200 560 "https://uhl.site/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4327.0 Safari/537.36" "-" "uhl.site" sn="uhl.site" rt=0.001 ua="-" us="-" ut="-" ul="-" cs=-
94.112.41.18 - - [23/Nov/2020:20:35:15 +0100] "GET / HTTP/2.0" 200 1 "https://uhl.site/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4327.0 Safari/537.36" "-" "uhl.site" sn="uhl.site" rt=0.000 ua="-" us="-" ut="-" ul="-" cs=-
94.112.41.18 - - [23/Nov/2020:20:35:15 +0100] "GET / HTTP/2.0" 200 1 "https://uhl.site/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4327.0 Safari/537.36" "-" "uhl.site" sn="uhl.site" rt=0.000 ua="-" us="-" ut="-" ul="-" cs=-
94.112.41.18 - - [23/Nov/2020:20:35:15 +0100] "GET /favicon.ico HTTP/2.0" 302 2150 "https://uhl.site/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4327.0 Safari/537.36" "-" "uhl.site" sn="uhl.site" rt=0.001 ua="-" us="-" ut="-" ul="-" cs=HIT
94.112.41.18 - - [23/Nov/2020:20:35:16 +0100] "GET /favicon.ico HTTP/2.0" 302 2150 "https://uhl.site/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4327.0 Safari/537.36" "-" "uhl.site" sn="uhl.site" rt=0.001 ua="-" us="-" ut="-" ul="-" cs=HIT
94.112.41.18 - - [23/Nov/2020:20:35:16 +0100] "GET / HTTP/2.0" 499 0 "https://uhl.site/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4327.0 Safari/537.36" "-" "uhl.site" sn="uhl.site" rt=0.000 ua="-" us="-" ut="-" ul="-" cs=-
94.112.41.18 - - [23/Nov/2020:20:35:16 +0100] "GET / HTTP/2.0" 200 1 "https://uhl.site/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4327.0 Safari/537.36" "-" "uhl.site" sn="uhl.site" rt=0.000 ua="-" us="-" ut="-" ul="-" cs=-
94.112.41.18 - - [23/Nov/2020:20:35:16 +0100] "GET /wp-content/uploads/2020/11/cropped-web-programming-32x32.png HTTP/2.0" 200 560 "https://uhl.site/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4327.0 Safari/537.36" "-" "uhl.site" sn="uhl.site" rt=0.001 ua="-" us="-" ut="-" ul="-" cs=-
94.112.41.18 - - [23/Nov/2020:20:35:17 +0100] "GET /favicon.ico HTTP/2.0" 302 2150 "https://uhl.site/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4327.0 Safari/537.36" "-" "uhl.site" sn="uhl.site" rt=0.002 ua="-" us="-" ut="-" ul="-" cs=HIT
94.112.41.18 - - [23/Nov/2020:20:35:17 +0100] "GET /wp-content/uploads/2020/11/cropped-web-programming-32x32.png HTTP/2.0" 200 560 "https://uhl.site/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4327.0 Safari/537.36" "-" "uhl.site" sn="uhl.site" rt=0.001 ua="-" us="-" ut="-" ul="-" cs=-
94.112.41.18 - - [23/Nov/2020:20:35:17 +0100] "GET / HTTP/2.0" 200 1 "https://uhl.site/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4327.0 Safari/537.36" "-" "uhl.site" sn="uhl.site" rt=0.000 ua="-" us="-" ut="-" ul="-" cs=-
94.112.41.18 - - [23/Nov/2020:20:35:17 +0100] "GET /favicon.ico HTTP/2.0" 302 2150 "https://uhl.site/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4327.0 Safari/537.36" "-" "uhl.site" sn="uhl.site" rt=0.001 ua="-" us="-" ut="-" ul="-" cs=HIT
94.112.41.18 - - [23/Nov/2020:20:35:17 +0100] "GET /wp-content/uploads/2020/11/cropped-web-programming-32x32.png HTTP/2.0" 200 560 "https://uhl.site/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4327.0 Safari/537.36" "-" "uhl.site" sn="uhl.site" rt=0.001 ua="-" us="-" ut="-" ul="-" cs=-

And errror log:

2020/11/23 20:36:08 [debug] 3767127#0: *491 CollectAccumulatedWrites, 0
2020/11/23 20:36:21 [notice] 3767127#0: *492 "443" matches "443", client: 35.200.109.119, server: uhl.site, request: "HEAD / HTTP/1.1", host: "uhl.site"
2020/11/23 20:36:21 [notice] 3767127#0: *492 "/wp-admin/|/xmlrpc.php|wp-.*.php|/feed/|index.php|sitemap(_index)?.xml" does not match "/", client: 35.200.109.119, server: uhl.site, request: "HEAD / HTTP/1.1", host: "uhl.site"
2020/11/23 20:36:21 [notice] 3767127#0: *492 "comment_author|wordpress_[a-f0-9]+|wp-postpass|wordpress_no_cache|wordpress_logged_in" does not match "", client: 35.200.109.119, server: uhl.site, request: "HEAD / HTTP/1.1", host: "uhl.site"
2020/11/23 20:36:21 [notice] 3767127#0: *492 "/wp-admin$" does not match "/", client: 35.200.109.119, server: uhl.site, request: "HEAD / HTTP/1.1", host: "uhl.site"
2020/11/23 20:36:21 [info] 3767127#0: [ngx_pagespeed 1.13.35.2-0] Trying to serve rewritten resource in-place: https://uhl.site/
2020/11/23 20:36:21 [info] 3767127#0: [ngx_pagespeed 1.13.35.2-0] Cache entry is expired: https://uhl.site/ (fragment=uhl.site)
2020/11/23 20:36:21 [info] 3767127#0: [ngx_pagespeed 1.13.35.2-0] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
2020/11/23 20:36:21 [notice] 3767127#0: *492 "443" matches "443", client: 35.200.109.119, server: uhl.site, request: "HEAD / HTTP/1.1", host: "uhl.site"
2020/11/23 20:36:21 [notice] 3767127#0: *492 "/wp-admin/|/xmlrpc.php|wp-.*.php|/feed/|index.php|sitemap(_index)?.xml" does not match "/", client: 35.200.109.119, server: uhl.site, request: "HEAD / HTTP/1.1", host: "uhl.site"
2020/11/23 20:36:21 [notice] 3767127#0: *492 "comment_author|wordpress_[a-f0-9]+|wp-postpass|wordpress_no_cache|wordpress_logged_in" does not match "", client: 35.200.109.119, server: uhl.site, request: "HEAD / HTTP/1.1", host: "uhl.site"
2020/11/23 20:36:21 [notice] 3767127#0: *492 "/wp-admin$" does not match "/index.php", client: 35.200.109.119, server: uhl.site, request: "HEAD / HTTP/1.1", host: "uhl.site"
2020/11/23 20:36:21 [info] 3767127#0: [ngx_pagespeed 1.13.35.2-0] Trying to serve rewritten resource in-place: https://uhl.site/
2020/11/23 20:36:21 [info] 3767127#0: [ngx_pagespeed 1.13.35.2-0] Cache entry is expired: https://uhl.site/ (fragment=uhl.site)
2020/11/23 20:36:21 [info] 3767127#0: [ngx_pagespeed 1.13.35.2-0] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
2020/11/23 20:36:21 [debug] 3767127#0: *492 CollectAccumulatedWrites, 0
2020/11/23 20:36:25 [notice] 3767127#0: *493 "443" matches "443", client: 35.246.163.41, server: uhl.site, request: "HEAD / HTTP/1.1", host: "uhl.site"
2020/11/23 20:36:25 [notice] 3767127#0: *493 "/wp-admin/|/xmlrpc.php|wp-.*.php|/feed/|index.php|sitemap(_index)?.xml" does not match "/", client: 35.246.163.41, server: uhl.site, request: "HEAD / HTTP/1.1", host: "uhl.site"
2020/11/23 20:36:25 [notice] 3767127#0: *493 "comment_author|wordpress_[a-f0-9]+|wp-postpass|wordpress_no_cache|wordpress_logged_in" does not match "", client: 35.246.163.41, server: uhl.site, request: "HEAD / HTTP/1.1", host: "uhl.site"
2020/11/23 20:36:25 [notice] 3767127#0: *493 "/wp-admin$" does not match "/", client: 35.246.163.41, server: uhl.site, request: "HEAD / HTTP/1.1", host: "uhl.site"
2020/11/23 20:36:25 [info] 3767127#0: [ngx_pagespeed 1.13.35.2-0] Trying to serve rewritten resource in-place: https://uhl.site/
2020/11/23 20:36:25 [info] 3767127#0: [ngx_pagespeed 1.13.35.2-0] Cache entry is expired: https://uhl.site/ (fragment=uhl.site)
2020/11/23 20:36:25 [info] 3767127#0: [ngx_pagespeed 1.13.35.2-0] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
2020/11/23 20:36:25 [notice] 3767127#0: *493 "443" matches "443", client: 35.246.163.41, server: uhl.site, request: "HEAD / HTTP/1.1", host: "uhl.site"
2020/11/23 20:36:25 [notice] 3767127#0: *493 "/wp-admin/|/xmlrpc.php|wp-.*.php|/feed/|index.php|sitemap(_index)?.xml" does not match "/", client: 35.246.163.41, server: uhl.site, request: "HEAD / HTTP/1.1", host: "uhl.site"
2020/11/23 20:36:25 [notice] 3767127#0: *493 "comment_author|wordpress_[a-f0-9]+|wp-postpass|wordpress_no_cache|wordpress_logged_in" does not match "", client: 35.246.163.41, server: uhl.site, request: "HEAD / HTTP/1.1", host: "uhl.site"
2020/11/23 20:36:25 [notice] 3767127#0: *493 "/wp-admin$" does not match "/index.php", client: 35.246.163.41, server: uhl.site, request: "HEAD / HTTP/1.1", host: "uhl.site"
2020/11/23 20:36:25 [info] 3767127#0: [ngx_pagespeed 1.13.35.2-0] Trying to serve rewritten resource in-place: https://uhl.site/
2020/11/23 20:36:25 [info] 3767127#0: [ngx_pagespeed 1.13.35.2-0] Cache entry is expired: https://uhl.site/ (fragment=uhl.site)
2020/11/23 20:36:25 [info] 3767127#0: [ngx_pagespeed 1.13.35.2-0] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
2020/11/23 20:36:25 [debug] 3767127#0: *493 CollectAccumulatedWrites, 0

@uhlhosting
Copy link
Author

Isnt possible that nginx cache is conflicting with pagespeed?

@Lofesa
Copy link

Lofesa commented Nov 23, 2020

Is possibel, Ican´t use nginx cache....

I can´t get any 404 or even 501 only ERR_CONNECTION_REFUSED message.

These are with the config i have send?

@uhlhosting
Copy link
Author

uhlhosting commented Nov 23, 2020

@Lofesa i can't use that config in current environment without breaking one of them. If you refresh the page several times, you will end up seeing the page load. Like I said are several statuses that spin between them.
btw at the time you tested, i am recompilling nginx now. il inform when im ready to test.

@uhlhosting
Copy link
Author

Managed to recompile it, tweaked a bit more and removed what is not needed. Still gettings same results, I also disabled FastCGI cache. Redis cache in wp side, and left pagespeed + redis . I heard there are issues with gzip on? Should I disable gzip also, same for brotli?

@uhlhosting
Copy link
Author

uhlhosting commented Nov 24, 2020

Latest console logs:

[Tue, 24 Nov 2020 01:06:40 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:06:40 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:06:35 GMT] [Info] [3868463] Unable to insert object of size: 38080, cache limit is: 35616
[Tue, 24 Nov 2020 01:06:19 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:06:19 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:06:19 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/ fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:06:19 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/ fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:06:19 GMT] [Error] [3868463] PageSpeed Serf fetch failure rate extremely high; only 0 of 534 recent fetches fully successful; is fetching working?
[Tue, 24 Nov 2020 01:06:19 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:06:19 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:06:19 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:06:19 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:06:19 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:06:19 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:06:19 GMT] [Info] [3874643] Cache entry is expired: https://uhl.site/ (fragment=uhl.site)
[Tue, 24 Nov 2020 01:06:19 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:06:19 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:06:19 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:06:19 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:06:19 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:06:19 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:06:19 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:06:19 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:06:19 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:06:19 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:06:19 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:06:19 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:06:19 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:06:19 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:06:19 GMT] [Info] [3868463] Unable to insert object of size: 38080, cache limit is: 35616
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:02:20 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3874643] https://uhl.site/asset-manifest.json:37: CSS parser increased size of CSS file https://uhl.site/asset-manifest.json by 17 bytes.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/asset-manifest.json fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/asset-manifest.json fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:02:20 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3874643] https://uhl.site/wp-content/uploads/2020/11/xavatar,402x.png.pagespeed.ic.%E2%80%A6:37: CSS parser increased size of CSS file https://uhl.site/wp-content/uploads/2020/11/xavatar,402x.png.pagespeed.ic.%E2%80%A6 by 37 bytes.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/wp-content/uploads/2020/11/xavatar,402x.png.pagespeed.ic.%E2%80%A6 fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/wp-content/uploads/2020/11/xavatar,402x.png.pagespeed.ic.%E2%80%A6 fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:02:20 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:02:20 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3874643] https://uhl.site/wp-content/uploads/2020/11/xl-2,402x.png.pagespeed.ic.XxM%E2%80%A6:37: CSS parser increased size of CSS file https://uhl.site/wp-content/uploads/2020/11/xl-2,402x.png.pagespeed.ic.XxM%E2%80%A6 by 37 bytes.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/wp-content/uploads/2020/11/xl-2,402x.png.pagespeed.ic.XxM%E2%80%A6 fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/wp-content/uploads/2020/11/xl-2,402x.png.pagespeed.ic.XxM%E2%80%A6 fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:02:20 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:02:20 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3874643] https://uhl.site/wp-content/uploads/2020/11/xi-5,402x.jpg.pagespeed.ic.8bf%E2%80%A6:37: CSS parser increased size of CSS file https://uhl.site/wp-content/uploads/2020/11/xi-5,402x.jpg.pagespeed.ic.8bf%E2%80%A6 by 37 bytes.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/wp-content/uploads/2020/11/xi-5,402x.jpg.pagespeed.ic.8bf%E2%80%A6 fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/wp-content/uploads/2020/11/xi-5,402x.jpg.pagespeed.ic.8bf%E2%80%A6 fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3874643] https://uhl.site/wp-content/uploads/2020/11/xi-4,402x.jpg.pagespeed.ic.hzZ%E2%80%A6:37: CSS parser increased size of CSS file https://uhl.site/wp-content/uploads/2020/11/xi-4,402x.jpg.pagespeed.ic.hzZ%E2%80%A6 by 37 bytes.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/wp-content/uploads/2020/11/xi-4,402x.jpg.pagespeed.ic.hzZ%E2%80%A6 fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/wp-content/uploads/2020/11/xi-4,402x.jpg.pagespeed.ic.hzZ%E2%80%A6 fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:02:20 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3874643] https://uhl.site/wp-content/uploads/2020/11/xi-3,402x.jpg.pagespeed.ic.Lon%E2%80%A6:37: CSS parser increased size of CSS file https://uhl.site/wp-content/uploads/2020/11/xi-3,402x.jpg.pagespeed.ic.Lon%E2%80%A6 by 37 bytes.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/wp-content/uploads/2020/11/xi-3,402x.jpg.pagespeed.ic.Lon%E2%80%A6 fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:02:20 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/wp-content/uploads/2020/11/xi-3,402x.jpg.pagespeed.ic.Lon%E2%80%A6 fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:02:15 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:02:15 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:02:15 GMT] [Info] [3874643] https://uhl.site/wp-content/uploads/2020/11/xi-1,402x.jpg.pagespeed.ic.V32%E2%80%A6:37: CSS parser increased size of CSS file https://uhl.site/wp-content/uploads/2020/11/xi-1,402x.jpg.pagespeed.ic.V32%E2%80%A6 by 37 bytes.
[Tue, 24 Nov 2020 01:02:15 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/wp-content/uploads/2020/11/xi-1,402x.jpg.pagespeed.ic.V32%E2%80%A6 fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:02:15 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/wp-content/uploads/2020/11/xi-1,402x.jpg.pagespeed.ic.V32%E2%80%A6 fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:02:15 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:02:15 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:02:11 GMT] [Info] [3874643] Lone background-position found: Cannot sprite.
[Tue, 24 Nov 2020 01:02:11 GMT] [Info] [3874643] No permission to rewrite 'https://fancyfreelancer.oxy.host/wp-content/uploads/sites/58/2019/02/pexels-photo-529926.jpeg'
[Tue, 24 Nov 2020 01:02:10 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:02:10 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:02:10 GMT] [Info] [3874643] https://uhl.site/wp-content/uploads/2020/11/xi-2,402x-1.jpg.pagespeed.ic.i%E2%80%A6:37: CSS parser increased size of CSS file https://uhl.site/wp-content/uploads/2020/11/xi-2,402x-1.jpg.pagespeed.ic.i%E2%80%A6 by 37 bytes.
[Tue, 24 Nov 2020 01:02:10 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/wp-content/uploads/2020/11/xi-2,402x-1.jpg.pagespeed.ic.i%E2%80%A6 fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:02:10 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/wp-content/uploads/2020/11/xi-2,402x-1.jpg.pagespeed.ic.i%E2%80%A6 fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:02:10 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:02:10 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:02:10 GMT] [Info] [3874643] https://uhl.site/wp-content/uploads/2020/11/xi-1,402x-1.jpg.pagespeed.ic.Y%E2%80%A6:37: CSS parser increased size of CSS file https://uhl.site/wp-content/uploads/2020/11/xi-1,402x-1.jpg.pagespeed.ic.Y%E2%80%A6 by 37 bytes.
[Tue, 24 Nov 2020 01:02:10 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/wp-content/uploads/2020/11/xi-1,402x-1.jpg.pagespeed.ic.Y%E2%80%A6 fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:02:10 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/wp-content/uploads/2020/11/xi-1,402x-1.jpg.pagespeed.ic.Y%E2%80%A6 fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:02:10 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:02:10 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:02:10 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:02:10 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:02:10 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:02:10 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:02:10 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:02:10 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:02:10 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:02:10 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:02:10 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:02:10 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:02:10 GMT] [Info] [3874643] Lone background-position found: Cannot sprite.
[Tue, 24 Nov 2020 01:02:10 GMT] [Info] [3874643] No permission to rewrite 'https://fancyfreelancer.oxy.host/wp-content/uploads/sites/58/2019/02/pexels-photo-529926.jpeg'
[Tue, 24 Nov 2020 01:02:07 GMT] [Info] [3868463] Unable to insert object of size: 38080, cache limit is: 35616
[Tue, 24 Nov 2020 01:02:07 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:02:07 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:00:50 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:00:50 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:00:50 GMT] [Info] [3874643] Inside CSS: https://uhl.site/wp-content/uploads/oxygen/css/universal.css?cache=1606179525&ver=5.5.3: Image MIME type could not be discovered from reading magic bytes; rewriting dropped.
[Tue, 24 Nov 2020 01:00:50 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:00:50 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:00:50 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/ fragment=uhl.site: remembering recent failure for 177 seconds.
[Tue, 24 Nov 2020 01:00:50 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:00:50 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:00:50 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/ fragment=uhl.site: remembering recent failure for 177 seconds.
[Tue, 24 Nov 2020 01:00:50 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:00:50 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:00:50 GMT] [Info] [3874643] Lone background-position found: Cannot sprite.
[Tue, 24 Nov 2020 01:00:50 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:00:50 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:00:50 GMT] [Info] [3868463] Need to check cache size against target 1048576000
[Tue, 24 Nov 2020 01:00:50 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
[Tue, 24 Nov 2020 01:00:50 GMT] [Info] [3868463] Unable to insert object of size: 38080, cache limit is: 35616
[Tue, 24 Nov 2020 00:58:48 GMT] [Info] [3874643] Inside CSS: https://uhl.site/wp-content/uploads/oxygen/css/universal.css?cache=1606179525&ver=5.5.3: Image MIME type could not be discovered from reading magic bytes; rewriting dropped.
[Tue, 24 Nov 2020 00:58:48 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/ fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 00:58:48 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/ fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 00:58:48 GMT] [Info] [3868463] Unable to insert object of size: 38080, cache limit is: 35616
[Tue, 24 Nov 2020 00:58:48 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/ fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 00:58:48 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/ fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 00:58:48 GMT] [Info] [3874643] Inside CSS: https://uhl.site/wp-content/uploads/oxygen/css/universal.css?cache=1606179525&ver=5.5.3: Image MIME type could not be discovered from reading magic bytes; rewriting dropped.
[Tue, 24 Nov 2020 00:58:48 GMT] [Info] [3874643] Cache entry is expired: https://uhl.site/ (fragment=uhl.site)
[Tue, 24 Nov 2020 00:52:46 GMT] [Info] [3874643] HTTPCache key=https://137.74.247.207/ fragment=137.74.247.207: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 00:52:46 GMT] [Info] [3874643] HTTPCache key=https://137.74.247.207/ fragment=137.74.247.207: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 00:52:27 GMT] [Info] [3874643] https://uhl.site/?action=ct_render_innercontent&nonce=4e7b57bd83&post_id=125:115: CSS parser increased size of CSS file https://uhl.site/?action=ct_render_innercontent&nonce=4e7b57bd83&post_id=125 by 57 bytes.
[Tue, 24 Nov 2020 00:52:27 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/?action=ct_render_innercontent&nonce=4e7b57bd83&post_id=125 fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 00:52:27 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/?action=ct_render_innercontent&nonce=4e7b57bd83&post_id=125 fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 00:52:27 GMT] [Info] [3874643] Lone background-position found: Cannot sprite.

Nginx main debug log:

2020/11/24 02:13:52 [warn] 3874643#0: [ngx_pagespeed 1.13.35.2-0] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
2020/11/24 02:13:52 [info] 3874643#0: [ngx_pagespeed 1.13.35.2-0] Need to check cache size against target 1048576000
2020/11/24 02:13:53 [debug] 3874643#0: [ngx_pagespeed 1.13.35.2-0] [1124/021353:VERBOSE1:proxy_fetch.cc(532)] Attaching RewriteDriver 0x7fd621ccb000 to HtmlRewriter 0x7fd63b301c00
2020/11/24 02:13:53 [debug] 3874643#0: [ngx_pagespeed 1.13.35.2-0] [1124/021353:VERBOSE1:proxy_fetch.cc(577)] Parse successfully started.
2020/11/24 02:13:53 [debug] 3874643#0: [ngx_pagespeed 1.13.35.2-0] [1124/021353:VERBOSE1:proxy_fetch.cc(993)] Fetch result:1 https://uhl.site/ : 200
2020/11/24 02:13:53 [debug] 3874643#0: [ngx_pagespeed 1.13.35.2-0] [1124/021353:VERBOSE1:proxy_fetch.cc(532)] Attaching RewriteDriver 0x7fd621ccb000 to HtmlRewriter 0x7fd61224fe00
2020/11/24 02:13:53 [debug] 3874643#0: [ngx_pagespeed 1.13.35.2-0] [1124/021353:VERBOSE1:proxy_fetch.cc(577)] Parse successfully started.
2020/11/24 02:13:53 [debug] 3874643#0: [ngx_pagespeed 1.13.35.2-0] [1124/021353:VERBOSE1:proxy_fetch.cc(993)] Fetch result:1 https://uhl.site/ : 200
2020/11/24 02:13:53 [info] 3874643#0: [ngx_pagespeed 1.13.35.2-0] Unable to insert object of size: 38080, cache limit is: 35616
2020/11/24 02:13:56 [warn] 3874643#0: [ngx_pagespeed 1.13.35.2-0] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
2020/11/24 02:13:56 [info] 3874643#0: [ngx_pagespeed 1.13.35.2-0] Need to check cache size against target 1048576000
2020/11/24 02:13:56 [warn] 3874643#0: [ngx_pagespeed 1.13.35.2-0] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
2020/11/24 02:13:56 [info] 3874643#0: [ngx_pagespeed 1.13.35.2-0] Need to check cache size against target 1048576000
2020/11/24 02:13:56 [warn] 3874643#0: [ngx_pagespeed 1.13.35.2-0] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
2020/11/24 02:13:56 [info] 3874643#0: [ngx_pagespeed 1.13.35.2-0] Need to check cache size against target 1048576000
2020/11/24 02:13:56 [warn] 3874643#0: [ngx_pagespeed 1.13.35.2-0] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!.  Doing an extra cache clean to be safe.
2020/11/24 02:13:56 [info] 3874643#0: [ngx_pagespeed 1.13.35.2-0] Need to check cache size against target 1048576000
2020/11/24 02:14:04 [debug] 3874643#0: [ngx_pagespeed 1.13.35.2-0] [1124/021404:VERBOSE1:proxy_fetch.cc(532)] Attaching RewriteDriver 0x7fd63b1cd800 to HtmlRewriter 0x7fd63b301d00
2020/11/24 02:14:04 [debug] 3874643#0: [ngx_pagespeed 1.13.35.2-0] [1124/021404:VERBOSE1:proxy_fetch.cc(993)] Fetch result:1 https://uhl.site/ : 200
2020/11/24 02:14:05 [debug] 3874643#0: *2162 Passing on content handling for non-pagespeed resource 'http://127.0.0.1/nginx_status'
2020/11/24 02:14:09 [debug] 3874643#0: [ngx_pagespeed 1.13.35.2-0] [1124/021409:VERBOSE1:proxy_fetch.cc(532)] Attaching RewriteDriver 0x7fd63b1cd800 to HtmlRewriter 0x7fd63b301d00
2020/11/24 02:14:09 [debug] 3874643#0: [ngx_pagespeed 1.13.35.2-0] [1124/021409:VERBOSE1:proxy_fetch.cc(993)] Fetch result:1 https://uhl.site/ : 200
2020/11/24 02:14:16 [debug] 3874643#0: [ngx_pagespeed 1.13.35.2-0] [1124/021416:VERBOSE1:proxy_fetch.cc(532)] Attaching RewriteDriver 0x7fd63b1cd800 to HtmlRewriter 0x7fd63b301d00
2020/11/24 02:14:16 [debug] 3874643#0: [ngx_pagespeed 1.13.35.2-0] [1124/021416:VERBOSE1:proxy_fetch.cc(993)] Fetch result:1 https://uhl.site/ : 200

@uhlhosting
Copy link
Author

Is this path normal?

/mnt/ram/pagespeed/shm_metadata_cache/snapshot/,2Fmnt/ram/pagespeed/metadata_cache

Initially I created the /mnt/ram/pagespeed/

Is this normal for pagespeed to recreate the same path?

@Lofesa
Copy link

Lofesa commented Nov 24, 2020

Well....

[Tue, 24 Nov 2020 01:06:40 GMT] [Warning] [3868463] Failed to read cache clean timestamp /mnt/ram/pagespeed/!clean!time!
Have the user that runs nginx write permission on /mnt/ram/pagespeed/? If yes, do:
`touch /mnt/ram/pagespeed/!clean!time!``
logged as these user and see what happens.

[Tue, 24 Nov 2020 01:06:35 GMT] [Info] [3868463] Unable to insert object of size: 38080, cache limit is: 35616
You have some cache sort in size, not necesarly pagespeed related, maybe fastcgi cache or other

[Tue, 24 Nov 2020 01:06:19 GMT] [Info] [3874643] HTTPCache key=https://uhl.site/ fragment=uhl.site: remembering recent failure for 299 seconds.
[Tue, 24 Nov 2020 01:06:19 GMT] [Error] [3868463] PageSpeed Serf fetch failure rate extremely high; only 0 of 534 recent fetches fully successful; is fetching working?
Pagespeed is unable to fecht resources, and remember the failure for 299 seconds.
Have you set correctly the LoadFromFile? Have you set correctly the Fechthttps?

/mnt/ram/pagespeed/shm_metadata_cache/snapshot/,2Fmnt/ram/pagespeed/metadata_cache

Seems you have enabled
pagespeed ShmMetadataCacheCheckpointIntervalSec 300;
This makes the metadata cache stored in shm memory to copy it to disk (in this case every 5min.) and don´t losse the info between restarts

Should I disable gzip also, same for brotli?

The problem with gzip/brotli comes when you enable gzip compression in pagespeed ( pagespeed HttpCacheCompressionLevel 9;) and will use brotli. When You use HttpCacheCompressionLevel pagespeed resources are served gziped, no matter if you have brotli in plaze. if you will all resources brotli compressed, you need set pagespeed HttpCacheCompressionLevel 0;

@uhlhosting
Copy link
Author

The problem with gzip/brotli comes when you enable gzip compression in pagespeed ( pagespeed HttpCacheCompressionLevel 9;) and will use brotli. When You use HttpCacheCompressionLevel pagespeed resources are served gziped, no matter if you have brotli in plaze. if you will all resources brotli compressed, you need set pagespeed HttpCacheCompressionLevel 0;

It seems i dont have such variable set at all.

I recreated the !clean!time! and gave it rights.

I have completly disabled fastcgi cache.

Here is my last configs:

Archive 2.zip

@Lofesa
Copy link

Lofesa commented Nov 24, 2020

At some point you have it
https://gist.github.com/uhlhosting/634ce18b5f30f9dcb22e931ccc500ecc#file-nginx-conf-L104
If you use brotli and will get pagespeed resources compressed by brotli, you need to set it to 0, because the default value is 9
Why is your site downloading 2 times https//uhl.site whit diferents headers?

Captura1
Captura

@uhlhosting
Copy link
Author

uhlhosting commented Nov 24, 2020

Hi,

I have updated the config file and since the one you had has changed, all pagespeed variables are in the files i sent in .zip.

  gzip off;
	gzip_disable "MSIE [1-6]\.";
	gzip_static on;
	gzip_comp_level 8;
	gzip_http_version 1.1;
	gzip_proxied any;
	gzip_vary on;
	gzip_buffers 16 8k;
	gzip_min_length 111;
	gzip_types *;	
	
  brotli off;
    brotli_static on;
    brotli_min_length 1400;
    brotli_buffers 32 8k;
    brotli_comp_level 0;
    brotli_types *;

In Safari I can notice this on console when logged in wp:

image

text/plain
Resource Type	Image
Location
Full URL	https://uhl.site/ngx_pagespeed_beacon?ets=load:381&rload=1041&nav=0&dns=1&connect=1&req_start=197&ttfb=381&dwld=5&dom_c=675&nt=1&ifr=0&dpr=2&ref=https%3A%2F%2Fuhl.site%2Fhello-world%2F&url=https%3A%2F%2Fuhl.site%2F
Scheme	https
Host	uhl.site
Path	/ngx_pagespeed_beacon
Query String	ets=load:381&rload=1041&nav=0&dns=1&connect=1&req_start=197&ttfb=381&dwld=5&dom_c=675&nt=1&ifr=0&dpr=2&ref=https%3A%2F%2Fuhl.site%2Fhello-world%2F&url=https%3A%2F%2Fuhl.site%2F
Filename	ngx_pagespeed_beacon
Request & Response
Method	

And a so called image that never seem to load properly, yet no idea what that could be, and console is not giving more.

text/html
Resource Type	Image
Location
Full URL	https://uhl.site/
Scheme	https
Host	uhl.site
Path	/
Filename	
Request & Response
Method	—
Protocol	—
Priority	—
Cached	No
Status	—
Code	—
Error	Unknown error
IP Address	—
Connection ID	—
Encoded	—
Decoded	—
Transferred	—
Compressed	No
Compression	

Also I noticed in chrome there is another error in console:

[Deprecation] chrome.loadTimes() is deprecated, instead use standardized API: Paint Timing. https://www.chromestatus.com/features/5637885046816768.
k @ (index):161
(anonymous) @ (index):163
load (async)
f.c @ (index):163
(anonymous) @ (index):165

this seems to be related with some js generated by pagespeed.

What should I try next?

I noticed that sometimes pages loads without pagespeed, and sometimes with it. Still getting the whitepage and on few refreshes its hittinng the pagespeed yet also without it.

@uhlhosting
Copy link
Author

It seems now im warned by pagespeed and lighthouse that:

Enable text compression
0.16 s
Text-based resources should be served with compression (gzip, deflate or brotli) to minimize total network bytes. Learn more.

I was hoping pagespeed can run with existing compression or will serve by default compressed content to avoid such warnings.

@Lofesa
Copy link

Lofesa commented Nov 24, 2020

Hi
ngx_pagespeed_beacon are POST request that returns to the server info about the client, like the client viewport, screen size....
The POST request is needed for some pagespeed filters like the resize_rendered_image_dimensions and soo. And I have not errors with it in you page (when are not a blank page)

As far as I can see, you have excluded some files (with pagespeed Disallow) from pagespeed so these files are enterely under nginx control.
When a file is under pagespeed "radar" they have an etag header like etag="W/0" or etag="PSA/xxxxxx", the files that are not conpresed have etag from nginx and don´t have content encoding header.
As you can see in the images, url rewrited by pagespeed are gziped, despite you have brotli, because you don´t have set
`pagespeed HttpCacheCompressionLevel 0;

This message [Deprecation] chrome.loadTimes() is deprecated, instead use standardized API: Paint Timing. comes from the filter pagespeed EnableFilters add_instrumentation; there is a PR #1802 to solve these issue, but is not applied to the pgespeed module.
`
Captura

Captura1

@uhlhosting
Copy link
Author

I have set the pagespeed HttpCacheCompressionLevel 0; . Still I hit the white blank pages, and another issue is that any link after uhl.site/testme.php will hit the blog page, and not a 404 page. So i think the last change suggested to change from
try_files $uri =404;
this try to find a file that match the uri and if not found return a 404. Better try to use this
try_files $uri $uri/ /index.php$is_args$args ; this rule is already in rewrite url, since this is specific to wordpress. Yet by changing that maybe that affects now and everything I write after / with .php in end will hit the blog page, thats not expected behaviour or is this normal with pagespeed?

@uhlhosting
Copy link
Author

uhlhosting commented Nov 24, 2020

It seems the errorrs are visible only when i am logged in, or maybe is browser specific will dig this.
Also when i am logged in, I do not seem to get the blank pages at all.
@Lofesa any idea what can be causing this blank pages?
brotli is off, i added the mentioned variable in place, fastcgi its off. There is opcache on php, can that interfere with pagespeed in any ways?

@Lofesa
Copy link

Lofesa commented Nov 25, 2020

Whe I have advised about this:

For example, in you fastcgi.conf have you a line like:
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
or in the uhl.site.conf there is this at line 101:
try_files $uri =404;
this try to find a file that match the uri and if not found return a 404. Better try to use this
try_files $uri $uri/ /index.php$is_args$args ;

This file and this line are the php location for wordpress. I use some like this in a server block:

server {
        try_files $uri $uri/ /index.php$is_args$args;
        location ~ \.php(/|$) {
                fastcgi_split_path_info ^(.+?\.php)(/.*)$;
                try_files $uri =404;
                include default.d/fastphp.conf;
        }
}

What happens in your site when pagespeed is off? (this maybe achieved with https://uhl.site/?PageSpeed=off)
1.- assets have 2 cache control headers:

cache-control: max-age=31536000
cache-control: public, no-transform

2.- Are not compressed, so your config for gzip and brotli are not working, look at where you included the file with gzip and brotli config
3.- https://uhl.site is downloaded 2 times with different http headers. When pagespeed is enabled, 1 have x-page-speed
header and the other not, 1 have x-cache=HIT and the other some times have x-cache= HIT and others have x-cache=From uhl.site
Have you a loadbalancer in place? Why this happen? When the blank page comes the http headers don´t have x-page-speed and have x-cache=HIT
Have any compress plugin in the worpress?

@uhlhosting
Copy link
Author

Updated fresh config file: https://gist.github.com/uhlhosting/f2ed6e353dd04c94f0997b8b31c175b2

  1. I have reenabled gzip and brotli, here I am confused, should they be enabled or disabled. Is there a fallback mechanism or a reason pagespeed wont work on some cases, and then will revert to current config without pagespeed.

  2. Now the cache control is solved no more duplicates, it was that some files had the directive in their location, i cleaned that.

  3. this should be fixed now. not downloading 2 headers.

It seems the uhl.site document is called 2 times, one time has duplicated headers, still this seem so much a bug in pagespeed or missconfiguration, while the main uhl.site is theree with normal headers, second entry it has all duplicates and a wrong chain.

image

image

There is no loadbalancer in place, this was default config, and I added the fastcgi config like here:
https://forum.aapanel.com/d/593-how-to-enable-fastcgi-cache-for-wordpress-with-aapanel

. This remains a dilema, now you got all my latest config files. Maybe now after i reset the vhost will be easier to debug.

@Lofesa
Copy link

Lofesa commented Dec 7, 2020

If you disallow the domain, none of the url from the domain will be optimzed.
Think that pagespeed Disallow uses a regular expresion so you can use any regular expresion that fits you needs.
These you point or pagespeed Disallow */status/*; or maybe one more specific pagespeed Disallow /status/format/json$ps_dollar;

@uhlhosting
Copy link
Author

I think also

	location /status {
		allow xxx.xxx.xxx.xxx;
		allow xxx.xxx.xxx.xxx;
		deny all;
		vhost_traffic_status_display;
		vhost_traffic_status_display_format html;
		pagespeed off;
	}

Would work, now I am not sure what would be a better or more preffered solution from the two.

@uhlhosting
Copy link
Author

What when the domain is another? Like in this case:

Could not rewrite resource in-place because URL is not in cache: http://127.0.0.1/nginx_status

@Lofesa
Copy link

Lofesa commented Dec 8, 2020

Both of 2 are rigth, the result is what matter: url out of pagespeed.
If you chosse the location way, pagespeed unplugged; is better than pagespeed off;
Whit pagespeed off; IPRO still working, with unplugged, pagespeed is totally off.
About the 127.0.0.1... what are you running here? have you a server block for 127.0.0.1? If you have it, and are running thing that don´t need pagespeed, put pagespeed unplugged; in it

@uhlhosting
Copy link
Author

uhlhosting commented Dec 8, 2020

@last reply, yes there must be a server block 127.0.0.1 . for stub status and /status page from internal nginx.

  • will replace now all pagespeed off/unplugged.
  • discovered that the stub also contains all the php-fpm variables invoked.
  • what would be best practice to add pagespeed unnplugged; in this case:
server {
        listen 80;
        server_name 127.0.0.1;
        allow 127.0.0.1;
        location /nginx_status {
                stub_status on;
                access_log off;
        }
	location /phpfpm_52_status {
                fastcgi_pass unix:/tmp/php-cgi-52.sock;
                include fastcgi_params;
                fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;

The location /phpfpm_5x_status continues to all php versions up to 7.4 .

Should I add unnplugged to each location, or the server should handle them all directly?

Really appreciated all the time invested in replying and every feedback you provided, lifetime saver, alto I feel could write a book with all i've learned so far, still lot to learn and improve.

It seems every now and then I come upon some newer configs especially for Wordpress, and I then follow up and see results.

I had managed to take the pagespeed from 180ms full load to 300ms full load. I am not completely sure what can cause all that oscilation. Is there anything visible in my config, allowing it to oscilate so much?

Also I was once checking 1 week ago the cache side of pagespeed, I used to have there inside 2 folders one so called v3 and the SHM folder, also I have a setting enabled, local_cache or such, you mentioned to disable it, isnt the local cache better than shm cache ? Cant they be used together?

What are the debug variabled to see where issues occur and where pagespeed have troubles optimising, any good practices to find these speed gaps that keep oscilating?

Here is last config version with updates on all suggestions received, some variables such as Outline* or Inline* are merely to be ready in place when Il be running tests to see what is better, to inline JS/CSS or to outline it. I have seen lots of configs where people apply both inline and outline, i know you mentioned this is wrong and should be avoided, and so I do.

Version: 14: on

Filters
ah	Add Head
ij	Canonicalize Javascript library URLs
cw	Collapse Whitespace
cc	Combine Css
ch	Combine Heads
jc	Combine Javascript
gp	Convert Gif to Png
jp	Convert Jpeg to Progressive
jw	Convert Jpeg To Webp
mc	Convert Meta Tags
pj	Convert Png to Jpeg
wa	Convert animated images to WebP
ws	When converting images to WebP, prefer lossless conversions
du	Decode Rewritten URLs
dd	Dedup Inlined Images
di	Delay Images
ea	Elide Attributes
ec	Cache Extend Css
ei	Cache Extend Images
ep	Cache Extend PDFs
es	Cache Extend Scripts
fc	Fallback Rewrite Css 
if	Flatten CSS Imports
hpsr	Hint Preload of Subresources
hw	Flushes html
sm	Include JS Source Maps
ci	Inline Css
ii	Inline Images
il	Inline @import to Link
ji	Inline Javascript
io	In-place optimize for browser
idp	Insert DNS Prefetch
id	Insert Image Dimensions
js	Jpeg Subsampling
ll	Lazyload Images
tu	Left Trim Urls
cj	Move Css Above Scripts
cm	Move Css To Head
co	Outline Css
jo	Outline Javascript
pc	Add pedantic types
pr	Prioritize Critical Css
rj	Recompress Jpeg
rp	Recompress Png
rw	Recompress Webp
rc	Remove Comments
rq	Remove Quotes
ri	Resize Images
rm	Resize Mobile Images
ir	Resize to Rendered Image Dimensions
rx	Responsive Images
rz	Responsive Images Zoom
cf	Rewrite Css
rd	Rewrite Domains
jm	Rewrite External Javascript
jj	Rewrite Inline Javascript
cs	Rewrite Style Attributes
cu	Rewrite Style Attributes With Url
cp	Strip Image Color Profiles
md	Strip Image Meta Data

Options
  AddOptionsToUrls (aou)                               False
  AdminPath (nap)                                      /pagespeed_admin
  AllowVaryOn (avo)                                    Auto
  AvoidRenamingIntrospectiveJavascript (aris)          True
  BeaconUrl (bu)                                       /ngx_pagespeed_beacon
  CombineAcrossPaths (cp)                              True
  ConsolePath (ncp)                                    /pagespeed_console
  CriticalImagesBeaconEnabled (cibe)                   True
  CssFlattenMaxBytes (cf)                              102400
  CssImageInlineMaxBytes (cii)                         3072
  CssInlineMaxBytes (ci)                               20480
  CssOutlineMinBytes (co)                              40960
  DisableRewriteOnNoTransform (drnt)                   False
  DomainRewriteHyperlinks (drh)                        True
  EnableCachePurge (euci)                              True
  EnableRewriting (e)                                  1
  FetchHttps (fhs)                                     enable,allow_self_signed
  FetchWithGzip (afg)                                  True
  FileCacheCleanIntervalMs (afcci)                     86400000
  FileCacheInodeLimit (afcl)                           1000000
  FileCachePath (afcp)                                 /mnt/ram/pagespeed
  FileCacheSizeKb (afc)                                1024000
  FinderPropertiesCacheExpirationTimeMs (fpce)         720000000
  ForbidAllDisabledFilters (fadf)                      True
  GlobalAdminPath (ngap)                               /pagespeed_global_admin
  GlobalStatisticsPath (ngsp)                          /ngx_pagespeed_global_statistics
  HonorCsp (hcsp)                                      True
  HttpCacheCompressionLevel (hccl)                     0
  ImageInlineMaxBytes (ii)                             4096
  ImageJpegNumProgressiveScans (ijps)                  -1
  ImageJpegNumProgressiveScansForSmallScreens (ijpst)  -1
  ImageLimitOptimizedPercent (ip)                      100
  ImageLimitResizeAreaPercent (ia)                     100
  ImageMaxRewritesAtOnce (im)                          -1
  ImageRecompressionQuality (irq)                      77
  ImageResolutionLimitBytes (irlb)                     32000000
  ImplicitCacheTtlMs (ict)                             31536000000
  InPlaceResourceOptimization (ipro)                   True
  InPlaceRewriteDeadlineMs (iprdm)                     33
  InPlaceSMaxAgeSec (ipsm)                             10
  JpegRecompressionQuality (iq)                        -1
  JpegRecompressionQualityForSmallScreens (iqss)       66
  JsInlineMaxBytes (ji)                                20480
  JsOutlineMinBytes (jo)                               40960
  LazyloadImagesAfterOnload (llio)                     False
  LazyloadImagesBlankUrl (llbu)                        //uhl.site/wp-content/uploads/psa/1.gif
  LoadFromFileCacheTtlMs (lfct)                        31536000000
  LogDir (ald)                                         /var/log/pagespeed
  LowercaseHtmlNames (lh)                              True
  LRUCacheByteLimit (alcb)                             16384
  LRUCacheKbPerProcess (alcp)                          8192
  MaxCacheableContentLength (rcl)                      -1
  MaxCombinedCssBytes (xcc)                            -1
  MaxCombinedJsBytes (xcj)                             51200
  MaxInlinedPreviewImagesIndex (mdii)                  -1
  MaxSegmentLength (uss)                               2048
  MessagesPath (nmp)                                   /ngx_pagespeed_message
  MinImageSizeLowResolutionBytes (nislr)               3072
  ModifyCachingHeaders (mch)                           True
  NoTransformOptimizedImages (ntoi)                    True
  PreserveUrlRelativity (pur)                          True
  PrivateNotVaryForIE (pnvie)                          False
  ProgressiveJpegMinBytes (jp)                         5120
  PurgeMethod (pm)                                     PURGE
  RedisServer (rds)                                    127.0.0.1:6379
  ReportUnloadTime (rut)                               True
  RespectVary (rv)                                     True
  RewriteDeadlinePerFlushMs (rdm)                      111
  RewriteLevel (l)                                     Core Filters
  ShmMetadataCacheCheckpointIntervalSec (smci)         300
  SslCertDirectory (assld)                             /etc/pki/tls/certs
  SslCertFile (asslf)                                  /etc/pki/tls/cert.pem
  Statistics (ase)                                     True
  StatisticsLogging (asle)                             True
  StatisticsLoggingIntervalMs (asli)                   60000
  StatisticsLoggingMaxFileSizeKb (aslfs)               1024
  StatisticsPath (nsp)                                 /ngx_pagespeed_statistics
  SupportNoScriptEnabled (snse)                        False
  WebpRecompressionQuality (iw)                        77
  WebpRecompressionQualityForSmallScreens (iwss)       66
  XHeaderValue (xhv)                                   Empowered By UHL Agency

Domain Lawyer
  https://uhl.site/ Auth

Invalidation Timestamp: Sun, 06 Dec 2020 18:52:48 GMT (1607280768410)

@uhlhosting
Copy link
Author

uhlhosting commented Dec 8, 2020

I just notice first console error, in long time now:

[Tue, 08 Dec 2020 18:03:02 GMT] [Error] [2496787] [/var/log/pagespeed/stats_log_dummy_hostname:-1352:0] opening input file: No such file or directory

Are there any pagespeed variables to keep the log folder tidy, and make sure is not overusing the space. Seems I have there entries since 24 nov.

Any idea what could caused it? Never had anything to log before, the location is present and always worked.

@uhlhosting
Copy link
Author

Is there a way to make the combined css's shorter especially is there even possible to change the pagespeed addition to urls, maybe into something like ps . would save lot of chars like this especially when combining urls.

https://uhl.site/wp-content/uploads/oxygen/css/A.main-125.css,,qcache==1607223338,,aver==5.5.3+home-128.css,,qcache==1607448533,,aver==5.5.3+universal.css,,qcache==1607448533,,aver==5.5.3,Mcc.ROlJpxJJcS.css.pagespeed.cf.YauDLLqxjB.css

@Lofesa
Copy link

Lofesa commented Dec 9, 2020

Should I add unnplugged to each location, or the server should handle them all directly?
Put it one time, out of any location but in the server block.

server {
        listen 80;
        server_name 127.0.0.1;
        allow 127.0.0.1;
        pagespeed unplugged;
        location /nginx_status {

I had managed to take the pagespeed from 180ms full load to 300ms full load.

Maybe you have added more content to the page. But have:
InPlaceRewriteDeadlineMs
RewriteDeadlinePerFlushMs
set to values more higth than the default.

Also I was once checking 1 week ago the cache side of pagespeed, I used to have there inside 2 folders one so called v3 and the SHM folder,

These are diferrent caches... one for rewrited resources (those that have pagespeed in the url), one for metadata about resources (what url belongs to a webp version of a jpg url ando so..). SHM is a in memory cache, but you have enabled to write it to disk every 5min (ShmMetadataCacheCheckpointIntervalSec) to survive between restarts.

Local cache (pagespeed EnableFilters local_storage_cache;) is for others purposes. Read https://www.modpagespeed.com/doc/filter-local-storage-cache.

What are the debug variabled to see where issues occur and where pagespeed have troubles

https://uhl.site/?PageSpeedFilters=+debug
You can enable/disable some filters (+ or -) as url parameters.

i know you mentioned this is wrong and should be avoided, and so I do.

Inlining maybe wrong when http2 is in place.

I just notice first console error, in long time now:

Maybe you have deleted a file in use... There is no directives to clean up the statistics files.

Is there a way to make the combined css's shorter especially is there even possible to change the pagespeed addition to urls, maybe into something like ps

No and no. Maybe you can combine less files with pagespeed MaxCombinedCssBytes MaxBytes;

@uhlhosting
Copy link
Author

Maybe you have added more content to the page. But have:
InPlaceRewriteDeadlineMs
RewriteDeadlinePerFlushMs
set to values more higth than the default.

What would be the default, is there a way to see all default variables including those I did not setup?

@Lofesa
Copy link

Lofesa commented Dec 9, 2020

The place to see it is the doc web.
For example:
When InPlaceResourceOptimization is enabled, PageSpeed uses a default deadline of 10ms
here: https://www.modpagespeed.com/doc/system#ipro_deadline
or
When PageSpeed attempts to rewrite an uncached (or expired) resource it will wait for up to 10ms per flush
here: https://www.modpagespeed.com/doc/system#rewrite_deadline

whit RewriteDeadlinePerFlushMs (rdm) 111 you are adding 91ms to the default, these ms are added to the time the request take for completion.

How the deadlines work? If the resource takes more than the configured time, pagespeed serve a unoptimized url AND in backgruond it optimize the resource so the next time the resource is requested it get optimized. You can wait to the resource optimization, but these time you wait is added to the request completion.

@uhlhosting
Copy link
Author

[Wed, 09 Dec 2020 11:07:28 GMT] [Info] [2496787] Initializing shared memory for path: /mnt/ram/pagespeed purge .
[Wed, 09 Dec 2020 11:07:28 GMT] [Info] [2496787] Initializing shared memory for path: <unplugged>.
[Wed, 09 Dec 2020 11:07:28 GMT] [Info] [2496787] Reusing shared memory for path: /mnt/ram/pagespeed purge .
[Wed, 09 Dec 2020 11:07:28 GMT] [Info] [2496787] Reusing shared memory for path: /mnt/ram/pagespeed purge .
[Wed, 09 Dec 2020 11:07:28 GMT] [Info] [2496787] Reusing shared memory for path: /mnt/ram/pagespeed purge .
[Wed, 09 Dec 2020 11:07:28 GMT] [Info] [2496787] Reusing shared memory for path: /mnt/ram/pagespeed purge .
[Wed, 09 Dec 2020 11:07:28 GMT] [Info] [2496787] Reusing shared memory for path: /mnt/ram/pagespeed purge .
[Wed, 09 Dec 2020 11:07:28 GMT] [Info] [2496787] Reusing shared memory for path: /mnt/ram/pagespeed purge .
[Wed, 09 Dec 2020 11:07:28 GMT] [Info] [2496787] Reusing shared memory for path: /mnt/ram/pagespeed purge .
[Wed, 09 Dec 2020 11:07:28 GMT] [Info] [2496787] Reusing shared memory for path: /mnt/ram/pagespeed purge .
[Wed, 09 Dec 2020 11:07:28 GMT] [Info] [2496787] Reusing shared memory for path: /mnt/ram/pagespeed purge .

This si always my starting console log, any idea what is causing all the duplicated entries in same time? Is this normal behaviour? And from where the part?

@Lofesa
Copy link

Lofesa commented Dec 9, 2020

In how many servers blocks have you enabled the shared memory path? or in how many servers block have you an include file that contains the shared memory path?

Initializing shared memory for path: unplugged.

Have you set a shared memory path in a server with pagespeed unplugged;?

@uhlhosting
Copy link
Author

Have you set a shared memory path in a server with pagespeed unplugged;?

Not that I know of, no havet done this.

@Lofesa
Copy link

Lofesa commented Dec 9, 2020

As per this commit maybe you have a mix of server block/location where cache purge is on/off.

You need to trace where pagespeed is set to unplugged and don´t set shared memory, and where the pagespeed EnableCachePurge is set to on/off.

@uhlhosting
Copy link
Author

pagespeed EnableCachePurge is set to on/off. only in one location. I havent changed the structure of the files sincee last i sent them.

@Lofesa
Copy link

Lofesa commented Dec 10, 2020

In the last set of files you have posted, the directive is in main.conf. Where have you included this file?

@uhlhosting
Copy link
Author

Hi @Lofesa

I was a bit off server work, now back into it.

[Tue, 12 Jan 2021 08:40:05 GMT] [Info] [718939] Trying to serve rewritten resource in-place: https://uhl.site/
[Tue, 12 Jan 2021 08:40:05 GMT] [Info] [718939] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/

I am only getting this mostly nowadays in console, Isnt a way to find out why isnt the whole site indexed? Or whats causing this info. Can it be ignored? If thats the case why the repetition.

@Lofesa
Copy link

Lofesa commented Jan 12, 2021

That´s normal log.
These url, like any other url for a wordpress post or page, is not a file, and pagespeed can´t cache the url, so it tread to optimize with IPRO but no store it in their cache. Pagespeed can´t cache html.
Pagespeed "remember" this for some time (short time) and tries to optimize again when the url is requested, so fires the message again.
Is safe to ignore these messages, and you can´t do anything to suppress, maybe changing the log level to only show errors.

@uhlhosting
Copy link
Author

Need to check documentation for log level , for now havent seen anything to change this within my settings.

@uhlhosting
Copy link
Author

@Lofesa

I am keep receiving in nginx console these:

2021/01/16 13:58:25 [warn] 445981#445981: pagespeed: cannot set gzip, command not found in /www/server/nginx/conf/nginx.conf:18
2021/01/16 14:02:28 [warn] 445981#445981: pagespeed: cannot set gzip, command not found in /www/server/nginx/conf/nginx.conf:18
2021/01/16 14:03:04 [warn] 445981#445981: pagespeed: cannot set gzip, command not found in /www/server/nginx/conf/nginx.conf:18
2021/01/16 14:03:25 [warn] 445981#445981: pagespeed: cannot set gzip, command not found in /www/server/nginx/conf/nginx.conf:18

Now I havent altered the nginx.conf .

@Lofesa
Copy link

Lofesa commented Jan 16, 2021

What pagespeed/nginx version have you?
These messages are in a nginx reload? do a nginx restart a see what happens.
Line 18 of nginx.con is gzip on;?

@uhlhosting
Copy link
Author

Pagespeed latest stable, and nginx 1.19.6 .

I did restarted yet it will reappear the message.
Yes gzip is on, yet there is the option to fetch with Gzip also enabled.

@Lofesa
Copy link

Lofesa commented Jan 17, 2021

Line 18 is pagespeed FetchWithGzip on;?
You don´t need this as far as the resource request is not on other server, no wired traffic between original resource and the server with pagespeed module.

@uhlhosting
Copy link
Author

No that line is in another file thats called in nginx.conf.

In nginx conf i have normal gzip on; and brotli on;

@uhlhosting
Copy link
Author

uhlhosting commented Jan 21, 2021

@Lofesa not sure why this is now happening it seems somehow pagespeed ignored my variables:

WordPress-specific configurations, change according to your domain and installation path

pagespeed Disallow /.php*;
pagespeed Disallow /checkout/;
pagespeed Disallow /status/;
pagespeed Disallow /opui/;
pagespeed Disallow "/wp-includes/js/dist/.js";
pagespeed Disallow "/wp-includes/js/tinymce/.js";
pagespeed Disallow "*/wp-includes/js/jquery/jquery.js";

pagespeed Disallow "/wp-content/plugins/oxygen/component-framework/vendor/.js";
pagespeed Disallow "/wp-content/cache/.css";
pagespeed Disallow "/admin-bar.min.css";
pagespeed Disallow "
/dashicons.min.css";

I specifically specified not to change those files, when I try to use the oxygen builder editor I get this:

[Thu, 21 Jan 2021 14:11:17 GMT] [Info] [2165570] Script https://uhl.site/wp-includes/js/dist/vendor/moment.min.js?ver=2.26.0 didn't shrink.
[Thu, 21 Jan 2021 14:11:17 GMT] [Info] [2165570] ipro: CSS parser increased size of CSS file https://uhl.site/wp-content/plugins/piotnetforms-pro/assets/css/minify/admin.min.css?ver=1.0.69 by 57 bytes.
[Thu, 21 Jan 2021 14:11:17 GMT] [Info] [2165570] ipro: Recompressing image `https://uhl.site/wp-includes/js/thickbox/loadingAnimation.gif' (15238 -> 15238 bytes) doesn't save space; dropped.
[Thu, 21 Jan 2021 14:11:17 GMT] [Info] [2165570] ipro: Shrinking image `https://uhl.site/wp-content/plugins/falang/admin/img/icon-80x80.png' (4379 bytes) to `https://uhl.site/wp-content/plugins/falang/admin/img/xicon-80x80.png.pagespeed.ic.hN2wQBPvsU.png' (3805 bytes)
[Thu, 21 Jan 2021 14:11:18 GMT] [Info] [2165565] Trying to serve rewritten resource in-place: https://stats.uhl.site/js/plausible.js
[Thu, 21 Jan 2021 14:11:18 GMT] [Error] [2165570] [https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/image.svg:0] serf_context_run error status=111 (Connection refused)
[Thu, 21 Jan 2021 14:11:18 GMT] [Warning] [2165570] Fetch failed to start: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/image.svg
[Thu, 21 Jan 2021 14:11:18 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/image.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:18 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/image.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:18 GMT] [Error] [2165570] [https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/image-active.svg:0] serf_context_run error status=111 (Connection refused)
[Thu, 21 Jan 2021 14:11:18 GMT] [Warning] [2165570] Fetch failed to start: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/image-active.svg
[Thu, 21 Jan 2021 14:11:18 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/image-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:18 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/image-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:18 GMT] [Error] [2165570] [https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/gallery-active.svg:0] serf_context_run error status=111 (Connection refused)
[Thu, 21 Jan 2021 14:11:18 GMT] [Warning] [2165570] Fetch failed to start: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/gallery-active.svg
[Thu, 21 Jan 2021 14:11:18 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/gallery-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:18 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/gallery-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:18 GMT] [Error] [2165570] [https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/modal.svg:0] serf_context_run error status=111 (Connection refused)
[Thu, 21 Jan 2021 14:11:18 GMT] [Warning] [2165570] Fetch failed to start: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/modal.svg
[Thu, 21 Jan 2021 14:11:18 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/modal.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:18 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/modal.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:18 GMT] [Error] [2165570] [https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/shortcodewrapper-active.svg:0] serf_context_run error status=111 (Connection refused)
[Thu, 21 Jan 2021 14:11:18 GMT] [Warning] [2165570] Fetch failed to start: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/shortcodewrapper-active.svg
[Thu, 21 Jan 2021 14:11:18 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/shortcodewrapper-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:18 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/shortcodewrapper-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:19 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:19 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/video.svg active for 1029 ms
[Thu, 21 Jan 2021 14:11:19 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/video.svg
[Thu, 21 Jan 2021 14:11:19 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/video.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:19 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/video.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:20 GMT] [Info] [2165567] Trying to serve rewritten resource in-place: https://uhl.site/
[Thu, 21 Jan 2021 14:11:20 GMT] [Info] [2165567] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
[Thu, 21 Jan 2021 14:11:20 GMT] [Info] [2165567] Trying to serve rewritten resource in-place: https://uhl.site/
[Thu, 21 Jan 2021 14:11:20 GMT] [Info] [2165567] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
[Thu, 21 Jan 2021 14:11:20 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:20 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/richtext.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:20 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/richtext.svg
[Thu, 21 Jan 2021 14:11:20 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/richtext.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:20 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/richtext.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:21 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:21 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/video-active.svg active for 1024 ms
[Thu, 21 Jan 2021 14:11:21 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/video-active.svg
[Thu, 21 Jan 2021 14:11:21 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/video-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:21 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/video-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:22 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:22 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/icon.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:22 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/icon.svg
[Thu, 21 Jan 2021 14:11:22 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/icon.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:22 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/icon.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:23 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:23 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/icon-active.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:23 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/icon-active.svg
[Thu, 21 Jan 2021 14:11:23 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/icon-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:23 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/icon-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:24 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:24 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/codeblock.svg active for 1024 ms
[Thu, 21 Jan 2021 14:11:24 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/codeblock.svg
[Thu, 21 Jan 2021 14:11:24 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/codeblock.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:24 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/codeblock.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:25 GMT] [Info] [2165565] Trying to serve rewritten resource in-place: https://uhl.site/
[Thu, 21 Jan 2021 14:11:25 GMT] [Info] [2165565] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
[Thu, 21 Jan 2021 14:11:25 GMT] [Info] [2165565] Trying to serve rewritten resource in-place: https://uhl.site/
[Thu, 21 Jan 2021 14:11:25 GMT] [Info] [2165565] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
[Thu, 21 Jan 2021 14:11:25 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:25 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/codeblock-active.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:25 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/codeblock-active.svg
[Thu, 21 Jan 2021 14:11:25 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/codeblock-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:25 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/codeblock-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:26 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:26 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-sidebars.svg active for 1024 ms
[Thu, 21 Jan 2021 14:11:26 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-sidebars.svg
[Thu, 21 Jan 2021 14:11:26 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-sidebars.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:26 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-sidebars.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:27 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:27 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/widgets-active.svg active for 1024 ms
[Thu, 21 Jan 2021 14:11:27 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/widgets-active.svg
[Thu, 21 Jan 2021 14:11:27 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/widgets-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:27 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/widgets-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:28 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:28 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/testimonial.svg active for 1024 ms
[Thu, 21 Jan 2021 14:11:28 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/testimonial.svg
[Thu, 21 Jan 2021 14:11:28 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/testimonial.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:28 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/testimonial.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:29 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:29 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/testimonial-active.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:29 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/testimonial-active.svg
[Thu, 21 Jan 2021 14:11:29 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/testimonial-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:29 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/testimonial-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:30 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:30 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/textlink-active.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:30 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/textlink-active.svg
[Thu, 21 Jan 2021 14:11:30 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/textlink-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:30 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/textlink-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:31 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:31 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/iconbox-active.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:31 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/iconbox-active.svg
[Thu, 21 Jan 2021 14:11:31 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/iconbox-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:31 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/iconbox-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:32 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:32 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/progressbar.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:32 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/progressbar.svg
[Thu, 21 Jan 2021 14:11:32 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/progressbar.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:32 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/progressbar.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:33 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:33 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/section-active.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:33 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/section-active.svg
[Thu, 21 Jan 2021 14:11:33 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/section-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:33 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/section-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:34 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:34 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/toggle-active.svg active for 1025 ms
[Thu, 21 Jan 2021 14:11:34 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/toggle-active.svg
[Thu, 21 Jan 2021 14:11:34 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/toggle-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:34 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/toggle-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:35 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:35 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/easyposts-active.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:35 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/easyposts-active.svg
[Thu, 21 Jan 2021 14:11:35 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/easyposts-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:35 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/easyposts-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:35 GMT] [Error] [2165570] [https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/socialicons.svg:0] serf_context_run error status=111 (Connection refused)
[Thu, 21 Jan 2021 14:11:35 GMT] [Warning] [2165570] Fetch failed to start: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/socialicons.svg
[Thu, 21 Jan 2021 14:11:35 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/socialicons.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:35 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/socialicons.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:36 GMT] [Info] [2165570] Trying to serve rewritten resource in-place: https://uhl.site/wp-content/plugins/nginx-helper/admin/icons/css/nginx-fontello.css?ver=2.2.2
[Thu, 21 Jan 2021 14:11:36 GMT] [Info] [2165570] Trying to serve rewritten resource in-place: https://uhl.site/wp-content/plugins/nginx-helper/admin/css/nginx-helper-admin.css?ver=2.2.2
[Thu, 21 Jan 2021 14:11:36 GMT] [Info] [2165570] Trying to serve rewritten resource in-place: https://uhl.site/wp-content/plugins/nginx-helper/admin/js/nginx-helper-admin.js?ver=2.2.2
[Thu, 21 Jan 2021 14:11:36 GMT] [Info] [2165570] Inside CSS: Shrinking image `https://uhl.site/wp-content/plugins/nginx-helper/admin/icons/nginx-icon-32x32.png' (3944 bytes) to `https://uhl.site/wp-content/plugins/nginx-helper/admin/icons/xnginx-icon-32x32.png.pagespeed.ic.rFQzDhoGlK.png' (1224 bytes)
[Thu, 21 Jan 2021 14:11:36 GMT] [Info] [2165570] Trying to serve rewritten resource in-place: https://uhl.site/wp-content/plugins/nginx-helper/admin/icons/nginx-icon-32x32.png
[Thu, 21 Jan 2021 14:11:36 GMT] [Info] [2165570] ipro: Shrinking image `https://uhl.site/wp-content/plugins/nginx-helper/admin/icons/nginx-icon-32x32.png' (3944 bytes) to `https://uhl.site/wp-content/plugins/nginx-helper/admin/icons/xnginx-icon-32x32.png.pagespeed.ic.rFQzDhoGlK.png' (1224 bytes)
[Thu, 21 Jan 2021 14:11:36 GMT] [Info] [2165570] Trying to serve rewritten resource in-place: https://uhl.site/wp-content/plugins/nginx-helper/admin/icons/font/nginx-fontello.woff?7388141
[Thu, 21 Jan 2021 14:11:36 GMT] [Info] [2165570] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/wp-content/plugins/nginx-helper/admin/icons/font/nginx-fontello.woff?7388141
[Thu, 21 Jan 2021 14:11:36 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:36 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/toggle.svg active for 1074 ms
[Thu, 21 Jan 2021 14:11:36 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/toggle.svg
[Thu, 21 Jan 2021 14:11:36 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/toggle.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:36 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/toggle.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:37 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:37 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/pricingbox.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:37 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/pricingbox.svg
[Thu, 21 Jan 2021 14:11:37 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/pricingbox.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:37 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/pricingbox.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:38 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:38 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/searchform-active.svg active for 1024 ms
[Thu, 21 Jan 2021 14:11:38 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/searchform-active.svg
[Thu, 21 Jan 2021 14:11:38 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/searchform-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:38 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/searchform-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:39 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:39 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/repeater.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:39 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/repeater.svg
[Thu, 21 Jan 2021 14:11:39 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/repeater.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:39 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/repeater.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:40 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:40 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/superbox-active.svg active for 1024 ms
[Thu, 21 Jan 2021 14:11:40 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/superbox-active.svg
[Thu, 21 Jan 2021 14:11:40 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/superbox-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:40 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/superbox-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:41 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:41 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/socialicons-active.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:41 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/socialicons-active.svg
[Thu, 21 Jan 2021 14:11:41 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/socialicons-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:41 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/socialicons-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:42 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:42 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/repeater-active.svg active for 1024 ms
[Thu, 21 Jan 2021 14:11:42 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/repeater-active.svg
[Thu, 21 Jan 2021 14:11:42 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/repeater-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:42 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/repeater-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:44 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:44 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/slider-active.svg active for 1024 ms
[Thu, 21 Jan 2021 14:11:44 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/slider-active.svg
[Thu, 21 Jan 2021 14:11:44 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/slider-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:44 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/slider-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:45 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:45 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/slider.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:45 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/slider.svg
[Thu, 21 Jan 2021 14:11:45 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/slider.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:45 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/slider.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:46 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:46 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/tabs.svg active for 1024 ms
[Thu, 21 Jan 2021 14:11:46 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/tabs.svg
[Thu, 21 Jan 2021 14:11:46 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/tabs.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:46 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/tabs.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:47 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:47 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/tabs-active.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:47 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/tabs-active.svg
[Thu, 21 Jan 2021 14:11:47 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/tabs-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:47 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/tabs-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:48 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:48 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/superbox.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:48 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/superbox.svg
[Thu, 21 Jan 2021 14:11:48 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/superbox.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:48 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/superbox.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:48 GMT] [Info] [2165570] Trying to serve rewritten resource in-place: https://uhl.site/
[Thu, 21 Jan 2021 14:11:48 GMT] [Info] [2165570] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
[Thu, 21 Jan 2021 14:11:48 GMT] [Info] [2165570] Trying to serve rewritten resource in-place: https://uhl.site/
[Thu, 21 Jan 2021 14:11:48 GMT] [Info] [2165570] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
[Thu, 21 Jan 2021 14:11:49 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:49 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/progressbar-active.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:49 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/progressbar-active.svg
[Thu, 21 Jan 2021 14:11:49 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/progressbar-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:49 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/progressbar-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:49 GMT] [Info] [2165562] Shutting down PageSpeed child
[Thu, 21 Jan 2021 14:11:50 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:50 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/menu.svg active for 1024 ms
[Thu, 21 Jan 2021 14:11:50 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/menu.svg
[Thu, 21 Jan 2021 14:11:50 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/menu.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:50 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/menu.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:51 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:51 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/iconbox.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:51 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/iconbox.svg
[Thu, 21 Jan 2021 14:11:51 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/iconbox.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:51 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/iconbox.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:52 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:52 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/menu-active.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:52 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/menu-active.svg
[Thu, 21 Jan 2021 14:11:52 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/menu-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:52 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/menu-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:53 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:53 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/shortcode-active.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:53 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/shortcode-active.svg
[Thu, 21 Jan 2021 14:11:53 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/shortcode-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:53 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/shortcode-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:54 GMT] [Info] [2165570] Trying to serve rewritten resource in-place: https://uhl.site/
[Thu, 21 Jan 2021 14:11:54 GMT] [Info] [2165570] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
[Thu, 21 Jan 2021 14:11:54 GMT] [Info] [2165570] Trying to serve rewritten resource in-place: https://uhl.site/
[Thu, 21 Jan 2021 14:11:54 GMT] [Info] [2165570] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
[Thu, 21 Jan 2021 14:11:54 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:54 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/commentslist.svg active for 1025 ms
[Thu, 21 Jan 2021 14:11:54 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/commentslist.svg
[Thu, 21 Jan 2021 14:11:54 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/commentslist.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:54 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/commentslist.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:55 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:55 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/commentslist-active.svg active for 1021 ms
[Thu, 21 Jan 2021 14:11:55 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/commentslist-active.svg
[Thu, 21 Jan 2021 14:11:55 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/commentslist-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:55 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/commentslist-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:56 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:56 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/commentform.svg active for 1024 ms
[Thu, 21 Jan 2021 14:11:56 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/commentform.svg
[Thu, 21 Jan 2021 14:11:56 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/commentform.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:56 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/commentform.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:57 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:57 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/commentform-active.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:57 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/commentform-active.svg
[Thu, 21 Jan 2021 14:11:57 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/commentform-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:57 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/commentform-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:58 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:58 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/loginform.svg active for 1024 ms
[Thu, 21 Jan 2021 14:11:58 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/loginform.svg
[Thu, 21 Jan 2021 14:11:58 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/loginform.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:58 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/loginform.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:59 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:11:59 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/widgets.svg active for 1023 ms
[Thu, 21 Jan 2021 14:11:59 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/widgets.svg
[Thu, 21 Jan 2021 14:11:59 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/widgets.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:11:59 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/widgets.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:00 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:00 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/loginform-active.svg active for 1024 ms
[Thu, 21 Jan 2021 14:12:00 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/loginform-active.svg
[Thu, 21 Jan 2021 14:12:00 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/loginform-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:00 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/loginform-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:01 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:01 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/soundcloud-active.svg active for 1023 ms
[Thu, 21 Jan 2021 14:12:01 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/soundcloud-active.svg
[Thu, 21 Jan 2021 14:12:01 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/soundcloud-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:01 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/soundcloud-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:02 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:02 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-dynamicdata.svg active for 1024 ms
[Thu, 21 Jan 2021 14:12:02 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-dynamicdata.svg
[Thu, 21 Jan 2021 14:12:02 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-dynamicdata.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:02 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-dynamicdata.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:03 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:03 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-arrow.svg active for 1088 ms
[Thu, 21 Jan 2021 14:12:03 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-arrow.svg
[Thu, 21 Jan 2021 14:12:03 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-arrow.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:03 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-arrow.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:04 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:04 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-widgets.svg active for 1023 ms
[Thu, 21 Jan 2021 14:12:04 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-widgets.svg
[Thu, 21 Jan 2021 14:12:04 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-widgets.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:04 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-widgets.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:04 GMT] [Info] [2165567] Trying to serve rewritten resource in-place: https://uhl.site/
[Thu, 21 Jan 2021 14:12:04 GMT] [Info] [2165567] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
[Thu, 21 Jan 2021 14:12:04 GMT] [Info] [2165567] Trying to serve rewritten resource in-place: https://uhl.site/
[Thu, 21 Jan 2021 14:12:04 GMT] [Info] [2165567] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
[Thu, 21 Jan 2021 14:12:05 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:05 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/easyposts.svg active for 1023 ms
[Thu, 21 Jan 2021 14:12:05 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/easyposts.svg
[Thu, 21 Jan 2021 14:12:05 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/easyposts.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:05 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/easyposts.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:06 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:06 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-components.svg active for 1024 ms
[Thu, 21 Jan 2021 14:12:06 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-components.svg
[Thu, 21 Jan 2021 14:12:06 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-components.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:06 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-components.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:07 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:07 GMT] [Error] [2165562] URL https://uhl.site/%7B%7Bitem.screenshot_url%7D%7D active for 1023 ms
[Thu, 21 Jan 2021 14:12:07 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/%7B%7Bitem.screenshot_url%7D%7D
[Thu, 21 Jan 2021 14:12:07 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/%7B%7Bitem.screenshot_url%7D%7D fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:07 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/%7B%7Bitem.screenshot_url%7D%7D fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:08 GMT] [Info] [2165566] Trying to serve rewritten resource in-place: https://uhl.site/
[Thu, 21 Jan 2021 14:12:08 GMT] [Info] [2165566] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
[Thu, 21 Jan 2021 14:12:08 GMT] [Info] [2165566] Trying to serve rewritten resource in-place: https://uhl.site/
[Thu, 21 Jan 2021 14:12:08 GMT] [Info] [2165566] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
[Thu, 21 Jan 2021 14:12:08 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:08 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/dynamicdata.svg active for 1023 ms
[Thu, 21 Jan 2021 14:12:08 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/dynamicdata.svg
[Thu, 21 Jan 2021 14:12:08 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/dynamicdata.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:08 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/dynamicdata.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:09 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:09 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/pro-menu-active.svg active for 1023 ms
[Thu, 21 Jan 2021 14:12:09 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/pro-menu-active.svg
[Thu, 21 Jan 2021 14:12:09 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/pro-menu-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:09 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/pro-menu-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:10 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:10 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-powervideo.svg active for 1024 ms
[Thu, 21 Jan 2021 14:12:10 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-powervideo.svg
[Thu, 21 Jan 2021 14:12:10 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-powervideo.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:10 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-powervideo.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:11 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:11 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-powervideo-active.svg active for 1023 ms
[Thu, 21 Jan 2021 14:12:11 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-powervideo-active.svg
[Thu, 21 Jan 2021 14:12:11 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-powervideo-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:11 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-powervideo-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:12 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:12 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-powermap.svg active for 1023 ms
[Thu, 21 Jan 2021 14:12:12 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-powermap.svg
[Thu, 21 Jan 2021 14:12:12 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-powermap.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:12 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-powermap.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:12 GMT] [Error] [2165570] [https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-powermap-active.svg:0] serf_context_run error status=111 (Connection refused)
[Thu, 21 Jan 2021 14:12:12 GMT] [Warning] [2165570] Fetch failed to start: https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-powermap-active.svg
[Thu, 21 Jan 2021 14:12:12 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-powermap-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:12 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-powermap-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:13 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:13 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-countdown.svg active for 1059 ms
[Thu, 21 Jan 2021 14:12:13 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-countdown.svg
[Thu, 21 Jan 2021 14:12:13 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-countdown.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:13 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-countdown.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:14 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:14 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-countdown-active.svg active for 1023 ms
[Thu, 21 Jan 2021 14:12:14 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-countdown-active.svg
[Thu, 21 Jan 2021 14:12:14 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-countdown-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:14 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-countdown-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:15 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:15 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-designsets.svg active for 1024 ms
[Thu, 21 Jan 2021 14:12:15 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-designsets.svg
[Thu, 21 Jan 2021 14:12:15 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-designsets.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:15 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-designsets.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:16 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:16 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-beforeafter-active.svg active for 1024 ms
[Thu, 21 Jan 2021 14:12:16 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-beforeafter-active.svg
[Thu, 21 Jan 2021 14:12:16 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-beforeafter-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:16 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-beforeafter-active.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:17 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:17 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/panelsection-icons/pagesettings.svg active for 1023 ms
[Thu, 21 Jan 2021 14:12:17 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/panelsection-icons/pagesettings.svg
[Thu, 21 Jan 2021 14:12:17 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/panelsection-icons/pagesettings.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:17 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/panelsection-icons/pagesettings.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:18 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:18 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-generic.svg active for 1025 ms
[Thu, 21 Jan 2021 14:12:18 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-generic.svg
[Thu, 21 Jan 2021 14:12:18 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-generic.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:18 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/add-icons/small-generic.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:19 GMT] [Info] [2165569] Trying to serve rewritten resource in-place: http://137.74.247.207/
[Thu, 21 Jan 2021 14:12:19 GMT] [Info] [2165569] Could not rewrite resource in-place because URL is not in cache: http://137.74.247.207/
[Thu, 21 Jan 2021 14:12:19 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:19 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/panelsection-icons/links.svg active for 1023 ms
[Thu, 21 Jan 2021 14:12:19 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/panelsection-icons/links.svg
[Thu, 21 Jan 2021 14:12:19 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/panelsection-icons/links.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:19 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/panelsection-icons/links.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:20 GMT] [Info] [2165565] Trying to serve rewritten resource in-place: https://uhl.site/
[Thu, 21 Jan 2021 14:12:20 GMT] [Info] [2165565] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
[Thu, 21 Jan 2021 14:12:20 GMT] [Info] [2165565] Trying to serve rewritten resource in-place: https://uhl.site/
[Thu, 21 Jan 2021 14:12:20 GMT] [Info] [2165565] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
[Thu, 21 Jan 2021 14:12:21 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:21 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-ticket.svg active for 1023 ms
[Thu, 21 Jan 2021 14:12:21 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-ticket.svg
[Thu, 21 Jan 2021 14:12:21 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-ticket.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:21 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-ticket.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:22 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:22 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/panelsection-icons/bodytext.svg active for 1023 ms
[Thu, 21 Jan 2021 14:12:22 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/panelsection-icons/bodytext.svg
[Thu, 21 Jan 2021 14:12:22 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/panelsection-icons/bodytext.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:22 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/panelsection-icons/bodytext.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:23 GMT] [Error] [2165562] Serf status 111(Connection refused) polling for 1 threaded fetches for 0.05 seconds
[Thu, 21 Jan 2021 14:12:23 GMT] [Error] [2165562] URL https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-beforeafter.svg active for 1023 ms
[Thu, 21 Jan 2021 14:12:23 GMT] [Info] [2165570] Serf cleanup for error'd fetch of: https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-beforeafter.svg
[Thu, 21 Jan 2021 14:12:23 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-beforeafter.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:23 GMT] [Info] [2165570] HTTPCache key=https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-beforeafter.svg fragment=uhl.site: remembering recent failure for 299 seconds.
[Thu, 21 Jan 2021 14:12:24 GMT] [Info] [2165570] https://uhl.site/?ct_builder=true&ct_inner=true:89150: https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-powerform.svg: Image MIME type could not be discovered from reading magic bytes; rewriting dropped.
[Thu, 21 Jan 2021 14:12:24 GMT] [Info] [2165570] https://uhl.site/?ct_builder=true&ct_inner=true:89151: https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-powerform-active.svg: Image MIME type could not be discovered from reading magic bytes; rewriting dropped.
[Thu, 21 Jan 2021 14:12:24 GMT] [Info] [2165570] https://uhl.site/?ct_builder=true&ct_inner=true:90118: https://uhl.site/wp-content/plugins/oxygen/component-framework/toolbar/UI/oxygen-icons/panelsection-icons/visual.svg: Image MIME type could not be discovered from reading magic bytes; rewriting dropped.
[Thu, 21 Jan 2021 14:12:24 GMT] [Info] [2165570] https://uhl.site/?ct_builder=true&ct_inner=true:89172: https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-testimonial-active.svg: Image MIME type could not be discovered from reading magic bytes; rewriting dropped.
[Thu, 21 Jan 2021 14:12:24 GMT] [Info] [2165570] https://uhl.site/?ct_builder=true&ct_inner=true:89171: https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-testimonial.svg: Image MIME type could not be discovered from reading magic bytes; rewriting dropped.
[Thu, 21 Jan 2021 14:12:24 GMT] [Info] [2165570] https://uhl.site/?ct_builder=true&ct_inner=true:89162: https://uhl.site/wp-content/plugins/oxypowerpack/assets/img/icon-ticket-active.svg: Image MIME type could not be discovered from reading magic bytes; rewriting dropped.
[Thu, 21 Jan 2021 14:12:27 GMT] [Info] [2165567] Trying to serve rewritten resource in-place: https://uhl.site/
[Thu, 21 Jan 2021 14:12:27 GMT] [Info] [2165567] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
[Thu, 21 Jan 2021 14:12:27 GMT] [Info] [2165567] Trying to serve rewritten resource in-place: https://uhl.site/
[Thu, 21 Jan 2021 14:12:27 GMT] [Info] [2165567] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/
[Thu, 21 Jan 2021 14:12:29 GMT] [Info] [2165571] Trying to serve rewritten resource in-place: https://uhl.site/favicon.ico
[Thu, 21 Jan 2021 14:12:29 GMT] [Info] [2165571] Could not rewrite resource in-place because URL is not in cache: https://uhl.site/favicon.ico
[Thu, 21 Jan 2021 14:12:36 GMT] [Info] [2165569] Trying to serve rewritten resource in-place: https://stats.uhl.site/js/plausible.js
[Thu, 21 Jan 2021 14:12:36 GMT] [Info] [2165569] Could not rewrite resource in-place because URL is not in cache: https://stats.uhl.site/js/plausible.js
[Thu, 21 Jan 2021 14:12:36 GMT] [Info] [2165567] Trying to serve rewritten resource in-place: https://stats.uhl.site/api/event
[Thu, 21 Jan 2021 14:12:36 GMT] [Info] [2165567] Could not rewrite resource in-place because URL is not in cache: https://stats.uhl.site/api/event

@Lofesa
Copy link

Lofesa commented Jan 21, 2021

These are just regex expressions:
This pagespeed Disallow "/wp-includes/js/dist/.js"; don´t macht this
https://uhl.site/wp-includes/js/dist/vendor/moment.min.js?ver=2.26

Maybe pagespeed Disallow "/wp-includes/js/dist/*.js*"; this matcht.

@uhlhosting
Copy link
Author

@Lofesa I am also testing CSP with pagespeed and it seems that there is some external ongoing connection to www.pagespeed-mod.com ! ? Any idea what would pagespeed need to connect to external sources?

@Lofesa
Copy link

Lofesa commented Jan 25, 2021

I have tested https://uhl.site in chrome browser and in webpagetest and can´t see any outgoing connection to www.pagespeed-com.com, only uhl.site and stats.uhl.site
https://www.webpagetest.org/result/210125_DiT4_a0658f20d9b5e3aa0f60ee1b9c939dd8/

But you have some mistakes:
1.- All css inlined before the meta og and tewitter. This make Facebook and twitter don´t read these labels, the css must be inlined after these labels.
2.-You have 1 url (https://uhl.site) with 2 cannonicals (https://uhl.site and https://uhl.site/de). These is not the way to have multilingual pages. You need to explore the hreflang html labels.

@uhlhosting
Copy link
Author

@Lofesa I believe this is the way Pagespeed inlines the css if its in header... This is purely done by pagespeed. Maybe it can be more investigated and a bug raised?

2.-You have 1 url (https://uhl.site) with 2 cannonicals (https://uhl.site and https://uhl.site/de). These is not the way to have multilingual pages. You need to explore the hreflang html labels.

Can you elaborate a bit on this one? I can invite the developer of the plugin since this is very early alpha stage plugin for oxygen. @sbouey maybe you can check this?

@Lofesa
Copy link

Lofesa commented Jan 25, 2021

1.- You have this html code:

<link rel="canonical" href="https://uhl.site/" />
<script type="application/ld+json">{"@context" :

and have enabled:

cj Move Css Above Scripts
cm Move Css To Head

So css are inlined before the 1st script tag. Put all script tag at the bottom of the head section.

2.- How canonnical work, you can have 2 or more url with the same canonical, so bots (like Google bot) can index, and show in search, only the canonnical, w/o penalize with duplicate contents. For example amp pages. An amp page has the same content as the normal page, w/o canonical, google can penalize these pages (amp and normal) with duplicate content.
You have the oposite, 1 url (htttps://uhl.site, in the navigation bar) and 2 canonical (https://uhl.site and https://uhl.site/de). What page must be indexed by bots?

For having sites with different languages you must tell to search engines that a page have related pages for diferent languages, this can be achieved by diferent paths: htl code, http headers or sitemaps.
Read about this here:
https://developers.google.com/search/docs/advanced/crawling/localized-versions?hl=en

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants