サイトアイコン ドットワン合同会社

CPI contactform7 文字化け

CPI contactform7 文字化け ???

詳しく調べてないが、ちょっとメモ。

環境

入力されたものが「???」になってしまう。

修正方法

結果からいうと、index.php と .htaccess を修正するだけです。

まずは、index.phpを修正


define('WP_USE_THEMES', true);

/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . '/wp/wp-blog-header.php' );


define('WP_USE_THEMES', true);

/** Loads the WordPress Environment and Template */
require('./wp/wp-blog-header.php' );

に、変更。

次に、.htaccess。

AddHandler x-httpd-php528 .php
suPHP_ConfigPath /home/ユーザーID/html/
<Files ~ "^(\.htaccess|\.htpasswd|php\.ini|.*\.sql|.*\.log|.*\.cron|.*\.inc|.*\.phps|.*\.yml)$">

2行目

AddHandler x-httpd-php528 .php
suPHP_ConfigPath /home/ユーザーID/html/wp/
<Files ~ "^(\.htaccess|\.htpasswd|php\.ini|.*\.sql|.*\.log|.*\.cron|.*\.inc|.*\.phps|.*\.yml)$">

.htaccessをいじるのでもしかしたら、パーマリンク設定をし直さないと、404エラーが出てしまうかもしれません。

ご参考までに。

モバイルバージョンを終了