User:Wikiterry/Worklist1

From DoctorMyhill
Jump to navigation Jump to search

Site Worklist

  • Set up Site specific parameters in LocalSettings.phpDONE
 $wgSitename         = "DoctorMyhill";
 $wgScriptPath       = "/drmyhill";
 $wgScriptExtension  = ".php";
 $wgArticlePath      = '/wiki/$1'; 
 $wgUsePathInfo      = true;
 $wgDBtype           = "mysql";
 $wgDBserver         = "mysql01";
 $wgDBname           = '###############';   # As per account details
 $wgDBuser           = '###############';   # As per account details
 $wgDBpassword       = '###############';   # As per account details
 $wgDBprefix         = "myhill_";
  • Set up .htaccess to allow redirection to wiki — DONE
 RewriteEngine on
 RewriteBase /
 RewriteRule ^wiki/(.+)$ drmyhill/index.php?title=$1 [PT,L,QSA] 
 RewriteRule ^wiki$ drmyhill/index.php
  • set up mail forwarding — DONE wikiterry 22:22, 15 March 2009 (UTC)
I've now set up email notification so that the server sends out notifications from wiki_do_not_reply@docsarah.co.uk. To use this feature you need to have specified a valid email address in your profile.
 $wgPasswordSender = "wiki_do_not_reply@docsarah.co.uk";
 $wgEnotifUserTalk = true;
 $wgEnotifWatchlist = true;
 $wgEmailAuthentication = true;
 $wgSMTP = array(
            'host'     => "mail.docsarah.co.uk",
            'IDHost'   => "www.docsarah.co.uk",
            'port'     => 25,
            'auth'     => false,
            );

Migration Worklist

  • Provide Excel spreadsheet of titles for editing — DONE wikiterry 18:45, 16 March 2009 (UTC)
See Index of Articles.
  • Content review to ensure that the poor syntax in existing HTML markup does not result in content being lost in conversion. I have had to drop the preservation of existing <ol>s and replace them by bullets because invalid syntax here causes problems for the converter. — DONE wikiterry 02:05, 17 March 2009 (UTC)