Hi, just set up (using the automated install) a Wordpress install. I'm using Deluxe Hosting and am using cpanel. I want to set the site up for WP Multisite. I've edited the wp-config.php as follows per instructions:
define( ‘WP_ALLOW_MULTISITE’, true ); /* That's all, stop editing! Happy blogging. */
I've logged out and back into the WP admin panel (as an admin) and I don't have the option: Tools->Network Setup, which would indicate something's not right with WP multisite.
Any ideas what's going on? Should I scrap the automated install and do a manual one?
Thanks for your help!
Hi @tguth. Thanks for being part of GoDaddy Community! I think I see the issue. You have curly quotes instead of straight ticks on either side of WP_ALLOW_MULTISITE. The code should look like this:
define( 'WP_ALLOW_MULTISITE', true ); /* That's all, stop editing! Happy blogging. */
What you have is this:
define( ‘WP_ALLOW_MULTISITE’, true ); /* That's all, stop editing! Happy blogging. */
Hope that helps.