Disable/Remove default blog on Multisite Setup
The best solution is to set up a redirect in the web server. If for some reason this is not possible, you can install a plugin like Simple 301 Redirects to manage the redirections from the default blog.
The best solution is to set up a redirect in the web server. If for some reason this is not possible, you can install a plugin like Simple 301 Redirects to manage the redirections from the default blog.
From what I can read in your question and the comments, the problem seems to come from the database, not from the theme or a plugin. WordPress users, roles and capabilities are actually saved in the DataBase. Whenever you install a plugin, that doesn’t reset the things it altered (or you altered while using it), … Read more
Multiple domains for with a single instal
WordPress expects certain directory structure. Now, there are some constants available that you could change in you wp-config.php and it should work, in theory anyway. The thing is that many plugins expect the default directory structure (and names) and will break if you change this. I have never tried to do what you propose, my … Read more
Well as WordPress is open source, if you have control of your server, you can technically do anything 🙂 Depending on your skill set, that may or may not be feasible. A low tech solution would be to create a copy of the theme ABC for each user. Change the folder name, and change the … Read more
You could filter get_blogs_of_user and add this particular blog to the returned list. Pseudo-code, not tested: add_filter( ‘get_blogs_of_user’, ‘add_special_blog’, 10, 3 ); function add_special_blog( $blogs, $user_id, $all ) { $new_blog = get_blog_details( $special_blog_id ); $blogs[ $special_blog_id ] = (object) array( ‘userblog_id’ => $special_blog_id, ‘blogname’ => $new_blog->blogname, ‘domain’ => $new_blog->domain, ‘path’ => $new_blog->path, ‘site_id’ => $new_blog->site_id, … Read more
Plugin menu replaced by another plugin?
This article explains very graphically http://premium.wpmudev.org/manuals/wpmu-manual-2/creating-a-network-to-enable-wordpress-multisite/
You can create multisite network in your wordpress. You can fellow these steps to create your network. Create a network you can create as many sites as you want in your network. although it uses 1 database for all sites, but every site has their own tables, you can differentiate every site tables very easily.
The issue was the GD was not installed.