-
When doing updates I noticed this in the log (subbed dbname for our database name):
WordPress database error Table ‘dbname.wp_options’ doesn’t exist for query SELECT
wpscm_options
.option_name as option_name,wpscm_options
.option_value as option_value FROMwp_options
WHERE option_name LIKE ‘fv_player_pro_transcript_%’ made by do_action_ref_array(‘fv_player_pro_update_transcript_cache’), WP_Hook->do_action, WP_Hook->apply_filters, FV_Player_Pro_Trascript->update_transcript_cacheIt is not applying the proper table prefix, wpscm in our case, and so therefore cannot find the ‘wp_options’ table as it should be ‘wpscm_options’. It gets it right in the field list but not in the FROM clause.
First, this should be fixed, but then how do we ensure the right queries are run for our site?