• I can still get to my original network and all of its sites, but the second network that I setup is having problems. The entire wordpress installation is only accessible from our local intranet, even though I am using an external domain name for the second network. The problem I am running into is that I can access the admin page of my second network using https://aquacultureglobal.org/wp-admin/ just fine, but when I go to https://aquacultureglobal.org/ all i get a blank page. And if I use a regular https:// address then it gets changed into the domain for my first network.

    I started looking some settings for each of the sites, and i noticed that the values for “domain” and “site url” are both https for the working network, but the “site url” for the broken network is set as http.

    This is what is in my wp-config file:

    define('AUTH_KEY',         'put your unique phrase here');
    define('SECURE_AUTH_KEY',  'put your unique phrase here');
    define('LOGGED_IN_KEY',    'put your unique phrase here');
    define('NONCE_KEY',        'put your unique phrase here');
    define('AUTH_SALT',        'put your unique phrase here');
    define('SECURE_AUTH_SALT', 'put your unique phrase here');
    define('LOGGED_IN_SALT',   'put your unique phrase here');
    define('NONCE_SALT',       'put your unique phrase here');
    define('FORCE_SSL_LOGIN', true);
    ...
    define( 'WP_ALLOW_MULTISITE', true );
    define( 'MULTISITE', true );
    define( 'SUBDOMAIN_INSTALL', false );
    $base = '/';
    /*define( 'DOMAIN_CURRENT_SITE', 'captest.aces.edu' );
    define( 'PATH_CURRENT_SITE', '/' );*/
    define( 'SITE_ID_CURRENT_SITE', 1 );
    define( 'BLOG_ID_CURRENT_SITE', 1 );
    define('WP_TEMP_DIR', ABSPATH . 'wp-content/tmp');
    
    define('FS_METHOD', 'direct'); /* this fixes the problem with being able to delete plugins auto and add them */

    https://www.ads-software.com/extend/plugins/networks-for-wordpress/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author David Dean

    (@ddean)

    Unfortunately, there’s not a lot to go on yet.

    A blank page usually means PHP errors that aren’t being displayed. Do you have access to your web server’s error logs to see if anything is being logged when you try to access https://aquacultureglobal.org ?

    Feel free to change the broken network’s root site’s siteurl meta key and let us know if that fixes things. I don’t believe the siteurl meta key in the wp_sitemeta table is used for anything, if that’s the “site url” you’re referring to.

    Let us know about any errors and if you find anything else, and we’ll go from there!

    Thread Starter Spencer Bryant

    (@szb0018)

    I did a fresh install of WordPress, and everything started working just fine. So it was probably a problem with theme or another plugin.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Networks for WordPress] Cannot get to Sites with https addresses’ is closed to new replies.