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.

fatal error~ help me~!

Answers

  • Have you tried utility/update?

    grep is your friend.

  • i found 1 plugin error. but now... unicode broken -.-;;;;;;

  • out of interest what plugin was it?

    grep is your friend.

  • //$Configuration['EnabledPlugins']['Voting'] = 'Voting';

  • Yes I suspected as much. Download the latest version of voting.

    please provide more context, You upgraded your forum?

    grep is your friend.

  • Since text that does not come form the database is rendering correctly, I suspect the problem is to an from the database.

    grep is your friend.

  • i disable that plugin, but fine. however its broken all texts like ????????.
    just upgrade to new release.

  • it was not problem. but when i upgrade forum. then all texts r broken... how can be..

  • x00x00 MVP
    edited February 2012

    try

    $Configuration['Database']['CharacterEncoding']                = 'utf8';
    $Configuration['Database']['ExtendedProperties']['Collate']     = 'utf8_unicode_ci';
    $Configuration['Garden']['LocaleCodeset']                       = 'UTF8';
    

    in your themes, default locale views/default.master.php

    Replace

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-CA">
    

    with

    <?php echo '<?xml version="1.0" encoding="utf-8"?>' ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko">
    

    if this doesn't exist you need to copy /applications/dashboard/views/default.master.php to /themes/default/views (creating the views folder first).

    grep is your friend.

  • thx for ur help, but still same problem... when i saw database records... all '??????' lol... how can be... -.-;;

  • x00x00 MVP
    edited February 2012

    hmmm, that sound like a collation problem

    try this query

    SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME LIKE 'GDN%'
    

    post the results

    grep is your friend.

  • all

    utf8_unicode_ci

  • did you import?

    If so id you back, and have a copy of the of database.

    Please provide a little more background information as to how you actually arrived at this point, I'm not psychic.

    grep is your friend.

  • i just using SimpleScript in Bluehost. Its auto.

  • x00x00 MVP
    edited February 2012

    how did you upgrade? This sounds like something your host should sort out.

    grep is your friend.

  • I found why ??? records in database. when i upgrade forum. SimpleScript backup database use latin... but file utf8. when i restore version, then they role back this file. broken utf8 records...

  • yep, always make a backup yourself.

    grep is your friend.

Sign In or Register to comment.