Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter jck9

    (@jck9)

    Hi,

    Problem resolved.
    Thank you

    Thread Starter jck9

    (@jck9)

    Hi,

    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)

    Thread Starter jck9

    (@jck9)

    [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()
    );
    }
    }

Viewing 3 replies - 1 through 3 (of 3 total)