MediaWiki Extension BreadCrumbs: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=External= * https://www.mediawiki.org/wiki/Extension:BreadCrumbs =Internal= * Media_Wiki_Native_Installation#Install_Extensions|MediaWiki Native Installation | Instal...") |
|||
(8 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 11: | Line 12: | ||
<syntaxhighlight lang='bash'> | <syntaxhighlight lang='bash'> | ||
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 | |||
</syntaxhighlight> | |||
Add the following code line at the bottom of [[Media_Wiki_Concepts#LocalSettings.php|LocalSettings.php]]: | |||
<syntaxhighlight lang='php'> | |||
wfLoadExtension( 'BreadCrumbs' ); | |||
</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.