Showing All Media from All Multisites

After posting the question, I did a ton of googles, and eventually built a plugin that displays all media for all subsites in a multisite installation. If the user is SuperAdmin, each picture is linked to it’s editing page. The plugin is called ‘Multiside Media Display’, and available via the usual Add Plugins page in … Read more

Can I run a second wordpress site as a subdomain without using multisite?

Point the subdomain to the same directory as the main site, and define different settings in your wp-config.php per $_SERVER[‘HTTP_HOST’]: Example from my local setup: switch ( $_SERVER[‘HTTP_HOST’] ) { case ‘zzl.dev’: $table_prefix = ‘zzl_’; $table_name=”zzl”; break; case ‘wpbuch.dev’: $table_prefix = ‘wpbuch_’; $table_name=”wpbuch”; break; default: $table_prefix = ‘wp_’; $table_name=”wpdev”; break; } $sub = ‘/wp-content/’ . … Read more

wordpress multisite config issue needs help

You need to change define(‘SUBDOMAIN_INSTALL’, true); to define(‘SUBDOMAIN_INSTALL’, false); to start with. Maybe you need to modify you .htaccess file as well. For more info the WordPress codex has a lot of info: https://codex.wordpress.org/Multisite_Network_Administration