Skip Navigation

This thread is resolved. Here is a description of the problem and solution.

Problem:
The client was experiencing a significant slowdown of the WordPress dashboard after installing WPML on a site hosted on Pantheon. The dashboard was so slow that it was practically unusable, and the error 'The application did not respond in time' was occurring. The hosting support found slow PHP logs pointing to WPML functions.

Solution:
First, we asked the client to enable WordPress debugging to gather more information about the issue. We provided instructions on how to modify the

wp-config.php

file to enable

WP_DEBUG

and

WP_DEBUG_LOG

, which would save errors to a debug.log file in the /wp-content/ directory. We also provided a link to our documentation on debugging WPML:
https://wpml.org/documentation/support/debugging-wpml/
and requested the client to provide WPML's debug information using the following link:
http://wpml.org/faq/provide-debug-information-faster-support/

Upon further investigation, we noticed a double slash in the URL within the PHP logs, which could be related to the issue. We advised the client to look into why the double slash was occurring and to resolve it, as debugging custom themes or plugins is beyond our support scope.

If the provided solution is not relevant due to being outdated or not applicable to your case, we recommend opening a new support ticket. We also highly recommend checking related known issues at https://wpml.org/known-issues/, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If further assistance is needed, please contact us in the WPML support forum.

This is the technical support forum for WPML - the multilingual WordPress plugin.

Everyone can read, but only WPML clients can post here. WPML team is replying on the forum 6 days per week, 22 hours per day.

This topic contains 10 replies, has 2 voices.

Last updated by Andrey 10 months, 3 weeks ago.

Assisted by: Andrey.

Author Posts
March 15, 2024 at 11:56 pm #15416116

jordanP-2

Hi,

I'm trying to get a new language set up on my client's site. The site is hosted on Pantheon, so I'm working in a multidev environment.

I've tried twice now to install WPML using the OTGS installer. Both times, when I get the WPML plugins installed, the WP dashboard slows down so much that I can't do anything in it. Even trying to get /wp-admin/ to load results in a "The application did not respond in time." error.

I've talked to my hosting support and they said they found this in the php-slow logs:
script_filename = /code//wp-admin/index.php[0×00007f40a3216300] mysqli_query() /code/wp-includes/class-wpdb.php:2431[0×00007f40a3216290] _do_query() /code/wp-includes/class-wpdb.php:2320[0×00007f40a32161b0] query() /code/wp-includes/class-wpdb.php:3060[0×00007f40a3216100] get_col() /code/wp-content/plugins/sitepress-multilingual-cms/inc/functions-load.php:226[0×00007f40a3216070] {closure}() /code/wp-content/plugins/sitepress-multilingual-cms/vendor/wpml/wp/classes/WPDB.php:20[0×00007f40a3215fd0] withoutError() /code/wp-content/plugins/sitepress-multilingual-cms/inc/functions-load.php:229[0×00007f40a3215f20] wpml_reload_active_languages_setting() /code/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/class-wpml-language-resolution.php:94[0×00007f40a3215e40] maybe_reload() /code/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/class-wpml-language-resolution.php:70[0×00007f40a3215de0] get_active_language_codes() /code/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/class-wpml-rest-request-analyze-factory.php:17[0×00007f40a3215cd0] create() /code/wp-content/plugins/sitepress-multilingual-cms/vendor/otgs/auryn/lib/Executable.php:42[0×00007f40a3215c60] invokeArgs() /code/wp-content/plugins/sitepress-multilingual-cms/vendor/otgs/auryn/lib/Executable.php:42[0×00007f40a3215be0] __invoke() /code/wp-content/plugins/sitepress-multilingual-cms/vendor/otgs/auryn/lib/Injector.php:371[0×00007f40a3215b70] call_user_func_array() /code/wp-content/plugins/sitepress-multilingual-cms/vendor/otgs/auryn/lib/Injector.php:371[0×00007f40a3215a80] make() /code/wp-content/plugins/sitepress-multilingual-cms/classes/container/class-wpml-container.php:98[0×00007f40a32159f0] make() /code/wp-content/plugins/sitepress-multilingual-cms/classes/container/functions.php:29[0×00007f40a3215960] WPML\Container\{closure}() /code/wp-content/plugins/sitepress-multilingual-cms/vendor/wpml/fp/core/functions.php:154[0×00007f40a32158f0] call_user_func_array() /code/wp-content/plugins/sitepress-multilingual-cms/vendor/wpml/fp/core/functions.php:154[0×00007f40a32157f0] WPML\FP\{closure}() /code/wp-content/plugins/sitepress-multilingual-cms/classes/container/functions.php:35[0×00007f40a3215780] call_user_func_array() /code/wp-content/plugins/sitepress-multilingual-cms/classes/container/functions.php:35[0×00007f40a32156f0] WPML\Container\make() /code/wp-content/plugins/sitepress-multilingual-cms/inc/functions.php:806

