Singh
Forum Replies Created
-
Hey Steve, Thanks a lot for your input. Actually, I’ve backup of the database so all those deleted tables are safe. I’ve already tried WP Database Repair functionality and PhpMyAdmission Repair Table option.
Below I’ve shared the wp-db.php
/** * Internal function to perform the mysql_query() call. * * @since 3.9.0 * * @access private * @see wpdb::query() * * @param string $query The query to run. */ private function _do_query( $query ) { if ( defined( 'SAVEQUERIES' ) && SAVEQUERIES ) { $this->timer_start(); } if ( ! empty( $this->dbh ) && $this->use_mysqli ) { <strong>/**Line 1868*/</strong> $this->result = mysqli_query( $this->dbh, $query ); } elseif ( ! empty( $this->dbh ) ) { $this->result = mysql_query( $query, $this->dbh ); } $this->num_queries++; if ( defined( 'SAVEQUERIES' ) && SAVEQUERIES ) { $this->queries[] = array( $query, $this->timer_stop(), $this->get_caller() ); } }
As I’ve emptied a few tables so there is no more Category, Tags on my site.
Removed the plugin for few days. Installed it this morning and everything working perfect. Seems the new updates fixed the issue. Resolved now…
Dear Cory,
I did the same you said to do. Once I removed the plugin, I couldn’t find any duplicator related tables in DB. I reinstalled the plugin, cleared cache many times during the operation. But still the same problem is there ??Thanks Cory thanks a lot brother. Will follow the procedure and will update the status here.
Please someone help me guys. I check the log for my latest backup which shows ” FILTERS: *OFF* “. I always turn on filters before scan but those filtered folders / data are still included in created archive. It used to work fine until the silly mistake made by me by clearing the database table created by duplicator plugin.