restore_wiki_procedure
This is an old revision of the document!
Table of Contents
Restore Wiki Procedure
- [Athena] Plug in Flicky.
- [Terminal] Run
& 'C:\Bin\Athena\General Scripts\Refresh Local Wiki.ps1'
- [Athena] Open a Windows Explorer at the backup location (
E:\Backups\Wiki\Full\data\pages
) - [Browser] Find the most recently changed wiki page and check that the back up has the change (
wiki\data\pages
). - [Browser] Download the latest version of the Wiki software. Toggle off all the languages and click 'Start Download' at the bottom of the page.
- [Athena] Extract to a temp directory and rename root directory to
dokuwiki
. - [PowerShell ISE] Run the
C:\Bin\Athena\General Scripts\Prepare New Wiki.ps1
script. - [Athena] Check the file
C:\Users\God\Downloads\dokuwiki\web.config
exists. - [FileZilla] Toolbar > Site Manager > TallGuyRacing > TallGuyRacing-Wiki.
- [FileZilla] Remote site:
/site/backups
- [FileZilla] Delete
20210110-wwwroot.7z
. - [Azure Portal] Restart the 'TallGuyRacing-Wiki' App Service (so that the delete works).
- [Browser] Start a PowerShell debug console.
- [Browser,Console] Go to
site/wwwroot
. - [Browser,Console] Create backup:
7za.exe a -mhe ..\backups\20210110-wwwroot.7z .
- [FileZilla] Refresh, check backup file exists. Should be about 24mb.
- [Browser,Console] Check the deletion of existing wiki stuff:
Get-ChildItem . | Where-Object {!($_.Name -in '.well-known', 'backup-wiki.php', 'App_Data', 'test.php', 'test.jpg' ) } | Remove-Item -Recurse -WhatIf
- [Browser,Console] Delete existing wiki stuff:
Get-ChildItem . | Where-Object {!($_.Name -in '.well-known', 'backup-wiki.php', 'App_Data', 'test.php', 'test.jpg' ) } | Remove-Item -Recurse
- [FileZilla] Local file:
C:\Users\God\Downloads\dokuwiki
- [FileZilla] Remote site:
/site/wwwroot
- [FileZilla] Upload
C:\Users\God\Downloads\dokuwiki\wiki.7z
to/site/wwwroot
. - [Browser,Console] Extract the new wiki:
7za x wiki.7z
- [Browser,Console] Delete the source:
Remove-Item wiki.7z
- [Internet Explorer] Go to the wiki and log on as admin.
- [Internet Explorer] Go to Admin → Searchindex Manager → Rebuild index.
- [Internet Explorer] Go to the Admin → Extension Manager page.
- [Internet Explorer] Remove unused plugins, update plugins that require updating.
- [Browser] Verify the plugins work (see Plugin Checks below).
- [Browser] Verify search works (including private pages).
- [Browser] Verify old revisions work and page comparison.
- [Browser] Verify editing a page and previewing an edited page works.
- [Athena] Delete the contents of
E:\Backups\Wiki\Full
. - [Terminal] Run
& 'C:\Bin\Athena\General Scripts\Refresh Local Wiki.ps1'
Plugin Checks
Comment Syntax Plugin
Verify there is nothing after this line.
Tag Plugin
- Verify the tags at the bottom of this page are okay.
- Click one to verify tag lists are okay.
- Try this link.
Pagelist Plugin
This should look okay:
2009/11/25 02:39 | Stephen Heise | |
2009/01/14 00:51 | Stephen Heise | |
2009/01/14 00:57 | Stephen Heise | |
2009/12/25 09:48 | Stephen Heise | |
2009/11/24 22:48 | Stephen Heise | |
2009/01/14 00:45 | Stephen Heise | |
2009/09/18 06:15 | Stephen Heise | |
2009/01/14 00:47 | Stephen Heise | |
2009/02/02 04:12 | Stephen Heise | |
2009/01/14 23:57 | Stephen Heise | |
2009/01/14 23:55 | Stephen Heise | |
2010/10/05 20:02 | Stephen Heise | |
2009/09/23 04:59 | Stephen Heise | |
2009/01/14 23:58 | Stephen Heise | |
2010/03/14 22:11 | Stephen Heise | |
2009/11/04 20:44 | Stephen Heise | |
2010/04/27 22:42 | Stephen Heise |
Blockquote Plugin
This should look okay:
Your male and female slaves are to come from the nations around you; from them you may buy slaves.Leviticus 25:44 OT (New International Version)
Editx
Edit a page and verify that there is a 'page management' title and link at the bottom of the page.
Plugin List
Troubleshooting
- Check the web server can serve an image.
- Check the web server can serve a basic PHP page.
- Logs. Probably have to enable logging first. Can view either the Portal Log Stream or the Kudu Log Stream. Not sure which works better. Takes a while to come through.
Plugins
Last time it was the plugins that broke the wiki.
- [FileZilla] Delete everything from
/site/wwwroot/lib/plugins
. - [FileZilla] Download a fresh copy of the wiki and upload the
plugins
directory. - [Browser] Log into wiki as admin, go to the Extension Manager
- [Browser] Search and install all the plugins list above.
- [Browser] Go to Searchindex Manager, rebuild index.
Rate Limiting the Searchindex Manager plugin
This probably doesn't need to be done, now that the wiki is hosted on Azure.
- [Ares] Open
wiki/lib/plugins/searchindex/ajax.php
in Notepad++. - [Notepad++] Add the sleep line of code near the bottom of the file:
// do the work $success = idx_addPage($_POST['page'], false, $force); sleep(5);
- [Notepad++] Save new version of the file.
restore_wiki_procedure.1610250387.txt.gz · Last modified: 2021/01/11 04:46 (external edit)