WordPress 3.0 est le moment de la grande fusion. Le cœur de WPMU est intégré à WordPress, ce qui signifie que vous pouvez désormais gérer plusieurs blogs à partir d’une seule installation de WordPress. Cette nouvelle fonctionnalité est appelée option réseau ou multisite. Par défaut, cette fonctionnalité est désactivée. Si vous souhaitez utiliser cette option dans votre WordPress, vous devez l’activer.
Pour activer cette fonctionnalité, ouvrez simplement votre fichier wp-config.php situé dans le dossier racine de votre WordPress. Ajoutez ensuite la ligne suivante n’importe où dans le fichier :
define('WP_ALLOW_MULTISITE', true);
Une fois que vous avez fait cela, vous devriez être en mesure d’accéder à la page du réseau à partir de Outils » Réseau « .
Aucun besoin maintenant d’installer plusieurs copies de WordPress, car vous pouvez gérer plusieurs blogs à partir d’une seule installation. Par défaut, vous serez uniquement autorisé à gérer d’autres blogs en tant que sous-domaines. Pour utiliser d’autres domaines pour les blogs, vous pouvez utiliser une extension de mappage de domaine.
Syed Balkhi
Hey WPBeginner readers,
Did you know you can win exciting prizes by commenting on WPBeginner?
Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
You can get more details about the contest from here.
Start sharing your thoughts below to stand a chance to win!
mohadese esmaeeli
Hello! Is it better to have a WordPress network, or should we use the subdomains and subdirectories feature to launch side websites?
In a WordPress network, the database is unified, and this may lead to crashes or database heaviness. What is your opinion? Which one is better?
WPBeginner Support
It would heavily depend on your specific use case for what would be best to use. If you are concerned about your database size then you would want to create individual sub-sites so each has their own database.
Administrateur
Sean
Worked like a charm! So ideal for a localhost environment in development of themes and plugins.
Wayne Curran
Thanks for this info about enabling multi site.
I have a problem though. I can’t install or upgrade anything. It keeps asking for ftp details. My wordpress is running on a synology NAS.
WPBeginner Support
@Wayne this problem usually occurs when WordPress is unable to write files on the server. It happens when PHP is running under mod_php or CGI as the user instead of the user that owns WordPress files. You can ask your hosting provider for support. Meanwhile you can also add your FTP credentials in wp-config.php file so that you don’t have to enter them each time.
define( 'FTP_USER', 'username' );
define( 'FTP_PASS', 'password' );
define( 'FTP_HOST', 'ftp.example.org:21' );
Administrateur
Wayne Curran
Thanks for the reply.
I think I need to add some more info.
I installed wordpress on my Synology NAS via the package installer, so it’s installed locally on my NAS at home. The site isn’t hosted externally at all. Completely local. (it can be accessed from the web via a synology domain name)
I’m currently only experimenting with building my sites. I need 3 sites hence why I need the multisite option. Without this option, I’m unable to experiment with all my sites. I can only play with one at a time.
Anyhow, I should have also added initally that when I enter the ftp login details, they don’t work. I’ve racked my brains to try and work out what ftp details it could be after but none of them work.
Are then specific login details for as you mentioned ‘mod_php or CGI’. I don’t even know what that means
Wayne Curran
Update!!
I’ve reinstalled from scratch. All working ok now.
But, a new question.
In the general settings, 2 fields are missing. Wordpress address and site address.
Any thoughts?
Grant
Where do I find the wp-config.php folder?
WPBeginner Support
Grant wp-config.php is a file not a folder. You might find it in your website’s root folder. To access it connect to your website using an FTP client like Filezilla.
Administrateur
Nimitz
Hi, it is possible that users has a blog on my wpmu then they can have their own domain name? same like on wordpress.com that any blog can upgrade to their own domain name?
Alexander
Would you provide a step by step guide for creating a multi-site setup on local machine using Xampp on Windows 8.
Rajandran
How to enable mutisite features in wordpress 3.1?
Yevgen
It seems that Domain Mapping plugin is unsupported anymore. Are there any alternatives? Is it possible to setup domains manually using functions.php?
Thanks.