golden hour
/var/www/html/wp-content/plugins/query-monitor/wp-content
⬆️ Go Up
Upload
File/Folder
Size
Actions
db.php
3.45 KB
Del
OK
Edit: db.php
<?php /** * Plugin Name: Query Monitor Database Class * * ********************************************************************* * * Ensure this file is symlinked to your wp-content directory to provide * additional database query information in Query Monitor's output. * * ********************************************************************* * * @package query-monitor */ defined( 'ABSPATH' ) || exit; if ( defined( 'QM_DISABLED' ) && QM_DISABLED ) { return; } if ( 'cli' === php_sapi_name() && ! defined( 'QM_TESTS' ) ) { # For the time being, let's not load QM when using the CLI because we've no persistent storage and no means of # outputting collected data on the CLI. This will hopefully change in a future version of QM. return; } if ( defined( 'DOING_CRON' ) && DOING_CRON ) { # Let's not load QM during cron events for the same reason as above. return; } # No autoloaders for us. See https://github.com/johnbillion/query-monitor/issues/7 $qm_dir = dirname( dirname( __FILE__ ) ); $qm_plugin = "{$qm_dir}/classes/Plugin.php"; if ( ! is_readable( $qm_plugin ) ) { return; } require_once $qm_plugin; if ( ! QM_Plugin::php_version_met() ) { return; } $backtrace = "{$qm_dir}/classes/Backtrace.php"; if ( ! is_readable( $backtrace ) ) { return; } require_once $backtrace; if ( ! defined( 'SAVEQUERIES' ) ) { define( 'SAVEQUERIES', true ); } class QM_DB extends wpdb { public $qm_php_vars = array( 'max_execution_time' => null, 'memory_limit' => null, 'upload_max_filesize' => null, 'post_max_size' => null, 'display_errors' => null, 'log_errors' => null, ); /** * Class constructor */ public function __construct( $dbuser, $dbpassword, $dbname, $dbhost ) { foreach ( $this->qm_php_vars as $setting => &$val ) { $val = ini_get( $setting ); } parent::__construct( $dbuser, $dbpassword, $dbname, $dbhost ); } /** * Performs a MySQL database query, using current database connection. * * @see wpdb::query() * * @param string $query Database query * @return int|bool Boolean true for CREATE, ALTER, TRUNCATE and DROP queries. Number of rows * affected/selected for all other queries. Boolean false on error. */ public function query( $query ) { if ( ! $this->ready ) { if ( isset( $this->check_current_query ) ) { // This property was introduced in WP 4.2 $this->check_current_query = true; } return false; } if ( $this->show_errors ) { $this->hide_errors(); } $result = parent::query( $query ); $i = $this->num_queries - 1; if ( ! isset( $this->queries[ $i ] ) ) { return $result; } $this->queries[ $i ]['trace'] = new QM_Backtrace( array( 'ignore_frames' => 1, ) ); if ( ! isset( $this->queries[ $i ][3] ) ) { $this->queries[ $i ][3] = $this->time_start; } if ( $this->last_error ) { $code = 'qmdb'; if ( $this->use_mysqli ) { if ( $this->dbh instanceof mysqli ) { $code = mysqli_errno( $this->dbh ); } } else { if ( is_resource( $this->dbh ) ) { // Please do not report this code as a PHP 7 incompatibility. Observe the surrounding logic. // phpcs:ignore $code = mysql_errno( $this->dbh ); } } $this->queries[ $i ]['result'] = new WP_Error( $code, $this->last_error ); } else { $this->queries[ $i ]['result'] = $result; } return $result; } } // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited $wpdb = new QM_DB( DB_USER, DB_PASSWORD, DB_NAME, DB_HOST );
Save