kochtopf
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Zakra] link color and footer bottom bar…just for the record. Problem 2 is caused by https://www.ads-software.com/plugins/pdf-viewer-block/ v0.1.
Forum: Themes and Templates
In reply to: [Zakra] link color and footer bottom barGood Day.
problem 1: In zakra v143 you introduced add_action( ‘enqueue_block_editor_assets’ loading style-editor-block.css. At line 212 there is ‘.editor-styles-wrapper a,
.editor-styles-wrapper .wp-block-file__textlink’ color set to #16181a (nearly black). I’ve changed it back to #80a0d2 (light blue) for better reading/finding links in big paragraphs. This was the default up to zakra v142.
problem 2: Thank you for verifying that the missing field in the customizer is on my end only. If I want to change it I use phpmyadmin SELECT * FROMwp_options
WHERE option_name = ‘theme_mods_zakra-child’. Problem solved. Again thanks for your help.Forum: Themes and Templates
In reply to: [Zakra] link color and footer bottom barGood Day. Here we go…
https://app.box.com/s/oybhql1lrfq39uxexo0czgzmfmco13tw
for the shots.
Unfortunately the problems are only observable if logged in (Theme customizer and Gutenberg editor).Forum: Plugins
In reply to: [Contact Form 7] WP REST API breaking in older Chrome and FirefoxAaron,
No it should be a . – means append a slash. This would allow the next url.replace to match and let it remove the double /v1… Give it a try it’s working for me. Alternatively you could backout changeset 1700668.
PS: Since this is a js clear all caches/proxies before trying… RGDSForum: Plugins
In reply to: [Contact Form 7] WP REST API breaking in older Chrome and FirefoxYes this ‘undesirable’ feature came with changeset 1700668. A quick fix would be:
…contact-form-7/includes/js # diff scripts.js_ORI scripts.js
472c472
< var url = wpcf7.apiSettings.root;
—
> var url = wpcf7.apiSettings.root . ‘/’ ;Confirmed. Working. Thank you very much for the quick fix.
Forum: Plugins
In reply to: [Redis Page Cache] Serving stale cache pagesnot sure why we’d need it
Say your server has not enough RAM to hold all pages but you have another server idling around (hot backup in my case). One can use this RAM as an additional transparent cache. I’ve tried RedisCluster but phpredis needs at least 3 master server to build a cluster.
PS: I’ve got it working but still struggling with ‘autorehash’. This is not yet working (maybe over my pay-grade. let you know…)Forum: Plugins
In reply to: [Redis Page Cache] Serving stale cache pageswe’ll likely open source it in the future
Yaiks! Would be great!
your patch might cause more problems
I’ve checked the headers – all OK. The dynamic headers are done at the edge (‘m using cloudflare) the rest is static.
Thank you very much for this plug. It really saves a lot of CPU cycles on my little RaspiPI.
Next step – patch in RedisArray support (any plans on this one?). I’ve tried but still struggling with multi()… [Oh sorry, that was off topic -> feature request ?? ]Check the cookies first. I had to exclude ‘phpsessid’ to get any hits. If you want to debug: Change ‘$debug=true;’ in advanced-cache.php and post the headers here.
Forum: Plugins
In reply to: [Redis Page Cache] Serving stale cache pagesTo get background regeneration to work – here is a quick patch:
diff advanced-cache.php87c187,188
< self::clean_request();
—
> pj_sapi_headers_clean();
>
202c203
< return ( php_sapi_name() == ‘fpm-fcgi’ && function_exists( ‘fastcgi_finish_request’ ) );
—
> return ( php_sapi_name() == ‘fpm-fcgi’ && function_exists( ‘fastcgi_finish_request’ ) && function_exists( ‘pj_sapi_headers_clean’ ) );Forum: Plugins
In reply to: [Redis Page Cache] At publishing post the /page url's are not expiredAlready found this. Thank you.
Forum: Plugins
In reply to: [Redis Page Cache] X-Pj-Cache-Status: missGot it to work finally! Was a plug that did not behave (WP Limit Login Attempts). This thing is incredible fast. Like 10 times faster than disk based caches.
Change $ttl in advanced-cache.php.
Forum: Plugins
In reply to: [Redis Page Cache] X-Pj-Cache-Status: missSame here. I always get a miss-header back. My redis-server is not on localhost – so I’ve changed $redis_host to point to the external server. Anything else I need to change? At least the plug is active and talks to the redis-server. If I do a ‘ab -n100 -c10 url/’ (hit the server with an apache benchmark) I see a lot of keyspace_misses (redis-cli) but no hits at all.
Forum: Plugins
In reply to: [WPS Hide Login] WPS Hide Login not working with Multilanguage pluginsYes me too! Doesn’t work with QTranslate-X. Has to do with the redirect’s done to the corresponding language specific permalinks. QTranslate-X allows to add &setlang=no to the generated URL but I need to find how to add this to this plug to get the login/logout url’s passed untouched.