andy_moyle
Forum Replies Created
-
To add…
Browsing to #/wp-admin/admin.php?page=bbp-core shows 3930 database queries in Query monitor. That’s seems a bit bonkers!
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Not compatible with WP 6.7Can confirm not fixed – you are still calling the translations in wp-content/plugins/updraftplus/central/updraftplus.php:281 at ‘plugins_loaded’ not ‘init’
wp-content/plugins/updraftplus/central/updraftplus.php:272 is shown in error stack at line 272 not 273, so something has chaged but still way too early.
Error on a production site with en_GB , language set.
_load_textdomain_just_in_time()
wp-includes/l10n.php:1355get_translations_for_domain()
wp-includes/l10n.php:1385translate()
wp-includes/l10n.php:194__()
wp-includes/l10n.php:306UpdraftPlus_Host->load_updraftplus_translations()
wp-content/plugins/updraftplus/central/updraftplus.php:281UpdraftPlus_Host->maybe_initialize_required_objects()
wp-content/plugins/updraftplus/central/updraftplus.php:272UpdraftPlus_Host->__construct()
wp-content/plugins/updraftplus/central/updraftplus.php:44UpdraftPlus_Host::instance()
wp-content/plugins/updraftplus/central/updraftplus.php:29UpdraftCentral_Factory::create_host()
wp-content/plugins/updraftplus/central/factory.php:67updraft_try_include_file()
wp-content/plugins/updraftplus/updraftplus.php:103UpdraftPlus->plugins_loaded()
wp-content/plugins/updraftplus/class-updraftplus.php:776do_action('plugins_loaded')
wp-includes/plugin.php:517
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Not compatible with WP 6.7Follow up – as noted in other thread, issue only occurs when Site langauge is not US English – try British English.
- This reply was modified 1 week, 2 days ago by andy_moyle.
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Not compatible with WP 6.7Using Query Monitor with WP 6.7…
Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the updraftplus domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. (This message was added in version 6.7.0.)
_load_textdomain_just_in_time()
wp-includes/l10n.php:1355get_translations_for_domain()
wp-includes/l10n.php:1385translate()
wp-includes/l10n.php:194__()
wp-includes/l10n.php:306UpdraftPlus_Host->maybe_initialize_required_objects()
wp-content/plugins/updraftplus/central/updraftplus.php:273UpdraftPlus_Host->__construct()
wp-content/plugins/updraftplus/central/updraftplus.php:43UpdraftPlus_Host::instance()
wp-content/plugins/updraftplus/central/updraftplus.php:29UpdraftCentral_Factory::create_host()
wp-content/plugins/updraftplus/central/factory.php:67updraft_try_include_file()
wp-content/plugins/updraftplus/updraftplus.php:103UpdraftPlus->plugins_loaded()
wp-content/plugins/updraftplus/class-updraftplus.php:769do_action('plugins_loaded')
wp-includes/plugin.php:517
Using Query Monitor…
Point 11 shows a __() called to early.
- wp-includes/functions.php:6114
wp_trigger_error()
wp-includes/functions.php:6054_load_textdomain_just_in_time()
wp-includes/l10n.php:1385get_translations_for_domain()
wp-includes/l10n.php:194translate()
wp-includes/l10n.php:306__()
wp-content/plugins/query-monitor/collectors/doing_it_wrong.php:134do_action('doing_it_wrong_run')
wp-includes/functions.php:6003_load_textdomain_just_in_time()
wp-includes/l10n.php:1385get_translations_for_domain()
wp-includes/l10n.php:194translate()
wp-includes/l10n.php:306__()
wp-content/plugins/bbp-core/includes/admin/settings/options/settings.php:11BBP_Core->core_includes()
wp-content/plugins/bbp-core/bbp-core.php:75BBP_Core->__construct()
wp-content/plugins/bbp-core/bbp-core.php:146BBP_Core::init()
wp-content/plugins/bbp-core/bbp-core.php:247bbp_core()
wp-content/plugins/bbp-core/bbp-core.php:250
It’s not a bug in 6.7. It’s a feature, to point out that translations are loaded too early to use/ beingcalled for by __() etc (because the locale of the user not yet set).
It’s a pain to fix BTW.
1) Simple fix is if you are loading the text domain too early. init is the correct action.
2) If that doesn’t fix it, then you have to trawl through all your uses of translation strings, to make sure they are not earlier than ‘init’ – took me hours on one of my plugins.
- This reply was modified 1 week, 2 days ago by andy_moyle.
Forum: Plugins
In reply to: [Advanced Google reCAPTCHA] wp_login_form()Doesn’t work – tried all sorts of ob_start() stuff too. Just can’t get the captch within the form when its not echo’d but returned.
Forum: Plugins
In reply to: [Church Admin] how do i print mailing labelsThis was resolved on our main support channel https://www.churchadminplugin.com/support or email
Forum: Plugins
In reply to: [Church Admin] Nothing appears in the directory pdfThis was resolved on our main support channel https://www.churchadminplugin.com/support or email
Forum: Plugins
In reply to: [Ko-fi Button] Latest update caused a critical errorChanged line 265 to
$settings = !empty(self::$options[‘coffee_floating_button_display’])?self::$options[‘coffee_floating_button_display’]:false;
Forum: Plugins
In reply to: [Ko-fi Button] Latest update caused a critical errorMorphed into a slightly different error withe the floating button display
Warning: Undefined array key “coffee_floating_button_display” in?/home/######/public_html/######/wp-content/plugins/ko-fi-button/Ko_fi.phpon line?265
Forum: Plugins
In reply to: [AddToAny Share Buttons] Mastodon shareYes I did! Works fine without – bit new to Mastodon
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Database query errorVersion 4.15 of the plugin on WordPress 6.0
Forum: Reviews
In reply to: [Church Admin] Just not good enoughThanks for your feedback.
I don’t use any frames – it’s no longer 1999!
Front end tables are used to display tabular data and some forms.
All the shortcode/block output has a multitude of classes to allow styling by website developers.Sadly you were right about the performance drop on activation – it’s taken a while to work out the issues and it was the way that Gutenberg blocks have been added to the plugin. All the scripts were loaded on every page whether they were needed or not. Version 3.4.106 is zippy fast with an A grade for performance. Scripts will only be loaded if needed on the page. I’m just finishing testing on it and will upload to the depository in a week or so.
Here’s a page about my performance tests – https://www.churchadminplugin.com/performance/
Forum: Plugins
In reply to: [Church Admin] App – App Content HTTP 500Your url dev.walterhillchurch.com is not an app subscriber so you can’t create app content – the link to buy the app is https://www.churchadminplugin.com/app