MediaWiki Extension BreadCrumbs: Difference between revisions
Jump to navigation
Jump to search
(6 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
=Internal= | =Internal= | ||
* [[ | * [[Media_Wiki_Concepts#Useful_Extensions|MediaWiki Concepts | Extensions]] | ||
=Overview= | |||
12/31/2023 Obsolete, not supported. I tried installing [[MediaWiki_Extension_JSBreadCrumbs|JSBreadCrumbs]] but it does not look the same, so I am salvaging the latest known working version and installing it from backups. | |||
=Installation= | =Installation= | ||
Line 12: | Line 14: | ||
tar -xzf BreadCrumbs-....tar.gz -C /var/www/mediawiki-1.35.0/extensions # The process will create a "BreadCrumbs" subdirectory | tar -xzf BreadCrumbs-....tar.gz -C /var/www/mediawiki-1.35.0/extensions # The process will create a "BreadCrumbs" subdirectory | ||
cd /var/www/mediawiki-1.35.0/extensions | cd /var/www/mediawiki-1.35.0/extensions | ||
chown -R apache:apache BreadCrumbs | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Add the following code line at the bottom of [[ | Add the following code line at the bottom of [[Media_Wiki_Concepts#LocalSettings.php|LocalSettings.php]]: | ||
<syntaxhighlight lang='php'> | <syntaxhighlight lang='php'> | ||
Line 21: | Line 23: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==Installation Verification== | |||
Go to Special Pages → Version and verify that the BreadCrumbs version is the correct one. | |||
=Configuration= | |||
{{External|https://www.mediawiki.org/wiki/Extension:BreadCrumbs#Configuration}} |
Latest revision as of 03:37, 1 January 2024
External
Internal
Overview
12/31/2023 Obsolete, not supported. I tried installing JSBreadCrumbs but it does not look the same, so I am salvaging the latest known working version and installing it from backups.
Installation
Go to https://www.mediawiki.org/wiki/Extension:BreadCrumbs and download the latest version.
tar -xzf BreadCrumbs-....tar.gz -C /var/www/mediawiki-1.35.0/extensions # The process will create a "BreadCrumbs" subdirectory
cd /var/www/mediawiki-1.35.0/extensions
chown -R apache:apache BreadCrumbs
Add the following code line at the bottom of LocalSettings.php:
wfLoadExtension( 'BreadCrumbs' );
Installation Verification
Go to Special Pages → Version and verify that the BreadCrumbs version is the correct one.