jck9
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Reset] Error message creating a snapshotHi,
Problem resolved.
Thank youForum: Plugins
In reply to: [WP Reset] Error message creating a snapshotHi,
After increasing the max_execution_time to 180 in php.ini file the same fatal error is displayed (Fatal error: Maximum execution time of 60 seconds)
Forum: Plugins
In reply to: [WP Reset] Error message creating a snapshot[11-Dec-2019 14:23:41 UTC] PHP Fatal error: Maximum execution time of 60 seconds exceeded in C:\xampp\htdocs\projetpneuf\wp-includes\wp-db.php on line 2030
* Internal function to perform the mysql_query() call.
*
* @since 3.9.0
*
* @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 ) {
2030 $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->log_query(
$query,
$this->timer_stop(),
$this->get_caller(),
$this->time_start,
array()
);
}
}