They recommended deleting WPML to see if the dashboard would load. (I had to do it via SFTP.) Sure enough, the dashboard loaded without an issue.

I tried installing WPML again via OTGS and had the same result. I am selecting the "activate after install" option in the installer.

I've never had this problem with WPML before so I'm not really sure what to do. Thank you!

March 16, 2024 at 9:23 am #15416416

Andrey
Supporter

Languages: English (English ) Russian (Русский )

Timezone: Europe/Kyiv (GMT+02:00)

Thank you for contacting WPML support.

Looking at the logs you shared, I do not see anything that could cause this. Could you please activate the WordPress debug.log and see what is there when you activate WPML?

You can add a few lines to the site’s wp-config.php file. With the error log enabled, you will see the actual problem.

To enable it, open your wp-config.php file and look for define(‘WP_DEBUG’, false);. Change it to:

define('WP_DEBUG', true);

To enable the error logging to a file on the server you need to add yet one more similar line:

define( 'WP_DEBUG_LOG', true );

The errors will be saved to a debug.log log file inside the /wp-content/directory.

https://wpml.org/documentation/support/debugging-wpml/

If possible, please add WPML's enabled debug information for this support ticket. Please see this link for how to get this information from your site and give it to us:
http://wpml.org/faq/provide-debug-information-faster-support/

March 18, 2024 at 6:32 pm #15423099

jordanP-2

Hi,

I can't get the WordPress dashboard to load at all so I can't get the WPML debug info. Hopefully the WP debug log info will help though:

