]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - UPGRADING.readme
Cleaned it up and added some hints.
[SourceForge/phpwiki.git] / UPGRADING.readme
1 MySQL
2
3   The MySQL schema has changed since PhpWiki 1.2.0.
4
5   If you're upgrading from PhpWiki 1.2.0 and you use the MySQL back end,
6   you need to update the schema.
7
8   As long as you use the stock table names you can just do something like:
9
10     mysql -u <username> -p wiki < schemas/update.mysql.1.2.0-1.2.1
11
12   If you don't use the stock table names, look at the script in
13   schemas/update.mysql.1.2.0-1.2.1 and use it as a guide.
14
15
16 Flat File
17
18   We are now (since 1.2.0) urlencoding the characters '%', '/', '\\',
19   and ':' when forming filenames from page names.  (This is to fix a bug
20   having to do with page names containing slashes.)  If you currently have
21   any page names with any of those special characters, they will not be
22   visible to PhpWiki after you upgrade.  (Any pages without those funny
23   characters in their names will be unaffected.)
24
25   If you do have pages with slashes, colons or percent signs in their names,
26   you should probably make a backup dump of your database before upgrading
27   and re-load the database after upgrading.