Problemi relativi al numero di porta della rete multisito?


9

Sto seguendo questo tutorial per creare una rete di siti WordPress. Dopo aver aggiunto

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

nel mio wp-config.phpfile e quando inizio a configurare la rete multisito ho riscontrato questo errore

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

Provo a cambiare

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

per

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

da httpd.confApache ma a causa di questo server wamp rimane arancione. Come risolverlo. Sono un nuovo utente di WordPress Qualsiasi aiuto sarebbe molto apprezzato.


Qual è l'output di echo get_clean_basedomain();? Le porte supportate sembrano essere :80e :443.
birgire,

Risposte:


8

Avvertenza: questo è solo un test per installazioni di sviluppo e non per siti di produzione

Ero curioso di vedere se ci fosse una soluzione alternativa, per coloro che vogliono sviluppare multisites sulle loro installazioni dev ma su porte diverse rispetto :80e :443, per esempio :8080.

Ho trovato questo post sul blog di Henri Benoit. Qui fornisce esempi su come modificare il core 3.9.1, per aggirare le restrizioni fondamentali.

Ecco un plug -in da utilizzare in/wp-content/mu-plugins/wpse-ms-on-different-port.php cui cerchiamo di evitare modifiche di base:

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

Ho appena provato questo sulla mia installazione di sviluppo, ma questo potrebbe aver bisogno di più controlli ovviamente ;-)


1
Per favore dimmi dove deve essere usato questo codice. Nel mio caso non ho percorso come il /wp-content/mu-plugins/wpse-ms-on-different-port.php mio problema è risolto utilizzando if ( ( false !== $has_ports && ! in_array( $has_ports, array( ':80', ':443', ':8080' ) ) ) ) {in wp-admin\includes\network.phpma Hacking Core è una cattiva pratica.
raxa,

1
È possibile creare la mu-pluginsdirectory in /wp-content/. Nota che non è sufficiente modificare il core in quel modo, perché non sarai in grado di creare nuovi siti perché sanitize_user()rimuove il punto e virgola (:). @raxa
birgire,

5

Non è possibile utilizzare la porta 8080. Non ho idea del perché sia ​​una porta abbastanza comune per un server Web. Tuttavia, non puoi :

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         }

Avviso ! in_array( $has_ports, array( ':80', ':443' ) ). Quelle porte sono codificate. Non ci sono filtri che puoi usare per modificarli, nemmeno in get_clean_basename()(e ho paura di indovinare quali orrori creeresti se potessi modificare ciò che ritorna).

Modificare il server per utilizzare invece la porta 443 o la porta 80.


@ s_ha_dum ♦ Risolvo questo problema modificando il codice per includere la porta 8080 richiesta in questo modo; if ( ( false !== $has_ports && ! in_array( $has_ports, array( ':80', ':443', ':8080' ) ) ) ) { innetwork.php in wp-admin\includes\network.php - [Line-121]
raxa,

1
L'hacking core è una cattiva pratica. Modifica il tuo server per utilizzare 80 o 443 e invia una patch a WordPress per consentire la porta 8080.
s_ha_dum
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.