Difference between revisions of "Installation/en"

From SemanticOrganization
Jump to: navigation, search
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 13: Line 13:
 
Clone the repository:
 
Clone the repository:
  
  git clone https://github.com/oteloegen/SemanticOrganization
+
  git clone https://github.com/thaider/SemanticOrganization
  
 
Add the following to LocalSettings.php:
 
Add the following to LocalSettings.php:
Line 44: Line 44:
 
=== Recommended configuration settings in LocalSettings.php ===
 
=== Recommended configuration settings in LocalSettings.php ===
  
# Disable caching
 
$wgEnableParserCache = false;
 
$wgCachePages = false;
 
  
 
  # Allow display titles for automatically created page names
 
  # Allow display titles for automatically created page names
 
  $wgRestrictDisplayTitle = false;
 
  $wgRestrictDisplayTitle = false;

Revision as of 16:56, 9 December 2020

see also the Full Installation Instructions for a complete walkthrough for setting up MediaWiki and all dependencies

Installation

You can Download SemanticOrganization from GitHub or get it directly with git:

Change to the "extensions" subdirectory of your MediaWiki installation:

cd extensions

Clone the repository:

git clone https://github.com/thaider/SemanticOrganization

Add the following to LocalSettings.php:

wfLoadExtension( "SemanticOrganization" );

Import the default templates, forms and categories:

php maintenance/importDump.php < extensions/SemanticOrganization/import/semorg_pages.xml

Cleanup after import:

php maintenance/rebuildrecentchanges.php
php maintenance/runJobs.php

Dependencies

Extensions

SemanticOrganization depends on the following extensions:

Skin

SemanticOrganization was developed to work with the Tweeki skin. It might or might not work with other skins.

Recommended configuration settings in LocalSettings.php

# Allow display titles for automatically created page names
$wgRestrictDisplayTitle = false;