Quantcast
Channel: Toolset » All Posts
Viewing all articles
Browse latest Browse all 20145

Reply To: [Assigned] Search with more than 6 parameters generates SET SQL_BIG_SELECTS=1 or SET MAX_JO

$
0
0

We solved it by using this extension on the functions.php


function tribe_allow_large_joins()
{
	global $wpdb;
	$wpdb->query('SET SQL_BIG_SELECTS=1');
}
add_action('init', 'tribe_allow_large_joins');


Viewing all articles
Browse latest Browse all 20145

Trending Articles