Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

Problems importing PHPBB3 to Vanilla

I'm using the Vanilla2Export and keep getting this error:
Error: (2) html_entity_decode() [function.html-entity-decode]: charset `utf8' not supported, assuming iso-8859-1

Can anyone help?
Thanks

Comments

  • LincLinc Detroit Admin
    edited February 2015

    Yeah, we're working on a fix. For now, find this line:

    return html_entity_decode($Value, ENT_QUOTES, $CharacterSet);

    And change it to:

    return html_entity_decode($Value, ENT_QUOTES, 'UTF-8');

    For others reading this: Note this requires your database is UTF-8 already, this is just a kludge for @rbclark while we get a new release up.

  • Thanks @Linc. That did the trick.

  • LincLinc Detroit Admin

    Cheers! Hope you enjoy Vanilla.

Sign In or Register to comment.