Skip to content

Instantly share code, notes, and snippets.

@jazbek
Created September 16, 2013 19:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jazbek/6585714 to your computer and use it in GitHub Desktop.
Save jazbek/6585714 to your computer and use it in GitHub Desktop.
Fix for hosts with low join limit
<?php
add_action('init', 'tribe_allow_large_joins');
function tribe_allow_large_joins(){
global $wpdb;
$wpdb->query('SET SQL_BIG_SELECTS=1');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment