マルチサイトネットワークのポート番号の問題?


9

このチュートリアルに従って、WordPressサイトのネットワークを作成します。追加後

/* Multisite */
define( 'WP_ALLOW_MULTISITE', true ); 

私のwp-config.phpファイルに、マルチサイトネットワークの構成を開始すると、このエラーが発生しました

ERROR: You cannot install a network of sites with your server address.
You cannot use port numbers such as :8080

変えようとする

 Listen 0.0.0.0:8080
Listen [::0]:8080  

 Listen 0.0.0.0:80
Listen [::0]:80

httpd.confApache からですが、このため、Wampサーバーはオレンジのままです。これを解決する方法。私はWordPressの初心者です。


の出力はecho get_clean_basedomain();何ですか?サポートされているポートのようです:80:443
バージニア、2015

回答:


8

警告:これは開発用インストールのテストであり、本番サイトではありません

開発インストールでマルチサイトを開発したいが、:80およびと:443は異なるポートで、などの回避策があるかどうか知りたいと思いました:8080

Henri Benoitによるこのブログ投稿のみを見つけました。そこで彼は、コアの制限を回避するために3.9.1コアを変更する方法の例を示します。

これは、コアの変更を回避しようとする必要のあるプラグイン/wp-content/mu-plugins/wpse-ms-on-different-port.phpです。

<?php 
/**
 * Test for multisite support on a different port than :80 and :443 (e.g. :8080)
 *
 * Here we assume that the 'siteurl' and 'home' options contain the :8080 port
 *
 * WARNING: Not suited for production sites!
 */

/**
 * Get around the problem with wpmu_create_blog() where sanitize_user()  
 * strips out the semicolon (:) in the $domain string
 * This means created sites with hostnames of 
 * e.g. example.tld8080 instead of example.tld:8080
 */
add_filter( 'sanitize_user', function( $username, $raw_username, $strict )
{
    // Edit the port to your needs
    $port = 8080;

    if(    $strict                                                // wpmu_create_blog uses strict mode
        && is_multisite()                                         // multisite check
        && $port == parse_url( $raw_username, PHP_URL_PORT )      // raw domain has port 
        && false === strpos( $username, ':' . $port )             // stripped domain is without correct port
    )
        $username = str_replace( $port, ':' . $port, $username ); // replace e.g. example.tld8080 to example.tld:8080

    return $username;
}, 1, 3 );

/**
 * Temporarly change the port (e.g. :8080 ) to :80 to get around 
 * the core restriction in the network.php page.
 */
add_action( 'load-network.php', function()
{
    add_filter( 'option_active_plugins', function( $value )
    {
        add_filter( 'option_siteurl', function( $value )
        {
            // Edit the port to your needs
            $port = 8080;

            // Network step 2
            if( is_multisite() || network_domain_check() )
                return $value;

            // Network step 1
            static $count = 0;
            if( 0 === $count++ )
                $value = str_replace( ':' . $port, ':80', $value );
            return $value;
        } );
        return $value;
    } );
} );

私は自分の開発インストールでこれをテストしましたが、もちろんこれにはさらにチェックが必要になるかもしれません;-)


1
Plzは、このコードをどこで使用する必要があるか教えてください。私の場合、/wp-content/mu-plugins/wpse-ms-on-different-port.php 問題をif ( ( false !== $has_ports && ! in_array( $has_ports, array( ':80', ':443', ':8080' ) ) ) ) {inで 解決するような方法はありませんwp-admin\includes\network.phpが、Hacking Coreは悪い習慣です。
raxa

1
mu-plugins下にディレクトリを作成できます/wp-content/sanitize_user()セミコロン(:) が削除されるため、新しいサイトを作成できなくなるため、コアをそのように変更するだけでは不十分であることに注意してください。@raxa
バージレ

5

ポート8080を使用することはできません。これはWebサーバーのかなり一般的なポートであるため、理由はわかりません。ただし、次のことはできません

121         if ( ( false !== $has_ports && ! in_array( $has_ports, array( ':80', ':443' ) ) ) ) {
122                 echo '<div class="error"><p><strong>' . __( 'ERROR:') . '</strong> ' . __( 'You cannot install a network of sites with your server address.' ) . '</p></div>';
123                 echo '<p>' . sprintf(
124                         /* translators: %s: port number */
125                         __( 'You cannot use port numbers such as %s.' ),
126                         '<code>' . $has_ports . '</code>'
127                 ) . '</p>';
128                 echo '<a href="' . esc_url( admin_url() ) . '">' . __( 'Return to Dashboard' ) . '</a>';
129                 echo '</div>';
130                 include( ABSPATH . 'wp-admin/admin-footer.php' );
131                 die();
132         }

通知! in_array( $has_ports, array( ':80', ':443' ) )。これらのポートはハードコーディングされています。フィルターを変更するために使用できるフィルターはなく、フィルターを変更することもできませんget_clean_basename()(また、返されるものを変更できるとしたら、どのような恐怖を生み出すかを推測してしまいます)。

代わりにポート443またはポート80を使用するようにサーバーを変更してください。


@ s_ha_dum♦必要なポート8080を含むようにコードを調整することでこの問題を解決し、次のようになります。 if ( ( false !== $has_ports && ! in_array( $has_ports, array( ':80', ':443', ':8080' ) ) ) ) { innetwork.php in wp-admin\includes\network.php - [Line-121]
raxa

1
コアのハッキングは悪い習慣です。80または443を使用し、ポート8080を許可するようにワードプレスにパッチを提出するようにサーバーを変更する
s_ha_dum
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.