Installation: Difference between revisions
From SemanticOrganization
No edit summary |
|||
Line 37: | Line 37: | ||
SemanticOrganization depends on the following extensions: | SemanticOrganization depends on the following extensions: | ||
* [https://www.semantic-mediawiki.org/ Semantic MediaWiki] | * [https://www.semantic-mediawiki.org/ Semantic MediaWiki] | ||
* [https://www.mediawiki.org/wiki/Extension:Semantic_Result_Formats Semantic Result Formats] | |||
* [https://www.mediawiki.org/wiki/Extension:Page_Forms Page Forms] | * [https://www.mediawiki.org/wiki/Extension:Page_Forms Page Forms] | ||
* [https://www.mediawiki.org/wiki/Extension:ParserFunctions Parser Functions] | * [https://www.mediawiki.org/wiki/Extension:ParserFunctions Parser Functions] |
Revision as of 21:07, 9 October 2018
The Beta version of SemanticOrganization has not been released yet.
see also Full Installation Instructions for setting up MediaWiki and all dependencies or try the Docker Image
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 importDump.php < import/semorg-pages.xml
Cleanup after import:
cd .. php maintenance/rebuildrecentchanges.php php maintenance/runJobs.php
Dependencies
Extensions
SemanticOrganization depends on the following extensions:
Skins
SemanticOrganization was developed to work with the Tweeki skin. It might or might not work with other skins.
Recommended configuration settings in LocalSettings.php
# Disable caching $wgEnableParserCache = false; $wgCachePages = false;
# Allow display titles for automatically created page names $wgRestrictDisplayTitle = false;
Example configurations
…
Basic Configuration
- …