Çok Bölmeli Ağ Bağlantı Noktası Numarası Sorunları?


9

WordPress Siteleri Ağı Oluşturmak için Bu öğreticiyi takip ediyorum . Ekledikten sonra

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

Benim için wp-config.phpdosya ve ben çoklu ağı yapılandırmak başladığınızda bu hata var

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

Değişmeye çalışıyorum

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

için

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

dan httpd.confbu wamp için Apache fakat sunucu turuncu kalır. Nasıl çözülür? WordPress için yeniyim Herhangi bir yardım çok takdir edilecektir.


Çıktısı nedir echo get_clean_basedomain();? Desteklenen bağlantı noktaları gibi görünüyor :80ve :443.
birgire

Yanıtlar:


8

Uyarı: Bu sadece üretim tesisleri için değil, test yüklemeleri için yapılan bir testtir

Geliştirme kurulumlarında çoklu siteler geliştirmek isteyenler için bir çözüm olup olmadığını merak ettim :80ve :443örneğin farklı limanlarda :8080.

Bu blog yazısını sadece Henri Benoit tarafından buldum . Burada, çekirdek kısıtlamalarını aşmak için 3.9.1 çekirdeğin nasıl değiştirileceğine dair örnekler verir.

İşte bu zorunluluk kullanımlık eklentisi /wp-content/mu-plugins/wpse-ms-on-different-port.phpbiz çekirdek değişiklikler kaçınmaya çalışın:

<?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;
    } );
} );

Bunu sadece dev kurulumumda test ettim, ancak bu elbette daha fazla kontrol gerektirebilir ;-)


1
Lütfen bu kodun nerede kullanılması gerektiğini söyle. Benim durumumda ben gibi bir yol var /wp-content/mu-plugins/wpse-ms-on-different-port.php Benim konuyla kullanılarak çözülmüştür if ( ( false !== $has_ports && ! in_array( $has_ports, array( ':80', ':443', ':8080' ) ) ) ) {içinde wp-admin\includes\network.phpama Hacking Çekirdek kötü bir uygulamadır.
raxa

1
mu-pluginsAltında dizini oluşturabilirsiniz /wp-content/. Çekirdeği bu şekilde değiştirmenin yeterli olmadığını unutmayın, çünkü sanitize_user()noktalı virgül (:) çıkardığı için yeni siteler oluşturamazsınız . @raxa
birgire

5

8080 numaralı bağlantı noktasını kullanamazsınız. Neden bir web sunucusu için oldukça yaygın bir bağlantı noktası olduğu konusunda hiçbir fikrim yok. Ancak şunları yapamazsınız :

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         }

Uyarı ! in_array( $has_ports, array( ':80', ':443' ) ). Bu portlar sabit kodlanmıştır. Bunları değiştirmek için kullanabileceğiniz hiçbir filtre yok, hatta içinde değil get_clean_basename()(ve geri dönenleri değiştirebiliyorsanız hangi korkuları yaratacağınızı tahmin etmekten korkuyorum).

Sunucunuzu bunun yerine 443 numaralı bağlantı noktasını veya 80 numaralı bağlantı noktasını kullanacak şekilde değiştirin.


@ s_ha_dum ♦ Bu sorunu gerekli bağlantı noktası 8080'i içerecek şekilde ayarlayarak çözerim. if ( ( false !== $has_ports && ! in_array( $has_ports, array( ':80', ':443', ':8080' ) ) ) ) { innetwork.php in wp-admin\includes\network.php - [Line-121]
raxa

1
Core Hacking kötü bir uygulamadır. Sunucunuzu 80 veya 443 kullanacak şekilde değiştirin ve 8080 bağlantı noktasına izin vermek için WordPress'e bir yama gönderin.
s_ha_dum
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.