文字化けが起こるので
対策をメモ

1..htaccessを無効もしくは削除
2.php.iniの設定
内容は.htaccessの内容をコピー
php_value mbstring.language Japanese
php_value output_handler mb_output_handler
php_flag mbstring.encoding_translation 1
magic_quotes_gpc = Off
php_value mbstring.internal_encoding UTF-8
php_value upload_max_filesize 5M
3.data/class/SC_DbConn.phpの編集
55行目
$this->dsn = #dsn;
の次の行
$buf = $objDbConn->prepare('SET NAMES utf8');
$objDbconn->Execute($buf);
mysql_set_charset("utf8");
4.html/install/index.phpで再インストール
うまくいかない時はdata/cashe内をすべて削除し、もう一度インストール
これでいけるはず





