Changes between Initial Version and Version 1 of Ticket #21663, comment 208
- Timestamp:
- 02/26/2014 02:15:50 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #21663, comment 208
initial v1 32 32 Copy those files to a folder and then in your wordpress wp-includes/load.php file replace the following two lines: 33 33 34 `wp_load_translations_early(); 35 die( __( 'Your PHP installation appears to be missing the MySQL extension which is required by WordPress.' ) );` 34 {{{ 35 36 <?php 37 wp_load_translations_early(); 38 die( __( 'Your PHP installation appears to be missing the MySQL extension which is required by WordPress.' ) ); 39 }}} 36 40 37 41 With the following: 38 42 39 `$pathToMySQL = 'C:\\xampp\\htdocs\\mysql\\'; 43 {{{ 44 <?php 45 $pathToMySQL = 'C:\\xampp\\htdocs\\mysql\\'; 40 46 require_once($pathToMySQL . 'MySQL_Definitions.php'); 41 47 require_once($pathToMySQL . 'MySQL.php'); 42 require_once($pathToMySQL . 'MySQL_Functions.php');` 48 require_once($pathToMySQL . 'MySQL_Functions.php'); 49 }}}