From: Reini U. <ru...@x-...> - 2004-05-13 16:16:55
|
1.3.10 is released. See http://phpwiki.sourceforge.net/demo/en/ReleaseNotes and http://phpwiki.sourceforge.net/demo/ChangeLog The main phpwiki site was also updated from 1.3.7 to the current 1.3.10 release, keeping the MacOSX theme. http://phpwiki.sourceforge.net/phpwiki/ So it's easier to document the current features with actually working examples. Some bugs haven't been fixed and some planned features haven't been added yet. See http://phpwiki.sourceforge.net/phpwiki/DevelopmentBranch for the RoadMap. But since 1.3.9 had a permission problem with anon edit I thought it was appropriate to release the current stable and tested version. Only very few did the 1.3.9-p1 patch on public sites. from UPGRADING: UPGRADING from 1.3.9 At first you have to manually create a config/config.ini based on config-dist.ini and your previous index.php. We don't have a script yet, to do that automatically. mysql: ALTER TABLE page CHANGE id id INT NOT NULL AUTO_INCREMENT; NOTE: ?action=upgrade does this also, if your mysql user has the ALTER permissions. UPGRADING from 1.3.7 mysql + postgres: ALTER TABLE session ADD sess_ip CHAR(15) NOT NULL; CREATE INDEX sess_date ON session (sess_date); postgres: New pref and session tables have been added for more efficiency. user and themes: WikiUser and signin.tmpl changed from $user->getId() to $user->getAuthenticatedId() Authenticated reflects the level (confirmed by password), Signed just the username (possibly by cookie only) pgsrc: To upgrade not-existing pages add "?action=upgrade" to your HomePage url and press "Enter", which will add all fresh pages from pgsrc to your pageset. If you deleted some pages on purpose, you'll have to removed them again with PhpWikiAdminisstration/Remove then. -- Reini Urban http://xarch.tu-graz.ac.at/home/rurban/ |