Viewing 1 replies (of 1 total)
  • Plugin Author gourl

    (@gourl)

    You need to activate mbstring support in PHP.

    https://stackoverflow.com/questions/9692157/php-missing-mb-strpos-function

    mbstring (Multibyte String) provides multibyte specific string functions that help you deal with multibyte encodings in PHP. In addition to that, mbstring handles character encoding conversion between the possible encoding pairs. mbstring is designed to handle Unicode-based encodings such as UTF-8 and UCS-2 and many single-byte encodings for convenience.

    mbstring is a non-default php extension. This means it is not enabled by default. You must explicitly enable the module with the configure option.

    In Unix/Linux platform, you have to recompile your PHP with mbstring option like:
    –enable-mbstring

    In windows platform, open you php.ini file, uncomment and set:
    mbstring.func_overload = 1,2
    extension=php_mbstring.dll

    Restart your Apache server

Viewing 1 replies (of 1 total)
  • The topic ‘Plugin could not be activated because it triggered a fatal error.’ is closed to new replies.