Upgrade notices for 6.0.x

Also available in Deutsch, Français und Русский


Upgrade your WackoWiki from 5.5.x to 6.0.x.



See also the migration guides for WackoWiki versions 5.0.x, 5.4.x, 5.5.x and 6.1.x.
Unicode

1. Preparations

  1. Check Release Notes for requirements.
  2. Back up your data:
    1. your wiki database (e.g. via phpMyAdmin or the backup module in the Admin Panel),
    2. your wiki folder.

IMPORTANT
Backup your data! Before doing anything, backup your existing database and files. Also ensure that during migration nobody uses the database, because it may cause loss of data.

  1. It is imperative that you make a backup of your WackoWiki database before you upgrade.
  2. The upgrade procedure transfers your installation instance data from the old version to the new version. Migration from the new version back to the old version is not supported.

2. Pre-Upgrade Routines for R6.0

Skip this section if you do not upgrade from R5.5.

Ensure you run the latest R5.5.17 release, an upgrade from earlier versions is not supported. Run the following routines in your WackoWiki R5.5.17 before you upgrade to R6.0.x.

2.1. Convert Tables from MyISAM to InnoDB

If you have existing MyISAM tables, you have to convert them to InnoDB with the following routine.

  • Admin Panel -> Database -> Convert

2.2. Convert your tables and records to UTF-8

database UTF-8 conversion script

You should run the the first part of the routines prior to your upgrade to R6.0.x.

3. Upgrade

3.1. Download

  1. Download wacko.6.0.x.zip
  2. Extract the archive
  3. Delete all wacko folders and files from you current installation, except
    • config/config.php
    • file/
  4. Copy the new wacko.6.0.x files in your WackoWiki installation folder
  5. Delete the cache file under cache/config/config.php.
  6. Check file permissions

If you have created custom themes, actions, handlers or formatters in the old version of WackoWiki, then you need to restore them from the backup you made at the beginning. Check their compatibility and fix them if necessary.

3.2. Installer

WackoWiki R6.1 upgrade step 1: language settings

Call the URI of your Wiki in your browser. The installer starts and tells you (IMPORTANT) that you are upgrading from 5.5.x to 6.0.x

4. Post-Upgrade

4.1. Configuration

If you've had set custom values in constant.php, router.conf, csp_custom.conf or elsewhere, you must set or merge these values again.

4.2. Re-Synchronize data

After successful upgrade you can perform a re-rendering for all intrasite links to rebuild the records of the page_link and file_link table.

  • Admin Panel -> Synchronizing data -> Wiki-links
tune the re-rendering settings to avoid timeouts or reaching the memory limit

You can tune the re-rendering settings to avoid timeouts or reaching the memory limit. This is mostly interesting for shared hosting or servers you do not manage. The server terminates then the script without further notice.


If the re-rendering fails just reduce the number of pages it renders per turn, the redirect LIMIT is set to 10. If you reach the redirect limit the script will provide you with a link Next », which you have to click to render the next batches of pages. Furthermore avoid possible session timeouts while the script is running.

4.3. Unicode transition issues

Skip this section if you do not upgrade from R5.5.


The migration to Unicode is an ongoing process. It may require manual adjustments over a longer period of time . Below we will share our experience, findings and possible solutions.

4.3.1. Replace old transliterated links and supertag references

Before you run any SQL UPDATE command create a backup beforehand. One error and you may loose all your data.

UPDATE prefix_page SET body = REPLACE(body, '/Doc/Русский/Obnovlenie', '/Doc/Русский/Обновление');	

Possible cases
  1.  ((!/el ÅëëçíéêÜ @@el)) -> ((!/el Ελληνικά))	
  2.  ((/Doc/Русский/Obnovlenie ru)) -> ((/Doc/Русский/Обновление ru))	
  3. file:/forum/discussion/ifmodifiedsinceheaderdoesnotworks/403_network_analysis.png
     -> 
    file:/Forum/Discussion/IfModifiedSinceHeaderDoesNotWorks/403_network_analysis.png	

Note

Furthermore look out for broken internal or incoming links. The page tag is now accent and case-sensitive, what worked before with the supertag may now result in 404er.

Set back body_r afterwards, so the parser re-renders the pages with the changed content.

UPDATE prefix_page SET body_r = '';	

4.4. Custom themes, actions, formatters, handlers and other modifications

Do not forget to update and check your own modifications and extensions. Look out for changed functions or database changes.


  1. Please look in the community folder or Patches section for available updates.
  2. Merge possible core changes in your own theme

5. Notes

  1. Leave a comment here if something is not clear or you have further questions.
  2. Do not hesitate to improve this instruction and the wording.