Title: Jan Reilink's Replies | WordPress.org

---

# Jan Reilink

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[File Manager] WP File Manager (Pro) .htaccess defect](https://wordpress.org/support/topic/wp-file-manager-pro-htaccess-defect/)
 *  Thread Starter [Jan Reilink](https://wordpress.org/support/users/janr/)
 * (@janr)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/wp-file-manager-pro-htaccess-defect/#post-15714768)
 * Hello Support Team,
 * In my opinion, this is not the way we should have support on WordPress plugins,
   but if it helps…
 * > Ticket Submitted Successfully!
 * There is no need for setting up a call, you just need to fix your broken .htaccess.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [“convert to regular blocks” not working since update](https://wordpress.org/support/topic/convert-to-regular-blocks-not-working-since-update/)
 *  [Jan Reilink](https://wordpress.org/support/users/janr/)
 * (@janr)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/convert-to-regular-blocks-not-working-since-update/#post-13946672)
 * Here it was [Ultimate Blocks](https://wordpress.org/plugins/ultimate-blocks/)
   too. Took my loss and removed the plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Mail SMTP by WPForms - The Most Popular SMTP and Email Log Plugin] StartTLS supported](https://wordpress.org/support/topic/starttls-supported-3/)
 *  Thread Starter [Jan Reilink](https://wordpress.org/support/users/janr/)
 * (@janr)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/starttls-supported-3/#post-13901224)
 * Hi [@sanzeeb3](https://wordpress.org/support/users/sanzeeb3/) and thank you for
   your reply.
    My question was if your plugin supports StartTLS as an SMTP command(
   [PHPMailer](https://github.com/PHPMailer/PHPMailer/blob/640e68d33218e9886ec700b058613d5552cb31fe/src/SMTP.php#L448)).
   Not all SMTP plugins do unfortunately.
 * Fortunately, your plugin does. I was testing a number of plugins, and WP Mail
   SMTP by WPForms didn’t work either, but in hindsight I ran into some TLS cert
   issues. I fixed those and your plugin sends e-mail using authenticated SMTP and(
   Start)TLS.
 * I’ve marked this as resolved, thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Vevida Optimizer] WP Sitediagnose critical problem auto-update](https://wordpress.org/support/topic/wp-sitediagnose-critical-problem-auto-update/)
 *  Plugin Contributor [Jan Reilink](https://wordpress.org/support/users/janr/)
 * (@janr)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/wp-sitediagnose-critical-problem-auto-update/#post-13891912)
 * That’s a great idea, Marcelo, thanks. We’ll take it into consideration.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Vevida Optimizer] WP Sitediagnose critical problem auto-update](https://wordpress.org/support/topic/wp-sitediagnose-critical-problem-auto-update/)
 *  Plugin Contributor [Jan Reilink](https://wordpress.org/support/users/janr/)
 * (@janr)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/wp-sitediagnose-critical-problem-auto-update/#post-13803550)
 * Hello Richard,
 * Thank you for your support question.
 * For now, I think you can best disable Vevida Optimizer, as WordPress is adding
   auto update functionality as well.
 * We’re considering our options with the plugin, whether we’re keeping it (and 
   updating it to work with WordPress’ Site diagnostics) or removing it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Syntax-highlighting Code Block (with Server-side Rendering)] Easy migration path to this plugin from ‘Code Syntax Block’](https://wordpress.org/support/topic/easy-migration-path-to-this-plugin-from-code-syntax-block/)
 *  Thread Starter [Jan Reilink](https://wordpress.org/support/users/janr/)
 * (@janr)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/easy-migration-path-to-this-plugin-from-code-syntax-block/#post-13643434)
 * For anyone facing the same issue: I used MariaDB’s [REGEXP_REPLACE](https://mariadb.com/kb/en/regexp_replace/)
   function (MySQL has it [too](https://dev.mysql.com/doc/refman/8.0/en/regexp.html#function_regexp-replace)).
 *     ```
       UPDATE test_posts SET post_content = REGEXP_REPLACE( post_content, '<!-- wp:code -->\n<pre class="wp-block-code"><code lang="(.*)" class="language-.*">', '<!-- wp:code {"language":"\\1"} -->\n<pre class="wp-block-code"><code>');
       ```
   
 * After this, I had to perform some smaller changes, as not all language names 
   are the same:
 *     ```
       UPDATE test_posts SET post_content = REGEXP_REPLACE( post_content, '<!-- wp:code {"language":"csharp"} -->', '<!-- wp:code {"language":"cs"} -->');
       UPDATE test_posts SET post_content = REGEXP_REPLACE( post_content, '<!-- wp:code {"language":"visual-basic"} -->', '<!-- wp:code {"language":"vbnet"} -->');
       UPDATE test_posts SET post_content = REGEXP_REPLACE( post_content, '<!-- wp:code {"language":"none"} -->', '<!-- wp:code {"language":"plaintext"} -->');
       ```
   
 * **PS**:
    Gutenberg does not recognize the language when using an alias, e.g if
   I have `<!-- wp:code {"language":"vb"} -->`, then editing a post shows **Auto-
   detect** instead of **VB.NET**
    -  This reply was modified 5 years, 6 months ago by [Jan Reilink](https://wordpress.org/support/users/janr/).
    -  This reply was modified 5 years, 6 months ago by [Jan Reilink](https://wordpress.org/support/users/janr/).
      Reason: had to remove backtics for code blocks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] jQuery Migrate Helper – Warnings encountered](https://wordpress.org/support/topic/jquery-migrate-helper-warnings-encountered-4/)
 *  Thread Starter [Jan Reilink](https://wordpress.org/support/users/janr/)
 * (@janr)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/jquery-migrate-helper-warnings-encountered-4/#post-13321550)
 * [@organicaguru](https://wordpress.org/support/users/organicaguru/) [@danieljohns](https://wordpress.org/support/users/danieljohns/),
   please address your issues to the specific theme and plugin authors. This thread
   is for [GiveWP](https://wordpress.org/plugins/give/). The GiveWP plugin authors
   can’t help you with issues with the Himmelen theme or `woocommerce-perfect-seo-
   url/` and `responsive-lightbox` plugins.
 * Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Vevida Optimizer] Postmeta, posts, commenmeta were not converted.](https://wordpress.org/support/topic/postmeta-posts-commenmeta-were-not-converted/)
 *  Plugin Contributor [Jan Reilink](https://wordpress.org/support/users/janr/)
 * (@janr)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/postmeta-posts-commenmeta-were-not-converted/#post-13321523)
 * Hi [@kobler](https://wordpress.org/support/users/kobler/),
    Thank you for your
   message. I’m sorry not all database tables were converted. I assume you mean 
   from MyISAM to InnoDB?
 * The plugin should convert any MyISAM table it finds to InnoDB. And it does so
   by querying which tables are MyISAM and has a name starting with `$wpdb->prefix`.
   Two reasons I can think of are that either the tables that weren’t converted 
   are not MyISAM tables, or its prefix is different.
 * If this is not the case, perhaps you can enable WP_DEBUG and WP_DEBUG_LOG to 
   see if it logs something related?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Update 14.1 with problems](https://wordpress.org/support/topic/update-14-1-with-problems/)
 *  [Jan Reilink](https://wordpress.org/support/users/janr/)
 * (@janr)
 * [5 years, 12 months ago](https://wordpress.org/support/topic/update-14-1-with-problems/#post-12850503)
 * [@marcanor](https://wordpress.org/support/users/marcanor/)
    A colleague of mine
   found a solution (one of the sites we host couldn’t get this statement to finish
   in over an hour and had 290,000+ records): use `exists`.
 *     ```
       delete from wp_yoast_indexable
       where exists (
           select 1 from wp_yoast_indexable wyi2
           where wyi2.object_id = wp_yoast_indexable.object_id
           and wyi2.object_type = wp_yoast_indexable.object_type
           and wyi2.id < wp_yoast_indexable.id
       );
       ```
   
 * using `where exists()` the statement finished in 6 seconds.
 * Also, it is a MySQL limitation you can’t use a table alias with a DELETE, which
   is why `[table prefix]_yoast_indexable` has to be fully written out in the exists
   clause, instead of using an alias `wyi`.
    -  This reply was modified 5 years, 12 months ago by [Jan Reilink](https://wordpress.org/support/users/janr/).
      Reason: query > statement, code tags around where exists()
    -  This reply was modified 5 years, 12 months ago by [Jan Reilink](https://wordpress.org/support/users/janr/).
      Reason: in stead > instead
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Wishlist] WP-Super-Cache wpsc_add_cookie support](https://wordpress.org/support/topic/wp-super-cache-wpsc_add_cookie-support/)
 *  Thread Starter [Jan Reilink](https://wordpress.org/support/users/janr/)
 * (@janr)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/wp-super-cache-wpsc_add_cookie-support/#post-12436848)
 * Hi Donncha, thank you for joining in and your reply. Much appreciated.
 * Following your advice, and using Simple mode seems to work better. I’ll have 
   to do some extra testing and debugging in de next few days, but a separate cache
   file is created according to the debug functionality:
 *     ```
       $ grep wishlist wp-content/wp-cache-config.php
       $cache_rejected_uri = array ( 0 => 'wp-.*\\.php', 1 => 'index\\.php', 2 => 'wishlist', 3 => 'wishlist/*', );
       $ grep wpsc_cookies wp-content/wp-cache-config.php
       $wpsc_cookies = array ( 0 => 'yith_wcwl_session_15359811dc750423199e6f7bdde9ae51', );
       ```
   
 *     ```
       13:07:47 247 /?add_to_wishlist=59016 wpsc_get_auth_cookies: no auth cookies detected
       13:07:47 247 /?add_to_wishlist=59016 wpsc_is_caching_user_disabled: false
       13:07:47 246 /product-tag/walk-around/page/148/?add_to_wishlist=10403 supercache dir: ABSPATH/wp-content/cache/supercache/www.example.com/product-tag/walk-around/page/148/
       13:07:47 247 /?add_to_wishlist=59016 wp_cache_get_cookies_values - found extra cookie: yith_wcwl_session_15359811dc750423199e6f7bdde9ae51
       13:07:47 247 /?add_to_wishlist=59016 wp_cache_get_cookies_values: return: f3ac53821a909e42a6e4cce2a7ae2c9e
       13:07:47 246 /product-tag/walk-around/page/148/?add_to_wishlist=10403 No Super Cache file found for current URL: ABSPATH/wp-content/cache/supercache/www.example.com/product-tag/walk-around/page/148/index-https.html
       13:07:47 247 /?add_to_wishlist=59016 supercache dir: ABSPATH/wp-content/cache/supercache/www.example.com/
       13:07:47 247 /?add_to_wishlist=59016 No Super Cache file found for current URL: ABSPATH/wp-content/cache/supercache/www.example.com/index-https.html
       13:07:47 247 /?add_to_wishlist=59016 wp_cache_get_cookies_values: cached: f3ac53821a909e42a6e4cce2a7ae2c9e
       13:07:47 247 /?add_to_wishlist=59016 In WP Cache Phase 2
       13:07:47 247 /?add_to_wishlist=59016 Setting up WordPress actions
       13:07:47 247 /?add_to_wishlist=59016 Supercache caching disabled. Only using wp-cache. Non empty GET request. {"add_to_wishlist":"59016"}
       13:07:47 247 /?add_to_wishlist=59016 Created output buffer
       13:07:47 246 /product-tag/walk-around/page/148/?add_to_wishlist=10403 wp_cache_get_cookies_values: return:
       13:07:47 246 /product-tag/walk-around/page/148/?add_to_wishlist=10403 wp_cache_phase2: No caching to do as user agent rejected.
       13:07:50 247 /?add_to_wishlist=59016 URI rejected. Not Caching
       13:07:50 247 /?add_to_wishlist=59016 wp_cache_maybe_dynamic: returned $buffer
       ```
   
 * And
 *     ```
       13:25:57 223 /?add_to_wishlist=58998 wpsc_get_auth_cookies: no auth cookies detected
       13:25:57 223 /?add_to_wishlist=58998 wpsc_is_caching_user_disabled: false
       13:25:57 223 /?add_to_wishlist=58998 wp_cache_get_cookies_values - found extra cookie: yith_wcwl_session_15359811dc750423199e6f7bdde9ae51
       13:25:57 223 /?add_to_wishlist=58998 wp_cache_get_cookies_values: return: f3ac53821a909e42a6e4cce2a7ae2c9e
       13:25:57 223 /?add_to_wishlist=58998 supercache dir: ABSPATH/wp-content/cache/supercache/www.example.com/
       13:25:57 223 /?add_to_wishlist=58998 No Super Cache file found for current URL: ABSPATH/wp-content/cache/supercache/www.example.com/index-https.html
       13:25:57 223 /?add_to_wishlist=58998 wp_cache_get_cookies_values: cached: f3ac53821a909e42a6e4cce2a7ae2c9e
       13:25:57 223 /?add_to_wishlist=58998 In WP Cache Phase 2
       13:25:57 223 /?add_to_wishlist=58998 Setting up WordPress actions
       13:25:57 223 /?add_to_wishlist=58998 Supercache caching disabled. Only using wp-cache. Non empty GET request. {"add_to_wishlist":"58998"}
       13:25:57 223 /?add_to_wishlist=58998 Created output buffer
       13:25:59 223 /?add_to_wishlist=58998 URI rejected. Not Caching
       13:25:59 223 /?add_to_wishlist=58998 wp_cache_maybe_dynamic: returned $buffer
       ```
   
 * [@yithemes](https://wordpress.org/support/users/yithemes/)
    The only issue now
   is that the ‘quick-wishlist’ is cached on previous pages and thus not increased/
   updated (I also tried [https://support.yithemes.com/hc/en-us/articles/115001372967-Wishlist-How-to-count-number-of-products-wishlist-in-ajax](https://support.yithemes.com/hc/en-us/articles/115001372967-Wishlist-How-to-count-number-of-products-wishlist-in-ajax)).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Wishlist] WP-Super-Cache wpsc_add_cookie support](https://wordpress.org/support/topic/wp-super-cache-wpsc_add_cookie-support/)
 *  Thread Starter [Jan Reilink](https://wordpress.org/support/users/janr/)
 * (@janr)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/wp-super-cache-wpsc_add_cookie-support/#post-12421159)
 * Unfortunately it didn’t produce the expected (wanted…) result for me as well.
   The number of items in the wishlist isn’t instantly updated on all pages (Ajax
   is on). I hoped the WP-Super-Cache wpsc_add_cookie functionality would create
   a seperate cachefile based on the cookie. However, wen using wpsc_add_cookie 
   it adds the cookie to the cache *exclude* list in the .htaccess rewrite condition.
 * Maybe it’s best to put this support ticket on hold, as I currently don’t have
   a lot of time available to test and debug this. Or perhaps you can contact Donncha
   Ó Caoimh about how to add WPSC support in Yith WooCommerce Wishlist.
 * Anyway, to be continued 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Wishlist] WP-Super-Cache wpsc_add_cookie support](https://wordpress.org/support/topic/wp-super-cache-wpsc_add_cookie-support/)
 *  Thread Starter [Jan Reilink](https://wordpress.org/support/users/janr/)
 * (@janr)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/wp-super-cache-wpsc_add_cookie-support/#post-12397767)
 * Thanks for your positive reply, [@yithemes](https://wordpress.org/support/users/yithemes/).
 * Because it involves a site of one of our customer, this is a possible solution
   I need to test during a couple of days. I’ll get back as soon as possible, I 
   think some time this Friday.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Vevida Optimizer] Simply Awesome](https://wordpress.org/support/topic/simply-awesome-243/)
 *  Plugin Contributor [Jan Reilink](https://wordpress.org/support/users/janr/)
 * (@janr)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/simply-awesome-243/#post-12048732)
 * Thank you for your kind words, Jason!
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Vevida Optimizer] The one and only myisam to innodb converter](https://wordpress.org/support/topic/the-one-and-only-myisam-to-innodb-converter/)
 *  Plugin Contributor [Jan Reilink](https://wordpress.org/support/users/janr/)
 * (@janr)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/the-one-and-only-myisam-to-innodb-converter/#post-11662780)
 * Thank you for your kind words!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Comments - wpDiscuz] Warning: Use of undefined constant COOKIEHASH – assumed ‘COOKIEHASH’](https://wordpress.org/support/topic/warning-use-of-undefined-constant-cookiehash-assumed-cookiehash/)
 *  Thread Starter [Jan Reilink](https://wordpress.org/support/users/janr/)
 * (@janr)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/warning-use-of-undefined-constant-cookiehash-assumed-cookiehash/#post-11272954)
 * WordPress Version 5.1, wpDiscuz Version 5.3.2 and currently PHP 7.3.2 (yep, that’s
   cutting edge 🙂 )
    -  This reply was modified 7 years, 2 months ago by [Jan Reilink](https://wordpress.org/support/users/janr/).
      Reason: PHP 7.3.2, not 5.3.2

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

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