[23-Jun-2020 01:19:05 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/home_hero_banner_block.php on line 74
[23-Jun-2020 01:19:05 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/featured_products_block.php on line 79
[23-Jun-2020 01:19:05 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 01:19:06 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 01:19:06 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_full_width_image_block.php on line 72
[23-Jun-2020 01:19:06 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 01:19:06 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 01:19:06 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 01:19:06 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/full_width_image_block.php on line 68
[23-Jun-2020 01:19:06 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 01:19:06 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 01:31:14 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/home_hero_banner_block.php on line 74
[23-Jun-2020 01:31:14 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/featured_products_block.php on line 79
[23-Jun-2020 01:31:14 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 01:31:14 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 01:31:14 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_full_width_image_block.php on line 72
[23-Jun-2020 01:31:14 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 01:31:14 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 01:31:14 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 01:31:14 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/full_width_image_block.php on line 68
[23-Jun-2020 01:31:14 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 01:31:14 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 01:47:42 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/home_hero_banner_block.php on line 74
[23-Jun-2020 01:47:42 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/featured_products_block.php on line 79
[23-Jun-2020 01:47:42 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 01:47:42 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 01:47:42 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_full_width_image_block.php on line 72
[23-Jun-2020 01:47:42 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 01:47:42 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 01:47:42 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 01:47:42 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/full_width_image_block.php on line 68
[23-Jun-2020 01:47:42 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 01:47:42 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 02:06:18 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/home_hero_banner_block.php on line 74
[23-Jun-2020 02:06:18 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/featured_products_block.php on line 79
[23-Jun-2020 02:06:18 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 02:06:18 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 02:06:18 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_full_width_image_block.php on line 72
[23-Jun-2020 02:06:18 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 02:06:18 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 02:06:18 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 02:06:18 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/full_width_image_block.php on line 68
[23-Jun-2020 02:06:18 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 02:06:18 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 02:08:12 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/home_hero_banner_block.php on line 74
[23-Jun-2020 02:08:12 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/featured_products_block.php on line 79
[23-Jun-2020 02:08:13 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 02:08:13 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 02:08:13 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_full_width_image_block.php on line 72
[23-Jun-2020 02:08:13 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 02:08:13 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 02:08:13 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 02:08:13 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/full_width_image_block.php on line 68
[23-Jun-2020 02:08:13 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 02:08:13 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:04:18 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/home_hero_banner_block.php on line 74
[23-Jun-2020 03:04:18 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/featured_products_block.php on line 79
[23-Jun-2020 03:04:18 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 03:04:18 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 03:04:18 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_full_width_image_block.php on line 72
[23-Jun-2020 03:04:18 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 03:04:18 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 03:04:18 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 03:04:18 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/full_width_image_block.php on line 68
[23-Jun-2020 03:04:18 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:04:18 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:04:38 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/home_hero_banner_block.php on line 74
[23-Jun-2020 03:04:38 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/featured_products_block.php on line 79
[23-Jun-2020 03:04:38 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 03:04:38 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 03:04:38 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_full_width_image_block.php on line 72
[23-Jun-2020 03:04:39 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 03:04:39 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 03:04:39 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 03:04:39 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/full_width_image_block.php on line 68
[23-Jun-2020 03:04:39 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:04:39 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:04:58 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/home_hero_banner_block.php on line 74
[23-Jun-2020 03:04:58 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/featured_products_block.php on line 79
[23-Jun-2020 03:04:58 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 03:04:58 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 03:04:58 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_full_width_image_block.php on line 72
[23-Jun-2020 03:04:58 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 03:04:59 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 03:04:59 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 03:04:59 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/full_width_image_block.php on line 68
[23-Jun-2020 03:04:59 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:04:59 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:13:37 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/home_hero_banner_block.php on line 74
[23-Jun-2020 03:13:37 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/featured_products_block.php on line 79
[23-Jun-2020 03:13:37 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 03:13:37 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 03:13:37 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_full_width_image_block.php on line 72
[23-Jun-2020 03:13:37 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 03:13:37 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 03:13:37 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 03:13:38 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/full_width_image_block.php on line 68
[23-Jun-2020 03:13:38 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:13:38 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:13:43 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/contact_form_section.php on line 74
[23-Jun-2020 03:13:43 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/full_width_image_block.php on line 68
[23-Jun-2020 03:13:48 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/product_search_filter_block.php on line 70
[23-Jun-2020 03:13:48 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/product_search_filter_block.php on line 70
[23-Jun-2020 03:13:49 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_full_width_image_block.php on line 72
[23-Jun-2020 03:13:49 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 03:13:49 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:15:09 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/home_hero_banner_block.php on line 74
[23-Jun-2020 03:15:09 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/featured_products_block.php on line 79
[23-Jun-2020 03:15:09 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 03:15:09 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 03:15:09 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_full_width_image_block.php on line 72
[23-Jun-2020 03:15:10 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 03:15:10 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 03:15:10 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 03:15:10 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/full_width_image_block.php on line 68
[23-Jun-2020 03:15:10 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:15:10 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:15:21 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/home_hero_banner_block.php on line 74
[23-Jun-2020 03:15:21 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/featured_products_block.php on line 79
[23-Jun-2020 03:15:22 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 03:15:22 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 03:15:22 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_full_width_image_block.php on line 72
[23-Jun-2020 03:15:22 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 03:15:22 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 03:15:22 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 03:15:22 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/full_width_image_block.php on line 68
[23-Jun-2020 03:15:22 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:15:22 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:18:05 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:18:05 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 03:18:05 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/full_width_image_block.php on line 66
[23-Jun-2020 03:18:05 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:18:05 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:19:57 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:19:57 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:19:57 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/two_column_block.php on line 70
[23-Jun-2020 03:19:57 UTC] PHP Notice:  Undefined variable: alignment in /code/wp-content/themes/krish-tech/template-parts/content-module/two_column_block.php on line 70
[23-Jun-2020 03:19:57 UTC] PHP Notice:  Undefined variable: width in /code/wp-content/themes/krish-tech/template-parts/content-module/two_column_block.php on line 70
[23-Jun-2020 03:19:57 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/media_object_block.php on line 73
[23-Jun-2020 03:19:57 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/media_object_columns_block.php on line 70
[23-Jun-2020 03:19:58 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/media_object_columns_block.php on line 70
[23-Jun-2020 03:19:58 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:19:58 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/full_width_image_block.php on line 66
[23-Jun-2020 03:20:33 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/home_hero_banner_block.php on line 74
[23-Jun-2020 03:20:33 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/featured_products_block.php on line 79
[23-Jun-2020 03:20:33 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 03:20:33 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 03:20:33 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_full_width_image_block.php on line 72
[23-Jun-2020 03:20:33 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 03:20:33 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 03:20:33 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 03:20:33 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/full_width_image_block.php on line 68
[23-Jun-2020 03:20:33 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:20:34 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:20:37 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:20:37 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:20:37 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/two_column_block.php on line 70
[23-Jun-2020 03:20:37 UTC] PHP Notice:  Undefined variable: alignment in /code/wp-content/themes/krish-tech/template-parts/content-module/two_column_block.php on line 70
[23-Jun-2020 03:20:37 UTC] PHP Notice:  Undefined variable: width in /code/wp-content/themes/krish-tech/template-parts/content-module/two_column_block.php on line 70
[23-Jun-2020 03:20:37 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/media_object_block.php on line 73
[23-Jun-2020 03:20:38 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/media_object_columns_block.php on line 70
[23-Jun-2020 03:20:38 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/media_object_columns_block.php on line 70
[23-Jun-2020 03:20:38 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:20:38 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/full_width_image_block.php on line 66
[23-Jun-2020 03:22:00 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:22:00 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:22:00 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/two_column_block.php on line 70
[23-Jun-2020 03:22:00 UTC] PHP Notice:  Undefined variable: alignment in /code/wp-content/themes/krish-tech/template-parts/content-module/two_column_block.php on line 70
[23-Jun-2020 03:22:01 UTC] PHP Notice:  Undefined variable: width in /code/wp-content/themes/krish-tech/template-parts/content-module/two_column_block.php on line 70
[23-Jun-2020 03:22:01 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/media_object_block.php on line 73
[23-Jun-2020 03:22:01 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/media_object_columns_block.php on line 70
[23-Jun-2020 03:22:01 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/media_object_columns_block.php on line 70
[23-Jun-2020 03:22:01 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:22:01 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/full_width_image_block.php on line 66
[23-Jun-2020 03:22:20 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/media_object_full_width_block.php on line 71
[23-Jun-2020 03:22:20 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 03:22:20 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 03:22:20 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 03:22:20 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 03:22:20 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 03:22:20 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:22:34 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/media_object_full_width_block.php on line 71
[23-Jun-2020 03:22:34 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 03:22:34 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 03:22:34 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 03:22:34 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 03:22:34 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 03:22:34 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:22:48 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:22:48 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:22:48 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/two_column_block.php on line 70
[23-Jun-2020 03:22:48 UTC] PHP Notice:  Undefined variable: alignment in /code/wp-content/themes/krish-tech/template-parts/content-module/two_column_block.php on line 70
[23-Jun-2020 03:22:48 UTC] PHP Notice:  Undefined variable: width in /code/wp-content/themes/krish-tech/template-parts/content-module/two_column_block.php on line 70
[23-Jun-2020 03:22:48 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/media_object_block.php on line 73
[23-Jun-2020 03:22:48 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/media_object_columns_block.php on line 70
[23-Jun-2020 03:22:48 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/media_object_columns_block.php on line 70
[23-Jun-2020 03:22:48 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:23:04 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/media_object_full_width_block.php on line 71
[23-Jun-2020 03:23:04 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 03:23:04 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 03:23:04 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 03:23:04 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 03:23:04 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/krish-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 03:23:04 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/krish-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:42:20 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/home_hero_banner_block.php on line 74
[23-Jun-2020 03:42:20 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/featured_products_block.php on line 79
[23-Jun-2020 03:42:20 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 03:42:21 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 03:42:21 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/cta_full_width_image_block.php on line 72
[23-Jun-2020 03:42:21 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 03:42:21 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 03:42:21 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 03:42:21 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/full_width_image_block.php on line 68
[23-Jun-2020 03:42:21 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:42:21 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:42:35 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/home_hero_banner_block.php on line 74
[23-Jun-2020 03:42:35 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/featured_products_block.php on line 79
[23-Jun-2020 03:42:35 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 03:42:35 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 03:42:35 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/cta_full_width_image_block.php on line 72
[23-Jun-2020 03:42:35 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 03:42:35 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 03:42:35 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 03:42:35 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/full_width_image_block.php on line 68
[23-Jun-2020 03:42:35 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:42:35 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:42:57 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/home_hero_banner_block.php on line 74
[23-Jun-2020 03:42:57 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/featured_products_block.php on line 79
[23-Jun-2020 03:42:57 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 03:42:57 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 03:42:57 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/cta_full_width_image_block.php on line 72
[23-Jun-2020 03:42:57 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 03:42:57 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 03:42:57 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 03:42:57 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/full_width_image_block.php on line 68
[23-Jun-2020 03:42:57 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:42:57 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:43:09 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/home_hero_banner_block.php on line 74
[23-Jun-2020 03:43:10 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/featured_products_block.php on line 79
[23-Jun-2020 03:43:10 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 03:43:10 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 03:43:10 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/cta_full_width_image_block.php on line 72
[23-Jun-2020 03:43:10 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 03:43:10 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 03:43:10 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 03:43:10 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/full_width_image_block.php on line 68
[23-Jun-2020 03:43:10 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:43:10 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:43:28 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/home_hero_banner_block.php on line 74
[23-Jun-2020 03:43:28 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/featured_products_block.php on line 79
[23-Jun-2020 03:43:28 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 03:43:28 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 03:43:28 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/cta_full_width_image_block.php on line 72
[23-Jun-2020 03:43:28 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 03:43:28 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 03:43:28 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 03:43:29 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/full_width_image_block.php on line 68
[23-Jun-2020 03:43:29 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:43:29 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:44:08 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/media_object_block.php on line 73
[23-Jun-2020 03:44:08 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:44:08 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/latest_posts_carousel_block.php on line 73
[23-Jun-2020 03:44:08 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/cta_subscribe_block.php on line 71
[23-Jun-2020 03:44:08 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/icons_block.php on line 71
[23-Jun-2020 03:44:09 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/testimonials_block.php on line 71
[23-Jun-2020 03:44:09 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 03:44:09 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:44:17 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/product_search_filter_block.php on line 70
[23-Jun-2020 03:44:17 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/product_search_filter_block.php on line 70
[23-Jun-2020 03:44:17 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/cta_full_width_image_block.php on line 72
[23-Jun-2020 03:44:18 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/cta_get_a_quote_block.php on line 72
[23-Jun-2020 03:44:18 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/gallery_block.php on line 71
[23-Jun-2020 03:44:24 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/contact_form_section.php on line 74
[23-Jun-2020 03:44:24 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/full_width_image_block.php on line 68
[23-Jun-2020 03:44:28 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:44:28 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/open_content_block.php on line 73
[23-Jun-2020 03:44:28 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/two_column_block.php on line 70
[23-Jun-2020 03:44:28 UTC] PHP Notice:  Undefined variable: alignment in /code/wp-content/themes/kris-tech/template-parts/content-module/two_column_block.php on line 70
[23-Jun-2020 03:44:28 UTC] PHP Notice:  Undefined variable: width in /code/wp-content/themes/kris-tech/template-parts/content-module/two_column_block.php on line 70
[23-Jun-2020 03:44:28 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/media_object_block.php on line 73
[23-Jun-2020 03:44:28 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/media_object_columns_block.php on line 70
[23-Jun-2020 03:44:28 UTC] PHP Notice:  Undefined variable: sec_class in /code/wp-content/themes/kris-tech/template-parts/content-module/media_object_columns_block.php on line 70
[23-Jun-2020 03:44:28 UTC] PHP Notice:  Undefined variable: bg in /code/wp-content/themes/kris-tech/template-parts/content-module/open_content_block.php on line 73
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='6579' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='6584' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='6588' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='5833' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='5838' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2866' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2367' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2376' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2378' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2389' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='4910' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='6409' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2871' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2650' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2733' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2526' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2587' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2830' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2581' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2482' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2615' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2873' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2560' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='6049' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:02 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2369' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2492' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2573' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2637' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2767' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2682' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='6056' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2603' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2817' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2717' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2969' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='4370' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='4377' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2912' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='4384' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2845' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2512' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='5114' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='3427' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2951' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='8100' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2538' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='7204' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2436' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2460' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='2470' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='4921' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:21:03 UTC] WordPress database error Table 'pantheon.wp_icl_string_packages' doesn't exist for query SELECT * FROM wp_icl_string_packages WHERE kind_slug='acf-field-group' AND name='4926' made by require_once('wp-admin/admin.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('wp_loaded'), WP_Hook->do_action, WP_Hook->apply_filters, WPML\LIB\WP\Hooks::WPML\LIB\WP\{closure}, WPML\FP\Promise->resolve, WPML\FP\Right->chain, WPML\FP\Right->map, ACFML\Strings\STPluginHooks->maybeRegisterFieldGroupsStrings, ACFML\Strings\STPluginHooks->registerFieldGroupsStrings, WPML\Collect\Support\Collection->reject, WPML\Collect\Support\Collection->filter, WPML\Collect\Support\Arr::where, array_filter, WPML\Collect\Support\Collection->WPML\Collect\Support\{closure}, ACFML\Strings\STPluginHooks->hasPackage, ACFML\Strings\Package->getStatus, WPML\FP\Fns::WPML\FP\{closure}, call_user_func_array, ACFML\Strings\Package->ACFML\Strings\{closure}, ACFML\Strings\Package->getWpmlPackage, ACFML\Strings\Factory::createWpmlPackage, WPML_Package->__construct, WPML_Package->init_from_array, WPML_Package->package_name_and_kind_exists, WPML_Package->get_package_from_name_and_kind
[15-Mar-2024 23:23:49 UTC] PHP Fatal error:  Maximum execution time of 120 seconds exceeded in /code/wp-includes/class-wp-scripts.php on line 831
[15-Mar-2024 23:24:33 UTC] PHP Fatal error:  Maximum execution time of 120 seconds exceeded in /code/wp-includes/class-wp-scripts.php on line 831
[15-Mar-2024 23:25:35 UTC] PHP Fatal error:  Maximum execution time of 120 seconds exceeded in /code/wp-content/plugins/sitepress-multilingual-cms/inc/functions.php on line 85
[15-Mar-2024 23:57:42 UTC] PHP Fatal error:  Maximum execution time of 120 seconds exceeded in /code/wp-content/plugins/sitepress-multilingual-cms/sitepress.class.php on line 1283
[18-Mar-2024 18:29:29 UTC] PHP Fatal error:  Maximum execution time of 120 seconds exceeded in /code/wp-includes/class-wp-scripts.php on line 831
March 19, 2024 at 9:34 am #15424991

Andrey
Supporter

Languages: English (English ) Russian (Русский )

Timezone: Europe/Kyiv (GMT+02:00)

Thank you for the log. I am seeing some errors. If possible, I need to request temporary access (wp-admin and FTP) to your site where the problem has been replicated in order to be of better help. You will find the needed fields below the comment area when you log in to leave your next reply. The information you will enter is private, which means only you and I can see and have access to it.

Let me know if backup is done and I am allowed to reinstall WPML.

March 20, 2024 at 1:34 pm #15431739

Andrey
Supporter

Languages: English (English ) Russian (Русский )

Timezone: Europe/Kyiv (GMT+02:00)

I found the culprit causing the issue. The Share Buttons by AddThis plugin prevented the WPML plugin from being activated. When I tried deactivating and activating the Share Buttons plugin, the WordPress dashboard showed an error message: The plugin generated 384 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds, or other issues, try deactivating or removing this plugin.

Therefore, I deactivated the Share Buttons plugin and activated the WPML plugin without any issues. I hope this information helps.

March 20, 2024 at 3:59 pm #15432954

jordanP-2

Interesting, I never would have guessed that. I removed the plugin and everything looks good now. Thank you so much for your help, Andrey!

March 20, 2024 at 6:27 pm #15433398

Andrey
Supporter

Languages: English (English ) Russian (Русский )

Timezone: Europe/Kyiv (GMT+02:00)

Great! Have a nice evening 🙂

March 21, 2024 at 12:11 am #15434050

jordanP-2

Hi Andrey,

I thought I created a new support thread but I can't find it now. This was working but as soon as my colleague tried to configure WPML, the issue returned. The social sharing plugin has been deleted, so it shouldn't be that again.

I can't get to the WPML debug, but here's the log from the server: https://pastebin.com/ZkNa6a2q

March 21, 2024 at 9:05 am #15435104

Andrey
Supporter

Languages: English (English ) Russian (Русский )

Timezone: Europe/Kyiv (GMT+02:00)

According to the log, it appears that one of the WPML tables is missing. Would you please try the following steps?

- Go to WPML → Support and click on the Troubleshooting link.
- On the Troubleshooting page, navigate to the Reset section and select the checkbox that says "I am about to reset all translation and language data".
- Then, click on the "Reset and deactivate WPML" button.
- Finally, activate WPML and configure it.

Here's the link: https://wpml.org/documentation/getting-started-guide/language-setup/deleting-languages-and-plugin-data-by-doing-a-wpml-reset-on-your-site/

March 22, 2024 at 12:34 am #15438566

jordanP-2

Hi,

I think there's something else going on. Even after wiping out the environment and installing WPML afresh, I was still getting issues.

I talked to my hosting support and they reviewed the New Relic reports for the site. They found this error:

Error message:
file_get_contents(hidden link): Failed to open stream: HTTP request failed! HTTP/1.1 504 Gateway Timeout
…get_contents called at /code/wp-content/themes/kris-tech/inc/theme-optimization.php (83)
/in my_output_buffer_callback called at ? (?)
in ob_end_flush called at /code/wp-includes/functions.php (5373)
in wp_ob_end_flush_all called at /code/wp-includes/class-wp-hook.php (324)
in WP_Hook::apply_filters called at /code/wp-includes/class-wp-hook.php (348)
in WP_Hook::do_action called at /code/wp-includes/plugin.php (517)
in do_action called at /code/wp-includes/load.php (1260)
/in shutdown_action_hook called at ? (?)

I looked in the theme-optimization.php file and this was line 83:
$jquery_code = file_get_contents( $home_uri . 'https://cdn.wpml.org/wp-includes/js/jquery/jquery.js' );

As soon as I commented that code out, the dashboard started loading again. Why would that fix the issue?

March 22, 2024 at 10:22 pm #15442575

Andrey
Supporter

Languages: English (English ) Russian (Русский )

Timezone: Europe/Kyiv (GMT+02:00)

I'm sorry to hear that you are still having trouble with this.

Looking at this, I see the double slash in the URL; maybe this is causing the issue.

file_get_contents(<em><u>hidden link</u></em>):

Unfortunately, debugging custom themes or plugins is outside the scope of our support provided here. You need to figure out why the double slash occurs and prevent it from happening.

Have a lovely weekend.