Simples Assim

Posts Tagged ‘MediaWiki

Tag Extensions in MediaWiki

leave a comment »

Written by Fernando Ribeiro

April 11, 2010 at 10:19 pm

Posted in Software

Tagged with

How to Create Sysops in MediaWiki 1.15.1 with the Extension for LDAP Authentication 1.2a

leave a comment »

1) Log in to the database

2) Run the following statement:

INSERT INTO user_groups (ug_user, ug_group) VALUES (<User ID>, 'sysop')

http://www.mediawiki.org/wiki/Manual:Database_layout

http://www.mediawiki.org/wiki/Manual:User_groups_table

http://fernandoribeiro.eti.br/2009/11/27/mediawiki-extension-for-ldap-authentication/

You can also link to groups in the directory, as explained here.

Written by Fernando Ribeiro

February 1, 2010 at 4:43 pm

Posted in Software

Tagged with

MediaWiki Extensions for Video

leave a comment »

Written by Fernando Ribeiro

January 18, 2010 at 2:19 pm

Posted in Software

Tagged with

Bug in Apache HTTP Server 2.2 on Windows

leave a comment »

It causes the (20024)The given path is misformatted or contained invalid characters error when using MediaWiki’s short URLs.

https://issues.apache.org/bugzilla/show_bug.cgi?id=41441 (vote for it!)

Written by Fernando Ribeiro

November 27, 2009 at 5:03 pm

Posted in Software

Tagged with

How to Change the Logo in MediaWiki 1.15.1

leave a comment »

You may want to either clone an existing skin or create a new one, just so not to lose your logo upon upgrades.

http://www.mediawiki.org/wiki/Manual:$wgDefaultSkin

http://www.mediawiki.org/wiki/Manual:Skinning

http://www.mediawiki.org/wiki/Manual:$wgLogo

Written by Fernando Ribeiro

November 27, 2009 at 4:24 pm

Posted in Software

Tagged with

MediaWiki Extension for LDAP Authentication

leave a comment »

For Active Directory, you might want to add this to <Install Dir>/LocalSettings.php:

require_once "extensions/LdapAuthentication.php";

$wgAuth = new LdapAuthenticationPlugin();

$wgLDAPDomainNames = array(
  "fernandoribeiro.eti.br"
);

$wgLDAPEncryptionType = array(
  "fernandoribeiro.eti.br" => "clear"
);

$wgLDAPSearchStrings = array(
  "fernandoribeiro.eti.br" => "USER-NAME@fernandoribeiro.eti.br"
);

$wgLDAPServerNames = array(
  "fernandoribeiro.eti.br" => "ds.fernandoribeiro.eti.br"
);

http://www.mediawiki.org/wiki/Extension:LDAP_Authentication

Written by Fernando Ribeiro

November 27, 2009 at 3:50 pm

Posted in Software

Tagged with

How to Redirect to the MediaWiki Main Page in Apache HTTP Server 2.2

leave a comment »

<?php
  $host = $_SERVER["HTTP_HOST"];

  header("Location: http://$host/wiki");
?>

http://php.net/manual/en/reserved.variables.server.php

http://php.net/manual/en/function.header.php

Written by Fernando Ribeiro

November 27, 2009 at 2:53 pm

Posted in Software

Tagged with

How to Configure Short URLs in MediaWiki 1.15.1

leave a comment »

Written by Fernando Ribeiro

November 27, 2009 at 2:06 pm

Posted in Software

Tagged with

Wiki Engines

leave a comment »

Written by Fernando Ribeiro

August 26, 2009 at 10:44 pm

Posted in Software

Tagged with