EEフォーラム

日本語が入力できない時の対処方法

 
合計ポスト数: 1

EECoreをインストールした場合、以下の環境では日本語を入力してもMySQLに登録されていませんでした。

Apache/2.0.52
PHP/4.3.9
MySQL/4.1.20

この場合、/system/db/db.mysql.php 内、148行目あたりに

$this->conn_id = ($this->conntype == 0) ?
          @
mysql_connect ($this->hostname$this->username$this->password):
          @
mysql_pconnect($this->hostname$this->username$this->password);

以下のコードを追記すれば日本語入力ができるようになります(UTF-8)

$this->conn_id = ($this->conntype == 0) ?
          @
mysql_connect ($this->hostname$this->username$this->password):
          @
mysql_pconnect($this->hostname$this->username$this->password);

        
mysql_query("SET NAMES utf8");