<?php
/***************************************************************************
* Copyright (C) 2012 Sebastian Gibb *
* sebastian.gibb@studserv.uni-leipzig.de *
* *
* This file is part of zams-entry-web. *
* *
* This program is free software; you can redistribute it and/or modify *
* under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be usefull, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/> *
***************************************************************************/
/* store configuration in an array */
$config = array('mediawiki' => array());
/* database settings for user authentication using mediawiki db */
$config['mediawiki']['host'] = 'localhost'; // e.g.: localhost
$config['mediawiki']['user'] = 'root'; // MySQL username
$config['mediawiki']['password'] = ''; // MySQL password
$config['mediawiki']['db'] = ''; // MySQL database
$config['mediawiki']['tableprefix'] = ''; // MediaWiki table prefix (e.g. mw)
/* repo configuration */
$config['repo']['src'] = dirname(__FILE__).'/src'; // src, original zdb files
$config['repo']['pub'] = dirname(__FILE__).'/pub/repo'; // pub, copy of zdb files for public access
$config['repo']['prefix'] = 'zdbs/'; // pub/repo/$prefix would be the path of all zdb files
/* zams wiki */
$config['zamswiki']['url'] = 'https://zamslivenet.fatcow.com/zamswiki/index.php'
?>