Title: Viktor Szépe's Replies - page 2 | WordPress.org

---

# Viktor Szépe

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 16 through 30 (of 438 total)

[←](https://wordpress.org/support/users/szepeviktor/replies/?output_format=md) [1](https://wordpress.org/support/users/szepeviktor/replies/?output_format=md)
2 [3](https://wordpress.org/support/users/szepeviktor/replies/page/3/?output_format=md)…
[28](https://wordpress.org/support/users/szepeviktor/replies/page/28/?output_format=md)
[29](https://wordpress.org/support/users/szepeviktor/replies/page/29/?output_format=md)
[30](https://wordpress.org/support/users/szepeviktor/replies/page/30/?output_format=md)
[→](https://wordpress.org/support/users/szepeviktor/replies/page/3/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Issues after Version 0.9.5.4 update](https://wordpress.org/support/topic/issues-after-version-0-9-5-4-update/)
 *  [Viktor Szépe](https://wordpress.org/support/users/szepeviktor/)
 * (@szepeviktor)
 * [9 years ago](https://wordpress.org/support/topic/issues-after-version-0-9-5-4-update/#post-9076248)
 * Maybe you could give us a try:
    [https://github.com/szepeviktor/w3-total-cache-fixed](https://github.com/szepeviktor/w3-total-cache-fixed)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sucuri Security - Auditing, Malware Scanner and Security Hardening] Dramatic slowdown with xhr_monitor – all hook](https://wordpress.org/support/topic/dramatic-slowdown-with-xhr_monitor-all-hook/)
 *  Thread Starter [Viktor Szépe](https://wordpress.org/support/users/szepeviktor/)
 * (@szepeviktor)
 * [9 years ago](https://wordpress.org/support/topic/dramatic-slowdown-with-xhr_monitor-all-hook/#post-9031256)
 * I’ve updated my implementation long time ago:
 * `add_action( 'admin_init', array( $this, 'hook_all_action' ) );`
 * Conditionally:
 *     ```
               if ( ! empty( $_REQUEST['action'] ) ) {
                   add_action( 'all', array( $this, 'unknown_action' ), 0 );
               }
       ```
   
 * Then unknown_action is:
 *     ```
           public function unknown_action( $tag ) {
               // Check tag first to speed things up
               if ( 'wp_ajax_' === substr( $tag, 0, 8 )
                   || 'admin_post_' === substr( $tag, 0, 11 )
               ) {
                   global $wp_actions;
                   global $wp_filter;
                   $whitelisted_actions = array(
                       'wp_ajax_nopriv_wp-remove-post-lock',
                       'wp_ajax_nopriv_SimpleHistoryNewRowsNotifier',
                   );
                   // Actions only, not filters, not registered ones, except whitelisted ones
                   // Actions are basically filters
                   if ( is_array( $wp_actions )
                       && array_key_exists( $tag, $wp_actions )
                       && is_array( $wp_filter )
                       && ! array_key_exists( $tag, $wp_filter )
                       && ! in_array( $tag, $whitelisted_actions )
                   ) {
                       $this->trigger_instant( 'wpf2b_admin_action_unknown', $tag );
                   }
               }
           }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Option Inspector] Best option inspector, possible to add a post meta inspector?](https://wordpress.org/support/topic/best-option-inspector-possible-to-add-a-post-meta-inspector/)
 *  Plugin Author [Viktor Szépe](https://wordpress.org/support/users/szepeviktor/)
 * (@szepeviktor)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/best-option-inspector-possible-to-add-a-post-meta-inspector/#post-8832661)
 * Thank you Edward!
 * Try [https://github.com/stuttter/wp-meta-manager](https://github.com/stuttter/wp-meta-manager)
   
   It is WIP.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Query - WP Query Builder] AJAX action ewpq_query_generator is undefined](https://wordpress.org/support/topic/ajax-action-ewpq_query_generator-is-undefined/)
 *  Thread Starter [Viktor Szépe](https://wordpress.org/support/users/szepeviktor/)
 * (@szepeviktor)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/ajax-action-ewpq_query_generator-is-undefined/#post-8731148)
 * Thank you.
 * I am not yet able to confirm it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] error 500 + W3: problems 0.9.5](https://wordpress.org/support/topic/error-500-w3-problems-0-9-5/)
 *  [Viktor Szépe](https://wordpress.org/support/users/szepeviktor/)
 * (@szepeviktor)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/error-500-w3-problems-0-9-5/#post-8486632)
 * Try the community-fixed version [https://github.com/szepeviktor/fix-w3tc](https://github.com/szepeviktor/fix-w3tc)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] PHP 7 Support](https://wordpress.org/support/topic/php-7-support-21/)
 *  [Viktor Szépe](https://wordpress.org/support/users/szepeviktor/)
 * (@szepeviktor)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/php-7-support-21/#post-8486627)
 * You may add `define( 'WP_USE_EXT_MYSQL', false );` to your wp-config
    or use 
   [https://github.com/szepeviktor/fix-w3tc](https://github.com/szepeviktor/fix-w3tc)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multipart robots.txt editor] Cannot Delete plug-in](https://wordpress.org/support/topic/cannot-delete-plug-in-2/)
 *  Plugin Author [Viktor Szépe](https://wordpress.org/support/users/szepeviktor/)
 * (@szepeviktor)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/cannot-delete-plug-in-2/#post-8395815)
 * …and reload the “Plugins” page before clicking on “Delete”
 * Here is the bug report [https://core.trac.wordpress.org/ticket/38661](https://core.trac.wordpress.org/ticket/38661)
    -  This reply was modified 9 years, 6 months ago by [Viktor Szépe](https://wordpress.org/support/users/szepeviktor/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multipart robots.txt editor] Cannot Delete plug-in](https://wordpress.org/support/topic/cannot-delete-plug-in-2/)
 *  Plugin Author [Viktor Szépe](https://wordpress.org/support/users/szepeviktor/)
 * (@szepeviktor)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/cannot-delete-plug-in-2/#post-8395794)
 * Hello Mark!
 * Up to the shiny AJAX plugin de/activation it was `check_admin_referer( 'bulk-
   plugins' )` but now it is `check_ajax_referer( 'updates' )` to check the nonce.
 * Please try to disable JavaScript in your browser (open developer console) and
   click on “Delete”.
 * I think it is a core bug, or lack of feature.
    I’ll keep you posted.
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [Best development server for WP newbie?](https://wordpress.org/support/topic/best-development-server-for-wp-newbie/)
 *  [Viktor Szépe](https://wordpress.org/support/users/szepeviktor/)
 * (@szepeviktor)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/best-development-server-for-wp-newbie/#post-8265095)
 * See 100+ raw CPU tests: [https://github.com/szepeviktor/wordpress-speedtest](https://github.com/szepeviktor/wordpress-speedtest)
 * Bold msec values are of my liking.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sucuri Security - Auditing, Malware Scanner and Security Hardening] Maybe connection issue?](https://wordpress.org/support/topic/maybe-connection-issue/)
 *  Thread Starter [Viktor Szépe](https://wordpress.org/support/users/szepeviktor/)
 * (@szepeviktor)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/maybe-connection-issue/#post-8179402)
 * Please use backticks, or the “code” button in the editor toolbar.
    Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] error while creating the minify cache](https://wordpress.org/support/topic/error-while-creating-the-minify-cache/)
 *  Thread Starter [Viktor Szépe](https://wordpress.org/support/users/szepeviktor/)
 * (@szepeviktor)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/error-while-creating-the-minify-cache/#post-8178814)
 * Hello!
    I’ve opened a repo to fix these issues [https://github.com/szepeviktor/fix-w3tc](https://github.com/szepeviktor/fix-w3tc)
 * W3TC is stuck with APC opcache, and it purges the settings PHP files from opcache
   after configuration change.
 * An anti-performance work-around is to enable `opcache.validate_timestamps`
 * All the best!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MainWP Child - Securely Connects to the MainWP Dashboard to Manage Multiple Sites] Use IP Address for Child Site](https://wordpress.org/support/topic/use-ip-address-for-child-site/)
 *  [Viktor Szépe](https://wordpress.org/support/users/szepeviktor/)
 * (@szepeviktor)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/use-ip-address-for-child-site/#post-8152700)
 * Try using xip.io DNS service.
 * Let’s say your IP is 3.4.5.6 then your site URL could be [http://anything-or-nothing.3.4.5.6.xip.io/](http://anything-or-nothing.3.4.5.6.xip.io/)
 * [http://xip.io/](http://xip.io/)
 * all the best!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sucuri Security - Auditing, Malware Scanner and Security Hardening] Rewritten htaccess](https://wordpress.org/support/topic/rewritten-htaccess/)
 *  Thread Starter [Viktor Szépe](https://wordpress.org/support/users/szepeviktor/)
 * (@szepeviktor)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/rewritten-htaccess/#post-8152305)
 * Excuse me.
 * The file modification time changes.
    The contents stay the same.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sucuri Security - Auditing, Malware Scanner and Security Hardening] Local storage of Audit Logs](https://wordpress.org/support/topic/local-storage-of-audit-logs/)
 *  Thread Starter [Viktor Szépe](https://wordpress.org/support/users/szepeviktor/)
 * (@szepeviktor)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/local-storage-of-audit-logs/#post-7654298)
 * I am asking this because several websites have this cron output:
 *     ```
       <div id="sucuriscan-alert-109" class="error sucuriscan-alert sucuriscan-alert-error">
           <a href="javascript:void(0)" class="close" onclick="sucuriscan_alert_close('109')">&times;</a>
           <p><b>Sucuri:</b> The file hashes could not be stored.</p>
       </div>
       ```
   
 * Does it mean there is an API communication issue?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] How to disable ACF groups lang option](https://wordpress.org/support/topic/how-to-disable-acf-groups-lang-option/)
 *  [Viktor Szépe](https://wordpress.org/support/users/szepeviktor/)
 * (@szepeviktor)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/how-to-disable-acf-groups-lang-option/#post-7177107)
 * Adding polylang tag.

Viewing 15 replies - 16 through 30 (of 438 total)

[←](https://wordpress.org/support/users/szepeviktor/replies/?output_format=md) [1](https://wordpress.org/support/users/szepeviktor/replies/?output_format=md)
2 [3](https://wordpress.org/support/users/szepeviktor/replies/page/3/?output_format=md)…
[28](https://wordpress.org/support/users/szepeviktor/replies/page/28/?output_format=md)
[29](https://wordpress.org/support/users/szepeviktor/replies/page/29/?output_format=md)
[30](https://wordpress.org/support/users/szepeviktor/replies/page/30/?output_format=md)
[→](https://wordpress.org/support/users/szepeviktor/replies/page/3/?output_format=md)