Extension:PubSubHubbubSubscriber
![]() Release status: experimental |
|
---|---|
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) GitHub: Note: |
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 yourextensions/
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.