• I’m getting the error –

    TranslatePress requires Multibyte String PHP library. Please contact your server administrator to install it on your server.

    I have full access to PHP module settings, and mbstring is already activated. I have even tried toggling it off/on, but the error persists

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Anghel Emanuel

    (@anghelemanuel99)

    Hello there,

    Thank you for reaching out to us!

    It’s possible the detection doesn’t work correctly in your server. This is the code TranslatePress uses to detect the library:
    function trp_missing_mbstrings_library( $allow_to_run ){
    if ( ! extension_loaded('mbstring') ) {
    add_action( 'admin_menu', 'trp_mbstrings_notification' );
    return false;
    }
    return $allow_to_run;
    }

    You can create a new php file on your server with just
    var_dump(extension_loaded('mbstring'));
    and see what it returns. Then see if you can debug it from there.

    Let me know about this!

    Kind Regards,

    Thread Starter migster

    (@migster)

    @anghelemanuel99 thank you, I ran the script and it returns a false boolean value, so I have raised a ticket with the host

Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.