I have the following in my LocalSettings.php file:
// define namespace constants define("NS_Portal", 100); // This MUST be even. define("NS_Portal_TALK", 101); // This MUST be the following odd integer. // add namespaces $wgExtraNamespaces[NS_Portal] = "Portal"; $wgExtraNamespaces[NS_Portal_TALK] = "Portal_talk";
However tihis is not creating the "Portal" custom NameSpace. I've likely got this wrong somehow, but don't know what. Any tips. Thanks! john