Error to set up wordpress multisite

0

I installed wordpress on a server, and everything worked fine, however when I try to add the function:

define('MULTISITE', true);

All pages appear the following error:

  

"Error connecting to Database"


Apparently wordpress is not creating some necessary tables, but it's a new installation and when I comment on the multisite line it works normally.

    
asked by anonymous 11.03.2016 / 20:15

1 answer

0

I was able to solve it, I was actually following a tutorial that was not right, it was necessary to add only the following code initially:

define('WP_ALLOW_MULTISITE', true);

And run the installation through the admin panel Tools - > ('MULTISITE', true);

  •     
  • 11.03.2016 / 21:36