Cannot login to or access Network Admin on Multisite
-
Hello,
This is the primary domain and network admin dashboard for our multisite setup. The other websites work fine, but http://65.1.67.121.nip.io cannot be accessed at all. It was working until a few weeks back.
Here’s the error message:
This page isn’t working65.1.67.121.nip.io redirected you too many times.
Try clearing your cookies.
ERR_TOO_MANY_REDIRECTSIt’s not a problem with cookies as I’ve cleared cache and tried on several other browsers.
Here’s the wp-config file:
—————–
define( ‘WP_DEBUG’,false );
define( ʻCOOKIE_DOMAINʼ, $_SERVER[ ʻHTTP_HOSTʼ ] );
define( ‘COOKIE_DOMAIN’, false );
/* That’s all, stop editing! Happy publishing. */
define( ‘MULTISITE’, true );
define( ‘SUBDOMAIN_INSTALL’, true );
$base = ‘/’;
define( ‘DOMAIN_CURRENT_SITE’, ‘65.1.67.121.nip.io’ );
define( ‘PATH_CURRENT_SITE’, ‘/’ );
define( ‘SITE_ID_CURRENT_SITE’, 1 );
define( ‘BLOG_ID_CURRENT_SITE’, 1 );
define(‘FS_METHOD’, ‘direct’);
/** Absolute path to the WordPress directory. */ if ( ! defined( ‘ABSPATH’ ) ) {
define( ‘ABSPATH’, dirname( __FILE__ ) . ‘/’ );
}
/** Sets up WordPress vars and included files. */
define( ʻSUNRISEʼ,’on’);
require_once( ABSPATH . ‘wp-settings.php’ );
define(‘WP_TEMP_DIR’, ‘/opt/bitnami/apps/wordpress/tmp’);
// Disable pingback.ping xmlrpc method to prevent WordPress from participating in DDoS attacks
// More info at: https://docs.bitnami.com/general/apps/wordpress/troubleshooting/xmlrpc-and-pingback/
if ( !defined( ‘WP_CLI’ ) ) {
// remove x-pingback HTTP header
add_filter(‘wp_headers’, function($headers) {
unset($headers[‘X-Pingback’]);
return $headers;
});
// disable pingbacks
add_filter( ‘xmlrpc_methods’, function( $methods ) {
unset( $methods[‘pingback.ping’] );
return $methods;
});
add_filter( ‘auto_update_translation’, ‘__return_false’ );
}
————————Here’s htaccess:
———————–
# BEGIN LSCACHE
## LITESPEED WP CACHE PLUGIN – Do not edit the contents of this block! ##
<IfModule LiteSpeed>
RewriteEngine on
CacheLookup on
RewriteRule .* – [E=Cache-Control:no-autoflush]
RewriteRule \.object-cache\.ini – [F,L]</IfModule>
## LITESPEED WP CACHE PLUGIN – Do not edit the contents of this block! ##
# END LSCACHE# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
—————————————Any help is appreciated!
The page I need help with: [log in to see the link]
The topic ‘Cannot login to or access Network Admin on Multisite’ is closed to new replies.