フォーラムへの返信

6件の返信を表示中 - 1 - 6件目 (全6件中)
  • フォーラム: マルチサイト
    返信が含まれるトピック: マルチサイトインストールエラー
    トピック投稿者 bathijp

    (@bathijp)

    ありがとうございました。

    /**
     * Multisite Settings
     */
    // define ('WP_ALLOW_MULTISITE', true);
    //
    // define('MULTISITE', true);
    // define('SUBDOMAIN_INSTALL', true);
    // define('DOMAIN_CURRENT_SITE', 'ex.com');
    // define('PATH_CURRENT_SITE', '/');
    // define('SITE_ID_CURRENT_SITE', 1);
    // define('BLOG_ID_CURRENT_SITE', 1);

    を削除したら先に進めました!
    define(‘MULTISITE’, true);
    が2重に書いてあったようです。

    フォーラム: マルチサイト
    返信が含まれるトピック: マルチサイトインストールエラー
    トピック投稿者 bathijp

    (@bathijp)

    ご返信ありがとうございます。下記が記述内容です。

    <?php
    /**
     * The base configurations of the WordPress.
     *
     * This file has the following configurations: MySQL settings, Table Prefix,
     * Secret Keys, WordPress Language, and ABSPATH. You can find more information
     * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
     * wp-config.php} Codex page. You can get the MySQL settings from your web host.
     *
     * This file is used by the wp-config.php creation script during the
     * installation. You don't have to use the web site, you can just copy this file
     * to "wp-config.php" and fill in the values.
     *
     * @package WordPress
     */
    
    // ** MySQL settings - You can get this info from your web host ** //
    $db_data = false;
    if ( file_exists('/opt/aws/cloud_formation.json') ) {
    	$db_data = json_decode(file_get_contents('/opt/aws/cloud_formation.json'), true);
    	if ( isset($db_data['rds']) ) {
    		$db_data = $db_data['rds'];
    		$db_data['host'] = $db_data['endpoint'] . ':' . $db_data['port'];
    	}
    }
    if ( !$db_data ) {
    	$db_data = array(
    		'database' => '*',
    		'username' => '*',
    		'password' => '*',
    		'host'     => 'localhost',
    	);
    }
    
    /**PHP session folder**/
    define('WSI_PHP_SESSION', dirname(__FILE__).'/phpsession');
    session_save_path(WSI_PHP_SESSION);
    /** The name of the database for WordPress */
    define('DB_NAME', '*');
    
    /** MySQL database username */
    define('DB_USER', '*');
    
    /** MySQL database password */
    define('DB_PASSWORD', '*');
    
    /** MySQL hostname */
    define('DB_HOST', 'localhost');
    
    /** Database Charset to use in creating database tables. */
    define('DB_CHARSET', 'utf8');
    
    /** The Database Collate type. Don't change this if in doubt. */
    define('DB_COLLATE', '');
    
    /**
     * マルチサイト有効化
     */
    define( 'WP_ALLOW_MULTISITE', true );
    
    unset($db_data);
    
    /**#@+
     * Authentication Unique Keys and Salts.
     *
     * Change these to different unique phrases!
     * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
     * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
     *
     * @since 2.6.0
     */
    define('AUTH_KEY',         '*');
    define('SECURE_AUTH_KEY',  '*');
    define('LOGGED_IN_KEY',    '*');
    define('NONCE_KEY',        '*');
    define('AUTH_SALT',        '*');
    define('SECURE_AUTH_SALT', '*');
    define('LOGGED_IN_SALT',   '*');
    define('NONCE_SALT',       '*');
    define('WP_MEMORY_LIMIT', '3000M');
    
    /**#@-*/
    
    /**
     * WordPress Database Table prefix.
     *
     * You can have multiple installations in one database if you give each a unique
     * prefix. Only numbers, letters, and underscores please!
     */
    $table_prefix  = 'wp_';
    
    /**
     * WordPress Localized Language, defaults to English.
     *
     * Change this to localize WordPress. A corresponding MO file for the chosen
     * language must be installed to wp-content/languages. For example, install
     * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
     * language support.
     */
    define('WPLANG', 'ja');
    
    /**
     * For developers: WordPress debugging mode.
     *
     * Change this to true to enable the display of notices during development.
     * It is strongly recommended that plugin and theme developers use WP_DEBUG
     * in their development environments.
     */
    define('WP_DEBUG', false);
    //define('WP_DEBUG', true);
    //define('SAVEQUERIES', true);
    //define('WP_DEBUG_DISPLAY', false);
    
    /**
     * Multisite Settings
     */
    // define ('WP_ALLOW_MULTISITE', true);
    //
    // define('MULTISITE', true);
    // define('SUBDOMAIN_INSTALL', true);
    // define('DOMAIN_CURRENT_SITE', 'ex.com');
    // define('PATH_CURRENT_SITE', '/');
    // define('SITE_ID_CURRENT_SITE', 1);
    // define('BLOG_ID_CURRENT_SITE', 1);
    
    /**
     * For VaultPress
     */
    define( 'VAULTPRESS_DISABLE_FIREWALL', true );
    if ( !empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
       $forwarded_ips = explode( ',', $_SERVER['HTTP_X_FORWARDED_FOR'] );
       $_SERVER['REMOTE_ADDR'] = $forwarded_ips[0];
       unset( $forwarded_ips );
    }
    
    /**
     * For Nginx Cache Controller
     */
    define('IS_AMIMOTO', true);
    define('NCC_CACHE_DIR', '/var/cache/nginx/proxy_cache');
    
    /**
     * set post revisions
     */
    //define('WP_POST_REVISIONS', 5);
    
    /**
     * disallow file edit and modifie
     */
    //define('DISALLOW_FILE_MODS',true);
    //define('DISALLOW_FILE_EDIT',true);
    
    /* That's all, stop editing! Happy blogging. */
    
    /** Absolute path to the WordPress directory. */
    if ( !defined('ABSPATH') )
    	define('ABSPATH', dirname(__FILE__) . '/');
    
    /** Sets up WordPress vars and included files. */
    require_once(ABSPATH . 'wp-settings.php');
    
    define( 'WP_AUTO_UPDATE_CORE', false );
    フォーラム: 使い方全般
    返信が含まれるトピック: アーカイブページが表示されなくなりました。
    トピック投稿者 bathijp

    (@bathijp)

    ご対応ありがとうございます。

    テーマですか・・・functionsは少しいじりましたがエラーは出ていませんでした。テーマが怪しかったので元には戻したのですが。

    テーマ製作者にも確認してみます。ありがとうございました。

    フォーラム: 使い方全般
    返信が含まれるトピック: アーカイブページが表示されなくなりました。
    トピック投稿者 bathijp

    (@bathijp)

    ご返信ありがとうございます。

    ヘッダーに出たエラーです。

    Strict Standards: Redefining already defined constructor for class wokScriptManager in /var/www/vhosts/i-17ed4212/wp-content/plugins/head-cleaner/includes/common-controller.php on line 318 Strict Standards: Declaration of myCRED_PayPal_Standard::preferences() should be compatible with myCRED_Payment_Gateway::preferences() in /var/www/vhosts/i-17ed4212/wp-content/plugins/mycred/addons/buy-creds/gateways/paypal-standard.php on line 11 Strict Standards: Declaration of myCRED_NETbilling::preferences() should be compatible with myCRED_Payment_Gateway::preferences() in /var/www/vhosts/i-17ed4212/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php on line 12 Strict Standards: Declaration of myCRED_Skrill::preferences() should be compatible with myCRED_Payment_Gateway::preferences() in /var/www/vhosts/i-17ed4212/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php on line 11 Strict Standards: Declaration of myCRED_Zombaio::preferences() should be compatible with myCRED_Payment_Gateway::preferences() in /var/www/vhosts/i-17ed4212/wp-content/plugins/mycred/addons/buy-creds/gateways/zombaio.php on line 11 Notice: bp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 1.7.) in /var/www/vhosts/i-17ed4212/wp-includes/functions.php on line 3049 Strict Standards: Only variables should be passed by reference in /var/www/vhosts/i-17ed4212/wp-content/plugins/wp-hamazon/includes/wp-hamazon-service.php on line 69 Strict Standards: Only variables should be passed by reference in /var/www/vhosts/i-17ed4212/wp-content/plugins/wp-hamazon/includes/wp-hamazon-service.php on line 69 Strict Standards: Only variables should be passed by reference in /var/www/vhosts/i-17ed4212/wp-content/plugins/wp-hamazon/includes/wp-hamazon-service.php on line 69 Strict Standards: Only variables should be passed by reference in /var/www/vhosts/i-17ed4212/wp-content/plugins/wp-hamazon/includes/wp-hamazon-service.php on line 69 Strict Standards: Only variables should be passed by reference in /var/www/vhosts/i-17ed4212/wp-content/plugins/wp-hamazon/includes/wp-hamazon-service.php on line 69 Strict Standards: Only variables should be assigned by reference in /var/www/vhosts/i-17ed4212/wp-content/plugins/wpsocialstreamer/wpsocialstreamer.php on line 120 Strict Standards: call_user_func_array() expects parameter 1 to be a valid callback, non-static method ogp__open_graph_pro::init() should not be called statically in /var/www/vhosts/i-17ed4212/wp-includes/plugin.php on line 429

    これでよろしいでしょうか?

    フォーラム: 使い方全般
    返信が含まれるトピック: 新規ページが作成できなくなりました。
    トピック投稿者 bathijp

    (@bathijp)

    初歩的な問題でした。
    プラグインを停止して、テーマをデフォルトに。1つずつ確認しましたが、停止前と同じプラグイン数でも新規ページ作成が出来るようになりました。

    これからはトラブルシューティングを行ってから質問します。お手数おかけしました。

    フォーラム: インストール
    返信が含まれるトピック: 2.8へアップグレードしての不具合
    トピック投稿者 bathijp

    (@bathijp)

    ご回答いただいた皆様ありがとうございました。

    pienimyk様のバージョンダウンで解決しました。
    そうかとは思っていたのですが、データが消えたら怖いのでやはり質問してよかったです。

    ちなみに2.8にアップグレードしたら
    >ウィジェットページの右上にある「表示オプション」から、「アクセシビリティモードを有効にする」リンクをクリックしてみてください。

    というのはクリックすら出来ない状態でした。原因がわからないのでしばらくアップグレードは控えます。

    ありがとうございました。

6件の返信を表示中 - 1 - 6件目 (全6件中)