前提・実現したいこと
ワードプレスのインストール
発生している問題・エラーメッセージ
https://www.alpha-prm.jp/support/tool/wp/v2/index.htm
以上のマニュアルをみながらワードプレスのインストールを行っておりました。
サーバーにFTPで接続し、WordPress 5.2.2をフォルダTest/に解凍後挿入致しました。
DBの設定などを行おうと思い、
http://www.XXXXXXXX.co.jp/Test/wp-admin/install.php
以上のURLにアクセスするとエラーを吐き出してしまいます。
どなたかご教授いただけないでしょうか。
よろしくお願い致します。
エラーメッセージ⬇︎
Parse error: parse error, unexpected T_ARRAY, expecting ')' in /www/a-mail/gairoto.co.jp/public_html/Test/wp-includes/load.php on line 711
該当のソースコード
エラーを吐いているload.phpの
703から771までのコードを記載します。
/**
- Filters a given list of plugins, removing any paused plugins from it.
- @since 5.2.0
- @param array $plugins List of absolute plugin main file paths.
- @return array Filtered value of $plugins, without any paused plugins.
*/
function wp_skip_paused_plugins( array $plugins ) {
$paused_plugins = wp_paused_plugins()->get_all();
if ( empty( $paused_plugins ) ) { return $plugins; } foreach ( $plugins as $index => $plugin ) { list( $plugin ) = explode( '/', plugin_basename( $plugin ) ); if ( array_key_exists( $plugin, $paused_plugins ) ) { unset( $plugins[ $index ] ); // Store list of paused plugins for displaying an admin notice. $GLOBALS['_paused_plugins'][ $plugin ] = $paused_plugins[ $plugin ]; } } return $plugins;
}
/**
- Retrieves an array of active and valid themes.
- While upgrading or installing WordPress, no themes are returned.
- @since 5.1.0
- @access private
- @return array Array of paths to theme directories.
*/
function wp_get_active_and_valid_themes() {
global $pagenow;
$themes = array(); if ( wp_installing() && 'wp-activate.php' !== $pagenow ) { return $themes; } if ( TEMPLATEPATH !== STYLESHEETPATH ) { $themes[] = STYLESHEETPATH; } $themes[] = TEMPLATEPATH; /* * Remove themes from the list of active themes when we're on an endpoint * that should be protected against WSODs and the theme is paused. */ if ( wp_is_recovery_mode() ) { $themes = wp_skip_paused_themes( $themes ); // If no active and valid themes exist, skip loading themes. if ( empty( $themes ) ) { add_filter( 'wp_using_themes', '__return_false' ); } } return $themes;
}
試したこと
サーバーのPHPのバージョンアップ
補足情報(FW/ツールのバージョンなど)
サーバー会社:アルファメールプレミア バージョン2
サーバーPHPバージョン PHP 7.2.24
ワードプレスバージョン WordPress 5.2.2
https://www.alpha-mail.jp/faq/web/#faq_1010
https://www.alpha-prm.jp/support/tool/wp/v2/index.htm
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/04 00:22