[[GDB on FreeBSD]] http://mail.smb.net/~kuji/ec/eccube-2.3.2/html/install/index.php *ec-cube [#dd07ad8c] http://www.ec-cube.net/product/flow.php hotshot:root {108} % mysqladmin -u root -h localhost password 'xxxxxxxx' hotshot:root {109} % mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.1.29-rc-log FreeBSD port: mysql-server-5.1.29 Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> DELETE FROM mysql.user WHERE user!='root' OR host!='localhost'; Query OK, 4 rows affected (0.02 sec) mysql> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.00 sec) mysql> GRANT ALL PRIVILEGES ON eccube_db.* TO eccube_db_user@localhost IDENTIFIED BY 'kuji92'; mysql> GRANT ALL PRIVILEGES ON eccube_db.* TO eccube_db_user@localhost IDENTIFIED BY 'xxxxxxxx'; Query OK, 0 rows affected (0.00 sec) mysql> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.00 sec) mysql> CREATE DATABASE eccube_db -> ; Query OK, 1 row affected (0.00 sec) .htaccess: php_value not allowed here http://blog.goo.ne.jp/59099/e/6e26d8b8753960412f33b66d64695157 Fatal error: Call to undefined function session_set_save_handler() in /usr/home/kuji/public_html/ec/eccube-2.3.2/data/class/helper/SC_Helper_Session.php on line 29 **PHP(php.ini)の設定例 [#yd62de89] php.iniという設定ファイルの内容を変更します。 EC-CUBE2.0の推奨設定で文字コードをEUC-JPで動かす場合の一般的な設定例は以下の通りです。日本語(UTF-8)環境でのphp.ini設定例※注4 mbstring.language Japanese auto_detect_line_endings on output_handler mb_output_handler mbstring.internal_encoding UTF-8 mbstring.encoding_translation on mbstring.detect_order auto mbstring.substitute_character none magic_quotes_gpc off 変更後はApacheを再起動します。