Space
Forum Replies Created
-
Sounds similar. I manage a lot of sites and have never seen anything quite like this. The CPU and memory went to max due to all the database activity, and it is a small site in terms of users (but some quite heavy plugins) and just seemed to happen randomly when logged in as admin.
We have had to upgrade our hosting account to double the resources (to 4GB memory), then I still saw this happen yesterday and it brought the site down for about 20 minutes saying could not connect to database. I think it only came back up when all the processes timed out.
So far I haven’t found a way to trigger the issue in order to debug. We are also using a very limited set of the Jetpack modules: Asset CDN, Copy post, Extra Sidebar Widgets, VideoPress. I have had Jetpack support disable the VaultPress backups on their side to try and rule that out. From what I understand the ‘Sync’ activity in your log snippet is core Jetpack functionality that happens regardless of what modules are enabled, so it can probably happen randomly when Jetpack decides to sync.
The other thing in the logs we were seeing was “WordPress database error Malformed packet for query” and “Waiting for table level lock” against regular WP queries when it was all getting backed up.
The host said when they disabled Jetpack the queries stopped and the problem went away, but I need it as all our videos are hosted through Jetpack. Starting to regret this decision now.
I do wonder if updating to PHP 8.1 would possibly help so I’m going to explore that soon. 7.4 is end of life so I’ve phased that out on most other sites now, and they haven’t had the same issue with Jetpack that I have seen.
I’ve got this too. What’s the impact been for you?
One of my sites has been having database problems and it basically crashes the site. We’re not certain if it’s Jetpack causing it yet but have similar Jetpack queries in the logs.
Also which PHP version are you on? Mine is 7.4.
Update.. it is working now.
Google must take a while to update it. Unfortunately it defaults to an ‘error state’ before it does this!
It was just a few minutes for it to refresh.
Thanks for this awesome plugin.
- This reply was modified 1 year, 7 months ago by Space.
Thanks – can confirm that workaround does show the email content, so it seems to just an issue with the loading the first one.
Forum: Plugins
In reply to: [OneLogin SAML SSO] Payment for use this pluginThis plugin is free to use. I’m using it to connect to Salesforce SSO.
Thank you – I have reset the settings and the new version addresses this issue.
Forum: Plugins
In reply to: [Open Graph] Is there a way to filter article:author?Thank you, that was it. This worked:
function my_opengraph_metadata( $metadata ) { unset( $metadata['article:author'] ); return $metadata; } add_filter( 'opengraph_metadata', 'my_opengraph_metadata', 20, 1 );
Would be a nice one to add to the docs.
Forum: Fixing WordPress
In reply to: get_query_var(“page”) pagination no longer worksI have also noticed pagination issues in WP 5.5.
Elementor pagination is broken, it outputs a URL with /2/ but only a URL with /page/2/ works on this site for some reason.
If you can have a URL with /page/[NUMBER] it should work.
This is quite a big problem if Elementor is broken.
Version 3.0.3 is now available and fixes this issue.
It was strange that the error was appearing when WP_DEBUG was false for me as well.
Same issue here.
I was having an issue with a button shortcode and found this thread. First, just to confirm that button link shortcodes do work now but I was not seeing the button’s href attribute being populated on the front-end.
It turned out there was no problem with my shortcode which was returning a dynamic get_field ACF value. I realised that I was testing using the ‘View page’ Elementor link, which was showing the template page, not the URL of a real content page. Viewing the template via the real content’s URL made it work fine. It is also possible to set the Preview Settings in Elementor to a real piece of content, then when hovering over the button I can see the URL is being correctly applied.
Forum: Plugins
In reply to: [GEO my WP] Needs to import exsiting locations into its new database table?Location import wouldn’t work for me and the message wouldn’t go away. After manually re-adding my custom post type locations, these database steps stopped the notification from appearing:
1. Delete old table wp_places_locator
2. Delete gmw_old_locations_tables_exist in wp_optionsUse at own risk. To check it won’t break anything you could rename the table before deleting.
Hi @mansi-shah,
Thanks for your reply. Looking at the code and I think to support this is a small change:
In
notification/notification-add.php
line 209, removing'exclude_from_search'=> false
from the conditions makes ‘topic’, ‘reply’ and ‘forum’ appear in the custom post types checkbox list. The same change would also be needed innotification/notification-edit.php
line 240.- This reply was modified 6 years, 4 months ago by Space.
Forum: Plugins
In reply to: [WP Job Manager] How to Change Admin Email Notification Email AddressMany thanks @jenhooks!
The snippets are working perfectly and even support multiple addresses.
E.g.
return ['[email protected]', '[email protected]'];
Forum: Plugins
In reply to: [WP Discord] Fatal error when publishing news.Debugged this. Instead of getting a webhook back it was returning error 50013 ‘Missing Permissions’. To resolve edit each channel permissions within Discord and add a new permission set for your bot, ensuring they can post messages and create web hooks. It works for me now.