Totally_Outnumbered
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Multisite – Can't access Dashboard of 2nd siteCaching is built in to godaddy hosting.
Hopefully this is what you need:
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, false);
define(‘DOMAIN_CURRENT_SITE’, ‘mydomain.com’);
define(‘PATH_CURRENT_SITE’, ‘/’);
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOG_ID_CURRENT_SITE’, 1);
/* Multisite */
define( ‘WP_ALLOW_MULTISITE’, true );Forum: Networking WordPress
In reply to: Multisite – Can't access Dashboard of 2nd siteYes. Built in caching. Flushing/time doesn’t change anything.
wp-config contains:
define( ‘WP_ALLOW_MULTISITE’, true );Forum: Networking WordPress
In reply to: Multisite – Can't access Dashboard of 2nd siteCorrect. Same result with plugins disabled.
Forum: Networking WordPress
In reply to: Multisite – Can't access Dashboard of 2nd siteEven from http://mydomain.com/en/wp-admin/ the EN does not show up.
Forum: Networking WordPress
In reply to: Multisite – Can't access Dashboard of 2nd siteI believe I followed all the proper steps. I can see my 2 sites in the dashboard. I can click on both sites in the dashboard and I don’t get any errors. Problem is no matter which one I click on it returns the same URL (allows me to edit the primary site only).
.htaccess:
# BEGIN WordPress <IfModule mod_rewrite.c> 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] </IfModule> # END WordPress