Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 919 Bytes

README.md

File metadata and controls

28 lines (24 loc) · 919 Bytes

This repository was forked from the the PagesOnDemand mediawiki extension at http://www.mediawiki.org/wiki/Extension:PagesOnDemand . The original maintainer left the following email address for questions: [email protected]

Pages On Demand

This is a MediaWiki extension that allows you to generate a new page from a red link.

This project was forked to update it for compatibility on Mediawiki versions >= 1.35.0.

Quickstart

  1. Set the following values at the bottom of your LocalSettings.php file in your mediawiki installation folder:
wfLoadExtension( 'PagesOnDemand' );
  1. Drop this repo in your extensions/ directory. It should look as follows:
PagesOnDemand
├── extension.json
├── i18n
│   ├── en.json
│   └── PagesOnDemand.i18n.php
├── includes
│   ├── DemoOnDemand.php
│   └── PagesOnDemand.php
└── README.md