vollcom
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Super Cache] CDN Support is not working – if user logged inTHX Donncha π
Perfect π
Forum: Plugins
In reply to: [WP Super Cache] CDN Support is not working – if user logged inyes … we use always:
Disable caching for logged in visitors.Β (Recommended) …
Can you fix them in your next update pls? π
Forum: Plugins
In reply to: [WP Super Cache] Missing “Cache-Control” only on front pageHey Donncha β¦ thx 4 your replay π
It was a sleepless night. But we found the issue.
The issue were in the NGINX configuration in these lines:
location ~ / {
try_files /wp-content/cache/supercache/$http_host$cache_uri/index-https.html $uri $uri/ /index.php;
}We serve all files over https, so we change for a long time the directive from:
try_files /wp-content/cache/supercache/$http_host$cache_uri/index.html $uri $uri/ /index.php;to:
try_files /wp-content/cache/supercache/$http_host$cache_uri/index-https.html $uri $uri/ /index.php;because “https” … all works fine but only on the front page (not logged in user) we’re missing a lot of header instructions (Cache-Control,Content-Encoding,Vary,Content-Security-Policy … ) … it was weird.
We change the directive back to:
try_files /wp-content/cache/supercache/$http_host$cache_uri/index.html $uri $uri/ /index.php;and it works … we don’t know why???
Strange is: all .html cache files on our server are still: index-https.html files and not index.html files.
Maybe you can reproduce this issue.
Forum: Plugins
In reply to: [WP Extended Search] Lot of Slow Querys after installingWe find the issues⦠a lot of SQL queries are stuck in the DB. We cancel all this queries and all works fine now.
- This reply was modified 2 years, 9 months ago by vollcom.
Forum: Plugins
In reply to: [Autoptimize] Plz add a filter to HTMLminifyPerfect π … works perfect .. THX 4 your fast replay π
Forum: Plugins
In reply to: [Autoptimize] Change position CSS/JS in the headyes thx π I found also the little mistake but is also not working, because this
<!-- WP-Minify CSS -->is an HTML comment.
I added this in themeβs template file:
<meta name=”minify” content=”css”>
<meta name=”minify” content=”js”>and this in the function.php:
add_filter( 'autoptimize_filter_css_replacetag', 'my_ao_override_css_replacetag', 10, 1 ); function my_ao_override_css_replacetag( $replacetag ) { return array( '<meta name="minify" content="css">', 'replace' ); } add_filter( 'autoptimize_filter_js_replacetag', 'my_ao_override_js_replacetag', 10, 1 ); function my_ao_override_js_replacetag( $replacetag ) { return array( '<meta name="minify" content="js">', 'replace' ); }THX π
now ist working
Forum: Plugins
In reply to: [Autoptimize] Change position CSS/JS in the headHi …
56867#0: *4668519 FastCGI sent in stderr: "PHP message: PHP Fatal error: Uncaught TypeError: call_user_func_array(): Argument #1 ($function) must be a valid callback, function "ao_js_replacetag" not found or invalid function name inForum: Plugins
In reply to: [Autoptimize] Change position CSS/JS in the headHi frank … thx for you replay but your solution is not working … π
Can you help me again? PLZ π
Forum: Plugins
In reply to: [WP Search Suggest] PHP 7.4 and join()Hi π same here…
goto wp-search-suggest.php on line 121
an switch the line from:echo wp_kses_post( join( $results, "\n" ) );
to
echo wp_kses_post( join( "\n", $results ) );plz check your console after you change the line.
Regards
- This reply was modified 6 years, 1 month ago by vollcom.
Forum: Plugins
In reply to: [Query Monitor] PHP Warning: Use of undefined constant DB_USERHi, thank you for your replay, my site isn’t broken. I dont know where the error comes from … I’ll keep an eye on it π thank you
Forum: Plugins
In reply to: [WP Super Cache] Enable CDN Support not work if you logged inok, i can wait for the next release.
AND Thank you, you are doing a great job πForum: Plugins
In reply to: [WP Super Cache] Enable CDN Support not work if you logged inHi Donncha, no … I dont have checked “Enable caching for all visitors”.
But CDN is CDN and caching is caching, there are 2 different things. CDN must be always work, also if checked “no caching for user_logged_in”.PLZ fix it … Iam always on version 1.6.7 – that works fine for me.
- This reply was modified 6 years, 10 months ago by vollcom.
Hi Michel,
sorry for my late response.
Now im update to 2.91 and the same problem.
I cant see the rel=”canonical” tag in the HTML source code
rel=’prev’ & rel=’next’ also not showingmy site is up to date (WordPress 4.9.8 running on PHP 7.2.10)
Hi, I have found the solution …
I forgotdo_action( 'login_head' );now it works very well π
THX Again
Try it here : http://www.spiele-kostenlos-online.de/login/
Hi, same problem here π
after I update to 2.3.2.3 all first letter in “Home Title”, “Page Title” and “Post Title” of each word are capitalized!
The Capitalize Titles in my Title Settings is checked but this is only for Search and Tag Pages not for Home, Page and Post Titles!
comment out the line 3192 and 3193 in aioseop_class.php
if ( !empty( $aioseop_options['aiosp_cap_titles'] ) ) $title = $this->capitalize( $title );to
// if ( !empty( $aioseop_options['aiosp_cap_titles'] ) ) // $title = $this->capitalize( $title );i hope this helps π