Hello,
I am getting the same error and it is breaking my site. I have centralized it to your plugin. No other plugins on my site call mysqli_fetch_field.
This is the code in question: (File name: Enterprise_Dbcache_WpdbInjection_Cluster.php Line#: 518)
$this->wpdb_mixin->result = mysqli_query( $query, $this->wpdb_mixin->dbh );
Looks like the query results code is a little dyslexic.
Should be:
$this->wpdb_mixin->result = mysqli_query( $this->wpdb_mixin->dbh, $query );
Please fix and issue and immediate update.
Thank you.
Best,
designdrumm