Multiple homes for multiple languages [closed]
Multiple homes for multiple languages [closed]
Multiple homes for multiple languages [closed]
I might be able to help you, but I would need more info, such as your $vusers list and the names of the blogs (you can use example.com for the domain). Show me what you had that worked, and what you have now that doesn’t work.
Partially translated dashboard in one of network’s site
I finally figure it out. I was missing a binding on my main WordPress site in IIS. I needed to add one for the sub-site, in this case child.example.com, specifying the same IP. After doing that I could successfully browse to the sub-site. Presumably when IIS can’t find any matching binding for the given host … Read more
You don’t need to get to the /sitename sub-directory. You install the theme in the themes sub-directory, and enable it for all sites. WPMU doesn’t have an out-of-the-box capability to enable a theme for one site only, but I there might be plugins that give that functionality.
This was resolved by disabling W3-Total-Cache plugin.
Super Admin is your friend! If a plugin is not active in the Super Admin (also lamely named Network Admin) Then it won’t show up as an option for individual blogs. It basically works like this: Installed as Super Admin (main site) and “Network Active” will be active on all blogs on the network. Installed … Read more
Change the “main site” on a wordpress multisite installation
Check your .htaccess file, it has to look like this: RewriteEngine On RewriteBase / RewriteRule ^index\.php$ – [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 wp-config.php has … Read more
Despite the fact that the plugin recommendations are off-topic here, I don’t know any other way how to do what you want to do without using a plugin. I have experience with Domain Mapping plugin from WPMUDEV. This plugin allows you to use mapped domains for the front end and original subdomains for admin dashboard. … Read more