Skip to main content

Posts

Showing posts from March, 2018

multi-site network wordpress using wp-config.php

how to create multi network site in wordpress. allow multi network using worpress wp-config.php files /* Multisite */ define('MULTISITE', true); add this code to wp-config.php file. then reload your wp-admin then goto -> tool -> network step. you need deactive a your all wp plugins then step wordpress network site. then wordpres provide to you change to your wp-config.php and .htaccess files. save changes  then relogin again. /* Multisite */ define('MULTISITE', true); define('SUBDOMAIN_INSTALL', true); define('DOMAIN_CURRENT_SITE', 'www.yourdomain.com'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1);