Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #21663, comment 208


Ignore:
Timestamp:
02/26/2014 02:15:50 PM (11 years ago)
Author:
AzizSaleh
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #21663, comment 208

    initial v1  
    3232Copy those files to a folder and then in your wordpress wp-includes/load.php file replace the following two lines:
    3333
    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
     37wp_load_translations_early();
     38die( __( 'Your PHP installation appears to be missing the MySQL extension which is required by WordPress.' ) );
     39}}}
    3640
    3741With the following:
    3842
    39 `$pathToMySQL = 'C:\\xampp\\htdocs\\mysql\\';
     43{{{
     44<?php
     45$pathToMySQL = 'C:\\xampp\\htdocs\\mysql\\';
    4046require_once($pathToMySQL . 'MySQL_Definitions.php');
    4147require_once($pathToMySQL . 'MySQL.php');
    42 require_once($pathToMySQL . 'MySQL_Functions.php');`
     48require_once($pathToMySQL . 'MySQL_Functions.php');
     49}}}