Title: vollcom's Replies | WordPress.org

---

# vollcom

  [  ](https://wordpress.org/support/users/vollcom/)

 *   [Profile](https://wordpress.org/support/users/vollcom/)
 *   [Topics Started](https://wordpress.org/support/users/vollcom/topics/)
 *   [Replies Created](https://wordpress.org/support/users/vollcom/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/vollcom/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/vollcom/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/vollcom/engagements/)
 *   [Favorites](https://wordpress.org/support/users/vollcom/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 26 total)

1 [2](https://wordpress.org/support/users/vollcom/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/vollcom/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Super Cache] CDN Support is not working – if user logged in](https://wordpress.org/support/topic/cdn-support-is-not-working-if-user-logged-in/)
 *  Thread Starter [vollcom](https://wordpress.org/support/users/vollcom/)
 * (@vollcom)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/cdn-support-is-not-working-if-user-logged-in/#post-17730688)
 * THX Donncha 🙂
 * Perfect 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Super Cache] CDN Support is not working – if user logged in](https://wordpress.org/support/topic/cdn-support-is-not-working-if-user-logged-in/)
 *  Thread Starter [vollcom](https://wordpress.org/support/users/vollcom/)
 * (@vollcom)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/cdn-support-is-not-working-if-user-logged-in/#post-17704622)
 * yes … we use always:
 * Disable caching for logged in visitors. _(Recommended)_ …
 * Can you fix them in your next update pls? 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Super Cache] Missing “Cache-Control” only on front page](https://wordpress.org/support/topic/missing-cache-control-only-on-front-page/)
 *  Thread Starter [vollcom](https://wordpress.org/support/users/vollcom/)
 * (@vollcom)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/missing-cache-control-only-on-front-page/#post-16973352)
 * Hey 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Extended Search] Lot of Slow Querys after installing](https://wordpress.org/support/topic/lot-of-slow-querys-after-installing/)
 *  Thread Starter [vollcom](https://wordpress.org/support/users/vollcom/)
 * (@vollcom)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/lot-of-slow-querys-after-installing/#post-16967417)
 * We 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 3 years, 1 month ago by [vollcom](https://wordpress.org/support/users/vollcom/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Autoptimize] Plz add a filter to HTMLminify](https://wordpress.org/support/topic/plz-add-a-filter-to-htmlminify/)
 *  Thread Starter [vollcom](https://wordpress.org/support/users/vollcom/)
 * (@vollcom)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/plz-add-a-filter-to-htmlminify/#post-16057769)
 * Perfect 🙂 … works perfect .. THX 4 your fast replay 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Autoptimize] Change position CSS/JS in the head](https://wordpress.org/support/topic/change-position-css-js-in-the/)
 *  Thread Starter [vollcom](https://wordpress.org/support/users/vollcom/)
 * (@vollcom)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/change-position-css-js-in-the/#post-14056260)
 * yes 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
    -  This reply was modified 5 years, 7 months ago by [vollcom](https://wordpress.org/support/users/vollcom/).
    -  This reply was modified 5 years, 7 months ago by [vollcom](https://wordpress.org/support/users/vollcom/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Autoptimize] Change position CSS/JS in the head](https://wordpress.org/support/topic/change-position-css-js-in-the/)
 *  Thread Starter [vollcom](https://wordpress.org/support/users/vollcom/)
 * (@vollcom)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/change-position-css-js-in-the/#post-14056166)
 * Hi …
    `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
   in`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Autoptimize] Change position CSS/JS in the head](https://wordpress.org/support/topic/change-position-css-js-in-the/)
 *  Thread Starter [vollcom](https://wordpress.org/support/users/vollcom/)
 * (@vollcom)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/change-position-css-js-in-the/#post-14055924)
 * Hi frank … thx for you replay but your solution is not working … 🙁
 * Can you help me again? PLZ 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Search Suggest] PHP 7.4 and join()](https://wordpress.org/support/topic/php-7-4-and-join/)
 *  [vollcom](https://wordpress.org/support/users/vollcom/)
 * (@vollcom)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/php-7-4-and-join/#post-12705677)
 * 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, 5 months ago by [vollcom](https://wordpress.org/support/users/vollcom/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Query Monitor] PHP Warning: Use of undefined constant DB_USER](https://wordpress.org/support/topic/php-warning-use-of-undefined-constant-db_user/)
 *  Thread Starter [vollcom](https://wordpress.org/support/users/vollcom/)
 * (@vollcom)
 * [7 years ago](https://wordpress.org/support/topic/php-warning-use-of-undefined-constant-db_user/#post-11948659)
 * Hi, 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Super Cache] Enable CDN Support not work if you logged in](https://wordpress.org/support/topic/enable-cdn-support-not-work-if-you-logged-in/)
 *  Thread Starter [vollcom](https://wordpress.org/support/users/vollcom/)
 * (@vollcom)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/enable-cdn-support-not-work-if-you-logged-in/#post-11767503)
 * ok, i can wait for the next release.
    AND Thank you, you are doing a great job
   🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Super Cache] Enable CDN Support not work if you logged in](https://wordpress.org/support/topic/enable-cdn-support-not-work-if-you-logged-in/)
 *  Thread Starter [vollcom](https://wordpress.org/support/users/vollcom/)
 * (@vollcom)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/enable-cdn-support-not-work-if-you-logged-in/#post-11767149)
 * Hi 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 7 years, 1 month ago by [vollcom](https://wordpress.org/support/users/vollcom/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All in One SEO – AI SEO Plugin to Boost SEO Rankings & Traffic (Schema, Local SEO, Sitemap & SEO Insights)] Update on 2.9 – rel=”canonical” not work](https://wordpress.org/support/topic/update-on-2-9-relcanonical-not-work/)
 *  Thread Starter [vollcom](https://wordpress.org/support/users/vollcom/)
 * (@vollcom)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/update-on-2-9-relcanonical-not-work/#post-10814357)
 * 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 showing
 * my site is up to date (WordPress 4.9.8 running on PHP 7.2.10)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Limit Login Attempts Security - Login Security, 2FA, Firewall, Brute Force Prevention] Error message on custom login page](https://wordpress.org/support/topic/error-message-on-custom-login-page/)
 *  Thread Starter [vollcom](https://wordpress.org/support/users/vollcom/)
 * (@vollcom)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/error-message-on-custom-login-page/#post-9399701)
 * Hi, I have found the solution …
    I forgot `do_action( 'login_head' );`
 * now it works very well 🙂
 * THX Again
 * Try it here : [http://www.spiele-kostenlos-online.de/login/](http://www.spiele-kostenlos-online.de/login/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All in One SEO – AI SEO Plugin to Boost SEO Rankings & Traffic (Schema, Local SEO, Sitemap & SEO Insights)] Problem – Capital Letters In Each Word In Titles On All Blog](https://wordpress.org/support/topic/problem-capital-letters-in-each-word-in-titles-on-all-blog/)
 *  [vollcom](https://wordpress.org/support/users/vollcom/)
 * (@vollcom)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/problem-capital-letters-in-each-word-in-titles-on-all-blog/#post-7149109)
 * 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 😉

Viewing 15 replies - 1 through 15 (of 26 total)

1 [2](https://wordpress.org/support/users/vollcom/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/vollcom/replies/page/2/?output_format=md)