Skip to:
Content
Pages
Categories
Search
Top
Bottom

Installation Error Message

  • The first time I went through the install process, it allowed me to finish right up until the end but the page kept spamming the following message throughout the install process:

    Warning: cannot yet handle MBCS in html_entity_decode()! in /mnt/w0709/d31/s09/b0286f02/www/jrobichess.com/forums/bb-includes/wp-functions.php on line 113

    When the install says it’s done and I have my username and ID – and go to open the page, it has this error message only repeating. I am currently reinstalling, but thought I would post here to see if I am missing something simple. On a side note, when I open the file in question in notepad, I can’t locate line 113 to see what the issue is. Anyone recommend a good code viewer broken down by lines?

    Thanks,

    Jason

Viewing 2 replies - 1 through 2 (of 2 total)
  • Here are lines 106 – 119:

    if ( version_compare( PHP_VERSION, ‘5.2.3’, ‘>=’ ) ) {

    $string = htmlentities( $string, $quote_style, $charset, $double_encode );

    } else {

    // Handle double encoding for PHP versions that don’t support it in htmlentities()

    if ( !$double_encode ) {

    // Multi-byte charsets are not supported below PHP 5.0.0

    // ‘cp866’, ‘cp1251’, ‘KOI8-R’ charsets are not supported below PHP 4.3.2

    $string = html_entity_decode( $string, $quote_style, $charset );

    }

    // ‘cp866’, ‘cp1251’, ‘KOI8-R’ charsets are not supported below PHP 4.3.2

    $string = htmlentities( $string, $quote_style, $charset );

    }

    return $string;


    chrishajer
    Participant

    @chrishajer

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.
Skip to toolbar