blob: bf39afafa58963ced3ab14f6104bb00fdc8a5ee6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
themanaworld-website
====================
The website is a extention for mediawiki.
Add to LocalSettings.php:
require_once("$IP/extensions/tmwa/tmwa.php");
Configuration Variables / Settings:
Account registrations come from:
$wgTMWAccountEmail = "validemail@domain.com";
Set News Site path:
$wgTMWNews = "$IP/news.html";
To use Wiki's DB Backend:
$wgTMWAccountLib = 'dbLadmin';
To use php Ladmin connection:
$wgTMWAccountLib = 'phpLadmin';
$wgLadminHost = '127.0.0.1';
$wgLadminPort = '6901';
Create a new php.ini entry:
[tmwa]
tmwa.cfg.LADMIN_PASS = "admin";
(A restart of webserver or php-fpm is needed)
To use TMW as Auth services for Wiki
$wgAuth = new TMWAuth();
Depends:
* ConfirmEdit
* ConfirmAccount
* CaptchaEnabled
|