Extension:PubSubHubbubSubscriber

From mediawiki.org
MediaWiki extensions manual
PubSubHubbubSubscriber
Release status: unmaintained
Implementation Data extraction
Description Allows receiving changes from a PubSubHubbub-enabled MediaWiki
Author(s) BP2013N2
Latest version 0.1 (2014-04-30)
MediaWiki 1.23+
PHP 5.3+
Database changes Yes
Composer bp2013n2/pubsubhubbubsubscriber
License GNU General Public License 2.0
Download Download snapshot (Git master)

The PubSubHubbubSubscriber extension allows a MediaWiki to receive push updates from another PubSubHubbub-enabled MediaWiki instance.

Installation using Composer[edit]

  • Execute composer require bp2013n2/pubsubhubbubsubscriber dev-master in your MediaWiki root folder.
  • Run the update script which will automatically create the necessary database tables that this extension needs.
  • Done! Navigate to "Special:Version" on your wiki to verify that the extension is successfully installed.

Installation using Git[edit]

  • Download and extract the files in a directory called PubSubHubbubSubscriber in your extensions/ folder. If you're a developer and this extension is in a Git repository, then instead you should clone the repository using:
    git clone https://github.com/Wikidata-lib/PubSubHubbubSubscriber.git
    
  • Add the following code at the bottom of your LocalSettings.php:
    require_once( "$IP/extensions/PubSubHubbubSubscriber/PubSubHubbubSubscriber.php" );
    
  • Run the update script which will automatically create the necessary database tables that this extension needs.
  • Done! Navigate to "Special:Version" on your wiki to verify that the extension is successfully installed.

See also[edit]