isseium's blog

田舎に住むWebエンジニアのブログ

2010-09-12から1日間の記事一覧

PHP + MySQLの文字化け

UTF8に統一 php.ini default_charset = "UTF-8" mbstring.language = Japanese mbstring.internal_encoding = UTF-8 mbstring.http_input = auto my.conf init-connect=SET NAMES utf8 skip-character-set-client-handshake 未確認 my.conf のskip-character…

PHP Fatal error: Uncaught exception 'Exception' with message 'DateTime::__construct(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you

PHP

PHP Fatal error: Uncaught exception 'Exception' with message 'DateTime::__construct(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() functio…

MySQLデータ移行

旧サーバデータ(ダンプファイル)の取得 旧サーバにて $ mysqldump -u root -p --all-databases > dump.sqlファイル転送 $ scp dump.sql <新サーバユーザ名>@<新サーバIPアドレス>:<新サーバ保存パス> 新サーバでのインポート 新サーバにて $ mysql -u root…