= Wikilog = Wikilog is a MediaWiki extension that enhances the wiki software with some common blogging features, making it a wiki-blog hybrid. More information about the extension, including installation instructions, can be found on: http://www.mediawiki.org/wiki/Extension:Wikilog Version control access and issue tracking are available at the project site: http://code.google.com/p/mediawiki-wikilog/ Mailing list for user support and developer discussion: http://groups.google.com/group/mediawiki-wikilog == License == Wikilog is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. http://www.gnu.org/copyleft/gpl.html == Requirements == * MediaWiki 1.17 or higher. * A MySQL database backend. == Installation == NOTICE: Up-to-date instalation instructions can be fount at the extension page in mediawiki.org (link above). 1. Download the extension and install it as `./extensions/Wikilog` , relative to your MediaWiki installation directory. You may checkout the latest version from the version control repository in this directory, or uncompress one of the ''zip'' or ''tgz'' archives provided and rename/symlink the directory created. NOTE: The directory name must either have that name, or `$wgWikilogStylePath` must be set to the proper path in order for the extension to reference stylesheets and images from the extension directory. 2. Backup your database and local configuration, it is always a good idea. 3. Configure the extension in your LocalSettings.php file by adding the following lines (replace `100`, with the first even-numbered namespace greater than or equal to 100 available in your wiki): require_once( 'extensions/Wikilog/Wikilog.php' ); Wikilog::setupNamespace( 100, 'Blog', 'Blog_talk' ); 4. Run the `./maintenance/update.php` script in order to create or update the tables used by the extension. NOTE: This script needs to be executed every time the extension (or MediaWiki) is upgraded. == General notes == Check the file RELEASE-NOTES for important notes and upgrade procedures for the current version of Wikilog.