#35441 closed enhancement (duplicate)
Support php-mysqlnd
Reported by: | nexurium | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 4.6 |
Component: | Database | Keywords: | |
Focuses: | Cc: |
Description
In wp-includes/load.php at line 136 replace
if ( ! extension_loaded( 'mysql' ) && ! extension_loaded( 'mysqli' ) && ! file_exists( WP_CONTENT_DIR . '/db.php' ) ) {
by
if ( ! extension_loaded( 'mysql' ) && ! extension_loaded( 'mysqli' ) && ! extension_loaded( 'mysqlnd' ) && ! file_exists( WP_CONTENT_DIR . '/db.php' ) ) {
Maybe add also the support for php-mysqlnd-ms
Change History (4)
Note: See
TracTickets for help on using
tickets.
Duplicate of #33261.