But when I type it with this https://www.domain.ca/wp-admin/network/ which gives me this link https://www.domain.ca/wp-login.php?redirect_to=http%3A%2F%2Fwww.domain.ca%2Fwp-admin%2Fnetwork%2F&reauth=1 I could get to access the network admin.
here is my access
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
# END WordPress
and the wp-config.php
/* Multisite */
define( 'WP_ALLOW_MULTISITE', true );
define('MULTISITE', true);
define('PATH_CURRENT_SITE', '/');
define('SUBDOMAIN_INSTALL', false);
define('SITE_ID_CURRENT_SITE', 1);
define('BLOG_ID_CURRENT_SITE', 1);
And if I add this to the wp-config.php
define(‘DOMAIN_CURRENT_SITE’, ‘www.domain.ca’);
it gives me a redirect loop.
Site is fine, but wondering why I cant access network when clicking on the network admin, I have to type it to get on..
Any advice..
Cheers
www.
, it will not allow me to log in to the NETWORK admin for multisite. I do use the Domain Mapping plugin, fyi. The error is a infinite redirect according to chrome.
I followed some guides. Removed de NOBLOGREDIRECT, no result.
Added the following to .htaccess:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^rinconolon.ec$ [NC]
RewriteRule ^(.*)$ https://www.rinconolon.ec/$1 [R=301,L]
# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^(.*\.php)$ $1 [L]
RewriteRule . index.php [L]
and this to wp-config.php:
define('WP_DEBUG', false);
define( 'WP_ALLOW_MULTISITE', true );
define('MULTISITE', true);
define('SUBDOMAIN_INSTALL', true);
define('DOMAIN_CURRENT_SITE', 'www.website.ec');
define('PATH_CURRENT_SITE', '/');
define('WP_HOME','https://www.website.ec');
define('WP_SITEURL','https://www.website.ec')
I’m running NGINX btw. Do I need to change something there?
thanks ever so much!
]]>The following is a copy of the error log obtained from Bluehost. Basically, I cannot access the network dashboard, but I can access the individual subsites in my multisite network.
[08-Dec-2013 05:02:44] WordPress database error Got error 28 from storage engine for query SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy IN ('category') ORDER BY t.name ASC made by require('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), call_user_func_array, jb_sms_sitemap_flush_rules, WP_Rewrite->flush_rules, WP_Rewrite->wp_rewrite_rules, WP_Rewrite->rewrite_rules, apply_filters('category_rewrite_rules'), call_user_func_array, WPSEO_Rewrite->category_rewrite_rules, get_categories, get_terms
Please help!!
]]>“…tonight.com” (this is the main site)
When I hover my mouse over the “My Sites” Menu at the upper most navigation link a drop down appears showing…
“…tonight.com”
“…today.com”
You would assume that when you click on the “…today.com” link that the “upper most” navigation would now show what? …Today.com right? Well it does not. Instead it shows the …tonight.com.
Or, at the very least when you clicked on …today.com that somewhere in some section it would identify what site I am on!
Why does it not show / identify the proper site?
]]>It seems that when you log into WordPress Admin, the Network Admin links all have non-www links by default. Is there a way to change this permanently?
We’ve gone and updated .htacess to force a 301 redirect to the www version of the site a such:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain.com [NC]
RewriteRule ^(.*)$ https://www.domain.com/$1 [L,R=301]
This corrects the Network Admin links and they work fine, but it seems doing any specific actions within do NOT work. For example, trying to add a new user to the system causes a failure. In taking a look at the source code, I noticed that the Add User form (ex: https://www.domain.com/wp-admin/network/user-new.php) uses the following code:
<form action=”https://domain.com/wp-admin/network/user-new.php?action=add-user” id=”adduser” method=”post”>
Where I can force WordPress to render this code so that it uses www in front of the URL for the form action?
]]>I have installed Multisite and Buddypress all seems fine except the link in MY SITES to ‘create a new site; links to mysite.com/blogs/create and this just gives a page 404.
I can create new sites with Network Admin and members can create accounts and a blog but the link to create a new site gives a 404.
Many thanks
Max
]]>