H. Adam Lenz
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] TEC Slowing WP-AdminWe ran across this issue and are experiencing the same. We own events calendar pro, but all of the traces point to the regular version giving us the trouble. We have oodles of system resources.
This is a trace of a transaction that took 940,000 ms to completein mysqli_query called at /code/web/wp-includes/class-wpdb.php (2431) in wpdb::_do_query called at /code/web/wp-includes/class-wpdb.php (2320) in wpdb::query called at /code/web/wp-admin/includes/upgrade.php (3123) …-calendar/src/Events/Custom_Tables/V1/Schema_Builder/ Abstract_Custom_Table.php (58) …-events-calendar/src/Events/Custom_Tables/V1/Schema_Builder/ Schema_Builder.php (259) …content/plugins/the-events-calendar/src/Events/Custom_Tables/V1/ Activation.php (117) …m_Tables\V1\Activation::init called at /code/web/wp-includes/ class-wp-hook.php (308) in WP_Hook::apply_filters called at /code/web/wp-includes/class-wp-hook.php (332) in WP_Hook::do_action called at /code/web/wp-includes/plugin.php (517) in do_action called at /code/web/wp-settings.php (623) in require_once called at /code/web/wp-config.php (230) in require_once called at /code/web/wp-load.php (50) in require_once called at /code/web/wp-blog-header.php (13) in require called at /code/web/index.php (17)
We are posting here to keep this post alive so that hopefully we can find a solution.
we are going to run the latest updates and see if that helps. currently on
The Events Calendar 6.0.13.1?
The Events Calendar Pro 6.0.12- This reply was modified 1 year, 6 months ago by H. Adam Lenz.
Forum: Plugins
In reply to: [Advanced Query Loop] Order by meta keyits the stuff you are working on around 25 minutes in here https://www.youtube.com/watch?v=cGsAfBMZzhw
Forum: Plugins
In reply to: [JVM Gutenberg Rich Text Icons] Icons not available in the site Editorwith full site editing enabled the flag does not appear above any text editor. You can copy and paste the icons from a post editor as a workaround
Forum: Plugins
In reply to: [Media Library Assistant] Hundreds of Daily Errors, You need ABSPATHAwesome, thank you David
Forum: Plugins
In reply to: [Media Library Assistant] Hundreds of Daily Errors, You need ABSPATHthe error occurs when someone browses directly to site.url/wp-content/plugins/media-library-assistant/includes/mla-file-downloader.php
Forum: Fixing WordPress
In reply to: Webapp based on OnsenUII am currently developing a WordPress theme that uses media queries to deliver the onsen ui version to mobile devices. It’s been interesting as I’ve always just made a responsive web design. The basics are the media query hides all of the ons stuff in the footer in desktop widths and hides everything else but the ons stuff below a certain width. All the content is pulled via rest api and I push the history to the browser as I change pages.
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Not sure if submissions go throughI’m seeing the same with large files and a file uploader field. I’m only seeing it on live servers. The AJAX request is sent prematurely. The file has not been uploaded all the way. In the JS console is
Uncaught TypeError: Cannot read property 'data' of undefined
chrome is pointing to line 797 of caldera-forms-front.js. something like
b.jqxhr.responseJSON.data.html && (c.html(b.jqxhr.responseJSON.data.html)
Forum: Plugins
In reply to: [Caldera Forms Anti Spam] Invisible Recaptcha for Caldera Forms?Excellent!
Forum: Plugins
In reply to: [The Events Calendar] Dashboard JavaScript errorI think this was a different case as it was with acf pro being used to make widgets and the event calendar pro widgets. When both were in a side bar on the widgets edit screen, select2 would not work and produced the same error
Forum: Plugins
In reply to: [The Events Calendar] Dashboard JavaScript errorThere is a better way! If you change the version of select2 that ACF uses everything works fine. At least with widgets, which is where I was having the issue. ACF makes it easy to change settings
function acf_setting(){ acf_update_setting('select2_version', 3); } add_action('acf/init', 'acf_settings' );
Forum: Plugins
In reply to: [SearchIQ - The Search Solution] Adding filtersThanks for checking. In v 3.0, the line to add the filter would be closer to 1047
Forum: Plugins
In reply to: [SearchIQ - The Search Solution] Adding filtershere is that gist
https://gist.github.com/hadamlenz/63de11374025b1c36b0ed00af9cbe86d
Forum: Plugins
In reply to: [Advanced Forms for ACF] File size validationbut this is too early to add af_add_error because the submission has not been made
Forum: Plugins
In reply to: [Advanced Forms for ACF] File size validationYou can see the error in acf/validate_attachment
Forum: Plugins
In reply to: [Relevanssi - A Better Search] WP Job ManagerIt’s got something to do with caching there in wp-job-manager-function.php
between line 156 and 202. I traced the output to there and just applied the remove filter at the first chance before.I also looked at the WPQuery object before the query and this stood out
'request' => 'SELECT * FROM wp_9_posts WHERE 1=2',
A search for that in my plugins dir pointed me to relevanssi-premium/lib/common.php line 992 and 994. Affecting the variable
$prevent
might also have a positive outcome.