サーバー移行で真っ白な画面
-
WordPressを現在のサーバーから他のサーバーへ移行中です。Mysqlはphpmyadminで正常にインポート出来たように思います。WordPress本体は新規にインストールして、Backupプラグイン等でと思いましたが上手く行きませんでした。FTPでWordPress本体のディレクトリをそっくりダウンロードして新規サーバーへアプロードしました。wp-config.phpを環境に適合するように修正したのですが、真っ白な画面で進みません。プラグインを停止するという方法もあるようですが、管理画面にも入れません。
以下が define(‘WP_DEBUG’, true); をtrueにしたエラーメッセージです。
———————————————————————————–
Warning: Cannot modify header information – headers already sent by (output started at /home/onagawa/www/wp/wp-config.php:1) in /home/onagawa/www/wp/wp-includes/ms-settings.php on line 98
———————————————————————————–
以下がms-settings.php on line 98 付近のソースです。全く分かりません。よろしくお願いします。$destination = ‘http://’ . $current_site->domain . $current_site->path . ‘wp-signup.php?new=’ . str_replace(
‘.’ . $current_site->domain, ”, $domain );
}
header( ‘Location: ‘ . $destination );
die();
}if ( ! defined( ‘WP_INSTALLING’ ) ) {
if ( $current_site && ! $current_blog ) {
if ( $current_site->domain != $_SERVER[ ‘HTTP_HOST’ ] ) {
header( ‘Location: http://’ . $current_site->domain . $current_site->path );
exit;
}
$current_blog = get_blog_details( array( ‘domain’ => $current_site->domain, ‘path’ =>$current_site->path ), false );
}
if ( ! $current_blog || ! $current_site )
ms_not_installed();
}$blog_id = $current_blog->blog_id;
$public = $current_blog->public;if ( empty( $current_blog->site_id ) )
$current_blog->site_id = 1;
$site_id = $current_bl※マルチサイトです。
- トピック「サーバー移行で真っ白な画面」には新たに返信することはできません。