Viktor Szépe
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] Issues after Version 0.9.5.4 updateMaybe you could give us a try:
https://github.com/szepeviktor/w3-total-cache-fixedI’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 ); } } }Thank you Edward!
Try https://github.com/stuttter/wp-meta-manager
It is WIP.Forum: Plugins
In reply to: [Easy Query - WP Query Builder] AJAX action ewpq_query_generator is undefinedThank you.
I am not yet able to confirm it.
Forum: Plugins
In reply to: [W3 Total Cache] error 500 + W3: problems 0.9.5Try the community-fixed version https://github.com/szepeviktor/fix-w3tc
Forum: Plugins
In reply to: [W3 Total Cache] PHP 7 SupportYou may add
define( 'WP_USE_EXT_MYSQL', false );to your wp-config
or use https://github.com/szepeviktor/fix-w3tcForum: Plugins
In reply to: [Multipart robots.txt editor] Cannot Delete plug-in…and reload the “Plugins” page before clicking on “Delete”
Here is the bug report https://core.trac.ww.wp.xz.cn/ticket/38661
- This reply was modified 9 years, 6 months ago by Viktor Szépe.
Forum: Plugins
In reply to: [Multipart robots.txt editor] Cannot Delete plug-inHello Mark!
Up to the shiny AJAX plugin de/activation it was
check_admin_referer( 'bulk-plugins' )but now it ischeck_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
In reply to: Best development server for WP newbie?See 100+ raw CPU tests: https://github.com/szepeviktor/wordpress-speedtest
Bold msec values are of my liking.
Please use backticks, or the “code” button in the editor toolbar.
Thanks.Forum: Plugins
In reply to: [W3 Total Cache] error while creating the minify cacheHello!
I’ve opened a repo to fix these issues
https://github.com/szepeviktor/fix-w3tcW3TC 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_timestampsAll the best!
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/
all the best!
Excuse me.
The file modification time changes.
The contents stay the same.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')">×</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
In reply to: [Polylang] How to disable ACF groups lang optionAdding polylang tag.