6.1 Release Notes
R6.1
(05.10.2024) a401705[link1] -> M26 (Change Log[link2])This is a major release.
The 6.1 release serves mainly two purposes: Implement new PHP 8 functionality and improve GUI usability.
1. Notable in this release
- new PHP 8 functionality and compatibility
- RTL theme support
- complete Chinese Simplified translation
- section edit support
- thumbnail creation
- global string find-and-replace action
milestones
- stable - 04.09.2021
- m26 - 05.10.2024
2. Download
wackowiki-6.1.26.zip[link4]- File updated to change set
a40170516c866b11222c7995ba22adb4c6bd51d6
Repo files (including community[link5] folder)
Clone repo (see Repository[link9])
git clone -b 6.1.26 https://github.com/WackoWiki/wackowiki.git
3. Upgrade path
R6.0 –> R6.1[link10] (requires PHP >= 8.0)- requires at least WackoWiki 6.0.22
Please read the upgrade notices[link10] carefully.
4. Installation
Installation guide[link11]4.1. Requirements
requires now[link12]- PHP 8.0 - 8.3 (PHP 8.2 recommended)
- PHP Extensions
- bcmath, ctype, gd, iconv, intl, json, mbstring, openssl, pcre, spl
- Apache >= 2.4 / Nginx
- mod_rewrite (recommended)
- SQL database system, one of:
- MariaDB >= 10.4
- MySQL >= 8.0
Step by step as Installer Screenshots[link13].
Preparing the Database for Installation
CREATE DATABASE db_name CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci;
4.2. File Permissions
Change the permissions[link14] on the following files and directories to be writableExample:
touch config/config.php chmod 666 config/config.php config/lock config/lock_ap
chmod 0755 _cache/config/ _cache/feed/ _cache/page/ _cache/query/ _cache/session/ _cache/template/ file/backup/ file/global/ file/perpage/ file/thumb/ file/thumb_local/ xml/
reset after installation / upgrade
chmod 644 config/config.php
4.3. Path for session values
Check if the provided path forCACHE_SESSION_DIR
is correct. The default value is /tmp
but may vary in your environment. Furthermore, you can change this folder to a custom folder[link15] for the application (e.g.
_cache/session
).constants.php:
const CACHE_SESSION_DIR = '/tmp';
4.4. RewriteBase
If your webserver's URLs are not directly related to physical file paths, you will need to use RewriteBase[link16] in every .htaccess file where you want to use RewriteRule directives[link17].RewriteBase /folder/
4.5. New config settings
Please check the Change Log[link2] for more details.5. Admin panel[link3]
- to login define the
recovery_password
in the config.php file first- call the
{{admin_recovery}}
action as Admin and generate the password hash for your recovery_password - add the password hash:
'recovery_password' => 'add hash here',
- call the
- Don't forget to delete the _cache/config/config.php afterwards.
- you must be logged in as member of the Admin group in the first place to access the admin panel
- call yourwiki/admin.php
- enter your recovery_password
If your Admin panel gets locked reset config/lock_ap from
1
to 0
6. Themes
If you want to keep your layout, you have to use a program like Meld or WinMerge to merge your CSS and other theme files with the new files in the folder wacko/theme/default[link18].
You can write or adapt your theme also without using the template engine[link19].
-> Themes[link20]
-> Theme guide with example templates[link21]
7. Extensions
Action- Mass Regex Replace[link22]
- Gallery lightbox[link23]
Formatter
- GeSHi Code Highlighting[link24]
- Highlight.js[link25]
- CSV[link26]
- MathJax[link27]
- Timeline[link28]
8. Backwards Compatibility
We dropped compatibility code for older PHP and MySQL versions. R6.1 requires at least PHP 8.0 and MariaDB 10.4 or MySQL 8.0. To use WackoWiki with older PHP or MySQL versions, use the older branch of 6.0.x releases[link29], which you can find on the download page[link30].9. Known Issues
All known issues[link31] are tracked in our Bug Tracker.[link32]- ngram Full-Text Parser[link33], used to support Chinese, Japanese, Korean word segmentation is currently only available for MySQL.
- Session duration issue[link34] - FIXED partially
- WikiEdit Autocomplete selection ain't working (help needed, can someone fix it)
- Missing route cases (needs fix)
- CSS files in RECOVERY mode
10. Developers
10.1. Debug functions
- to write a parameter in the debug log
-
Ut::dbg('debug_variable', $parameter);
-
- add debug output to DEBUG file and popup-window in browser
-
Diag::dbg($parameter);
- to highlight the debug output in the console add
'[BLUE|GOLD|ORANGE|RED]'
as the first argument- e.g.
Diag::dbg('GOLD', $parameter);
- e.g.
-
In both cases it writes the
$parameter
to the log in the main directory src/DEBUG
when the config debug
is enabled. Be aware the log isn't emptied automatically. Ensure that the file
src/DEBUG
can be created and is writable.touch DEBUG chmod 0664 DEBUG
11. Documentation
- URL: https://wackowiki.org
- Repository[link9]:
https://github.com/WackoWiki/wackowiki.git
- Documentation: https://wackowiki.org/doc/
12. What's Planned
WackoWiki is pretty usable now. There are of course few peculiarities and bugs, some old ones and some new ones which are waiting to be fixed. Now the main task is to make the Wiki engine better and reduce bugs[link31].Apart from that following features are planned to be implemented[link35]:
- extended ACLs
- WackoFormatter rewrite
- responsive device-agnostic theme
- improve GUI usability
- filter for lists
- faceted search
- archive table
- guest settings
13. Contribute
Those interested in following and contributing to the development of WackoWiki can check out the repository, and participate in the discussions on the WackoWiki Development and contribute patches. Policies and the current state of the project and plans are available in the Dev section[link36] of the wiki.- Repositories[link9]
- Bug Tracker[link32]
- Forum[link37]
- Translations[link38]
- ToDo[link31]
14. Feedback
Leave a comment here if something is not clear or you have further questions.15. Credits
- Elar9000[link39] -- developer, translation, support
- EoNy[link40] -- translation, documentation, screenshots, support
- brianko[link41] - English translation
- Evaggelos Balaskas[link42] - Greek translation
- qianmengnet[link43] - Chinese Simplified translation
- 王彥傑[link44] - Chinese Traditional translation
- João Sefhriloff - Português translation
- [link1] https://bitbucket.org/wackowiki/wackowiki/commits/a40170516c866b11222c7995ba22adb4c6bd51d6
- [link2] https://wackowiki.org/doc/Dev/Release/R6.1/ChangeLog
- [link3] https://wackowiki.org/doc/Doc/English/AdminPanel
- [link4] https://downloads.sourceforge.net/wackowiki/wackowiki-6.1.26.zip
- [link5] https://bitbucket.org/wackowiki/wackowiki/src/master/community
- [link6] https://bitbucket.org/wackowiki/wackowiki/get/6.1.26.zip
- [link7] https://bitbucket.org/wackowiki/wackowiki/get/6.1.26.tar.gz
- [link8] https://bitbucket.org/wackowiki/wackowiki/get/6.1.26.tar.bz2
- [link9] https://wackowiki.org/doc/Org/Tools/Repository
- [link10] https://wackowiki.org/doc/Dev/Release/R6.1/Upgrade
- [link11] https://wackowiki.org/doc/Doc/English/Installation
- [link12] https://wackowiki.org/doc/Dev/Release/R6.1/Dependencies
- [link13] https://wackowiki.org/doc/Doc/English/Installation/Screenshots
- [link14] https://wackowiki.org/doc/Doc/English/FilePermissions
- [link15] https://wackowiki.org/doc/Dev/Components/SessionHandling
- [link16] https://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewritebase
- [link17] https://wackowiki.org/doc/Doc/English/ModRewrite
- [link18] https://bitbucket.org/wackowiki/wackowiki/src/master/src/theme/default
- [link19] https://wackowiki.org/doc/Dev/Projects/Templatest/Usage
- [link20] https://wackowiki.org/doc/Dev/Themes
- [link21] https://wackowiki.org/doc/Doc/English/ThemeGuide
- [link22] https://wackowiki.org/doc/Dev/PatchesHacks/MassRegexReplace
- [link23] https://wackowiki.org/doc/Dev/PatchesHacks/Gallery
- [link24] https://wackowiki.org/doc/Dev/PatchesHacks/GeSHi
- [link25] https://wackowiki.org/doc/Dev/PatchesHacks/Highlight.js
- [link26] https://wackowiki.org/doc/Dev/PatchesHacks/CSV
- [link27] https://wackowiki.org/doc/Dev/PatchesHacks/MathJax
- [link28] https://wackowiki.org/doc/Dev/PatchesHacks/Timeline
- [link29] https://wackowiki.org/doc/Dev/Release/R6.0/ReleaseNotes
- [link30] https://wackowiki.org/doc/Download/LegacyVersions
- [link31] https://wackowiki.org/doc/Dev/Release/R6.1/ToDo
- [link32] https://wackowiki.org/bugs/
- [link33] https://wackowiki.org/doc/Dev/Release/R6.0/UnicodeIssues/ngramFull-TextParser
- [link34] https://wackowiki.org/doc/Dev/Release/R6.0/ToDo/SessionTimedOut
- [link35] https://wackowiki.org/doc/Dev/Roadmap
- [link36] https://wackowiki.org/doc/Dev
- [link37] https://wackowiki.org/doc/Forum
- [link38] https://wackowiki.org/doc/Dev/Translations
- [link39] https://wackowiki.org/doc/Users?profile=Elar9000
- [link40] https://wackowiki.org/doc/Users?profile=EoNy
- [link41] https://wackowiki.org/doc/Users?profile=brianko
- [link42] https://wackowiki.org/doc/Users?profile=EvaggelosBalaskas
- [link43] https://wackowiki.org/doc/Users?profile=qianmengnet
- [link44] https://wackowiki.org/doc/Users?profile=yanjiew