検索条件
全4件
(1/1ページ)
createdb -U hoge -E utf-8 exampledb
createdb: database creation failed:
ERROR: new encoding (UTF8) is incompatible with the encoding of
the template database (EUC_JP)
HINT: Use the same encoding as in the template database,
or use template0 as template.
initdb -D /db --encoding=EUC_JP --locale=C
createdb -U hoge -E utf-8 -T template0 exampledb
<Directory "*******">
Options ExecCGI
SetHandler perl-script
PerlResponseHandler ModPerl::PerlRun
PerlOptions +ParseHeaders
Order allow,deny
Allow from all
</Directory>
<meta content="text/html; charset=utf-8" http-equiv="content-type">と、最初記述していました。
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">パラメータの順番・値はこの通りにしないと駄目です。