Topic on Extension talk:StructuredDiscussions

MW 1.27.1 All topics gone

2
Subfader (talkcontribs)

I'm updating from MW 1.25.1 but single topics in the project are not found and all user talk pages are empty.

Setup in MW 1.25.1

require_once "$IP/extensions/Flow/Flow.php";
$wgGroupPermissions['sysop']['flow-create-board'] = true;
$wgFlowOccupyNamespaces = array( NS_PROJECT_TALK, NS_USER_TALK );
$wgFlowEditorList = array( 'none' );
$wgFlowMaxLimit = 50;

Setup in MW 1.27.1

require_once "$IP/extensions/Flow/Flow.php";
$wgGroupPermissions['sysop']['flow-create-board'] = true;
$wgNamespaceContentModels[NS_USER_TALK] = CONTENT_MODEL_FLOW_BOARD;
$wgNamespaceContentModels[NS_PROJECT_TALK] = CONTENT_MODEL_FLOW_BOARD;
$wgFlowEditorList = array( 'none' );
$wgFlowMaxLimit = 50;

Problems

  • User talk ns: All topics are gone and an empty Flow discussion is displyed reading "Start a topic".
  • In the project ns I enabled Flow on certain pages (a forum with sub pages). The forum now reads "Unknown topic | The requested topic does not exist."
    • Trying to recreate it on Special:EnableFlow gives "There is already a Flow board at MyProject:Forum".

I then ran populateContentModel.php and FlowUpdateRevContentModelFromOccupyPages.php as stated on the page:

  • populateContentModel.php: Fetched all pages
  • FlowUpdateRevContentModelFromOccupyPages.php: "Set content model for 0 pages; skipped 0 pages."
Subfader (talkcontribs)
Reply to "MW 1.27.1 All topics gone"