thomaswm
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Cerber Security, Anti-spam & Malware Scan] What’s with the cookies?Thank you very much for responding so quickly. And thank you also for your great work on this plugin.
Forum: Plugins
In reply to: [XPoster - Share to Bluesky and Mastodon] Fatal ErrorAre you maybe using the Twitter Widget Pro plugin? Its latest version seems to be incompatible with “WP to Twitter”.
I had this problem on one of my websites. It can be solved by deactivating any one of those plugins.
Forum: Plugins
In reply to: [Bitcoin Donate Button] Buttons shown in pages, but not in postsHi @dylesid. No, I wasn’t able to fix it. I’ve actually uninstalled the plugin.
Forum: Fixing WordPress
In reply to: Redirection loop: Page redirecting to itself sometimesThis error is gone since we deactivated Apache’s
mod_cache
plugin. This behaviour might have been related to ticket #12175.We have set up a WordPress Multiuser Network. Quick Cache is enabled network-wide and the All in One Event Calendar plugin is activated on some blogs. So far, we have not experienced any problems.
Forum: Fixing WordPress
In reply to: Redirection loop: Page redirecting to itself sometimesI have found a workaround for this problem. I just hook into the wp_redirect filter and add a “Connection: close” HTTP header.
function close_connection_after_redirect($location,$status) { header("Connection: close",true); return $location; } add_filter('wp_redirect','close_connection_after_redirect');
I haven’t found out yet what has actually caused the redirect loop, but this workaround solves the problem for me.
Greets,
Thomas