
Fetch MediaWiki version 1.13.0 from:
http://dumps.wikimedia.org/mediawiki/1.13/mediawiki-1.13.0.tar.gz

The files:

SpecialUserloginUCSC.php
SpecialUserlogoutUCSC.php

Are installed in the Mediawiki version 1.13.0 source in the directory:
	includes/specials/

The files:
configuration.SpecialUserloginUCSC.php
configuration.SpecialUserlogoutUCSC.php

Are installed in $IP/extensions/ as names:
SpecialUserloginUCSC.php
SpecialUserlogoutUCSC.php

The template file:
UserloginUCSC.php

is installed in the Mediawiki versions 1.13.0 source in the directory:
	includes/templates/

This business is used in the wiki by adding the lines
to the LocalSettings.php:

require_once( "$IP/extensions/SpecialUserloginUCSC.php" );
require_once( "$IP/extensions/SpecialUserlogoutUCSC.php" );
require_once( "$IP/includes/templates/UserloginUCSC.php" );

These require statements are referring to the files from here:
configuration.SpecialUserloginUCSC.php
configuration.SpecialUserlogoutUCSC.php

To the LocalSettings.php configuration file in the Wiki

In your hg.conf file, the configuration item:
wiki.host=

Should point merely to the host name of the system
where the wiki is running, no extra sub directories.

Whereas, the item
wikiTrack.URL=
should be the complete URL to the main page of the wiki,
eg:
wikiTrack.URL=wiki.myhost.edu/localWiki

Where your wiki is in the sub-directory localWiki in
your MediaWiki installation.

