Release Notes
This wiki page contains last minute notes to users about the releases, which may not be included in the documentation or README files included with the distribution package. It also contains change information, for users who are interested in what bugs have been fixed, and what features have been added in the current version. (ChangeLog[link1])1. R6.1
(24.06.2023) 1069fc1[link3] -> M23 (Change Log[link4])
This is a major release.
The 6.1 release serves mainly two purposes: Implement new PHP 8 functionality and improve GUI usability.
1.1. Notable in this release
- new PHP 8 functionality and compatibility
- RTL theme support
- complete Chinese Simplified translation
- section edit support
- thumbnail support
milestones
- stable - 04.09.2021
- m23 - 24.06.2023
1.2. Download
wackowiki-6.1.23.zip[link5]
- File updated to change set 1069fc101fdab3df0e5927e6986d748cde6605aa
Repo files (including community[link6] folder)
Clone repo (see Repository[link10])
git clone -b 6.1.23 https://github.com/WackoWiki/wackowiki.git
1.3. Upgrade path
R6.0 –> R6.1[link11] (requires PHP >= 8.0)
- requires at least WackoWiki 6.0.22
Please read the upgrade notices[link11] carefully.
1.4. Installation
Installation guide[link12]
1.4.1. Requirements
requires now[link13]
- PHP 8.0 - 8.2 (PHP 8.1 recommended)
- PHP Extensions
- bcmath, ctype, gd, iconv, intl, json, mbstring, openssl, pcre, spl
- Apache >= 2.4
- mod_rewrite (recommended)
- SQL database system, one of:
- MariaDB >= 10.2
- MySQL >= 5.7
Step by step as Installer Screenshots[link14].
Preparing the Database for Installation
CREATE DATABASE db_name CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci;
1.4.2. File Permissions
Change the permissions[link15] on the following files and directories to be writable
Example:
touch config/config.php
chmod 666 config/config.php
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/
chmod 0660 config/lock config/lock_ap
reset after installation / upgrade
chmod 644 config/config.php
1.4.3. Path for session values
Check if the provided path for CACHE_SESSION_DIR
is correct. The default value is /tmp
but may vary in your environment.
Furthermore you may want to change this to a custom folder[link16] for the application (e.g. _cache/session
) .
constants.php:
const CACHE_SESSION_DIR = '/tmp';
1.4.4. RewriteBase
If your webserver's URLs are not directly related to physical file paths, you will need to use RewriteBase[link17] in every .htaccess file where you want to use RewriteRule directives[link18].
RewriteBase /folder/
1.4.5. New config settings
Please check the Change Log[link4] for more details.
1.5. Admin panel[link2]
- 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
1.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[link19].
You can write or adapt your theme also without using the template engine[link20].
-> Themes[link21]
-> Theme guide with example templates[link22]
1.7. Extensions
- Action: Mass Regex Replace[link23]
- Action: Gallery[link24]
- Formatter: GeSHi Code Highlighting[link25]
- Formatter: Highlight.js[link26]
- Formatter: CSV[link27]
- Formatter: MathJax[link28]
- Formatter: Timeline[link29]
1.8. Backwards Compatibility
We dropped compatibility code for older PHP and MySQL versions. R6.1 requires at least PHP 8.0 and MySQL 5.7. To use WackoWiki with older PHP or MySQL versions, use the older branch of 6.0.x releases[link30], which you can find on the download page[link31].
1.9. Known Issues
All known issues[link32] are tracked in our Bug Tracker.[link33]
- Session duration issue[link34] - FIXED partially
- WikiEdit Autocomplete selection ain't working (help needed)
- Missing route cases (needs fix)
- CSS files in RECOVERY mode
1.10. Developers
1.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
1.11. Documentation
- URL: https://wackowiki.org
- Repository[link10]
https://github.com/WackoWiki/wackowiki.git
- Documentation https://wackowiki.org/doc/
1.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.
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
1.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[link10]
- Bug Tracker[link33]
- Forum[link37]
- Translations[link38]
- ToDo[link32]
1.14. Feedback
Leave a comment hereif something is not clear or you have further questions.
1.15. Credits
- Elar9000[link39] -- developer, translation, support
- EoNy[link40] -- translation, documentation, screenshots, support
- Evaggelos Balaskas[link41] - Greek translation
- qianmengnet[link42] - Chinese Simplified translation
- 王彥傑[link43] - Chinese Traditional translation
- João Sefhriloff - Português translation
2. R6.0
(10.03.2023) a31bc75[link44] -> M37 (Change Log[link45])
This is a major release.
The 6.0 release serves mainly two purposes: Migration to Unicode and PHP 8.0 compatibility.
2.1. Notable in this release
- UTF-8 support
- यूनिकोड, Юникод, ইউনিক’ড, 유니코드
- accent and case-sensitive page tag
- implemented full support for relative path
- new
info
,chat
anddetails
formatter along with new wrapper options - complete PHP 8.0 compatibility
milestones
- stable - 15.12.2019
- m37 - 10.03.2023
2.2. Download
wackowiki-6.0.37.zip[link46]
- File updated to change set a31bc75a22e98d32ceb40f9a4cc7af475858b51
Repo files (including community[link47] folder)
Clone repo (see Repository[link10])
git clone -b 6.0.37 https://github.com/WackoWiki/wackowiki.git
2.3. Upgrade path
R5.x –> R5.5[link51] (requires PHP 7.0 - 7.4)
R5.5 –> R6.0[link52] (requires PHP >= 7.3)
Please read the upgrade notices[link52] carefully.
{{admin_utf8}}
-- database UTF-8 conversion script[link53]
2.4. Installation
Installation guide[link12]
2.4.1. Requirements
requires now[link54]
- PHP 7.3 - 8.0 (PHP 8.0 recommended)
- PHP Extensions
- bcmath, ctype, gd, iconv, intl, json, mbstring, openssl, pcre, spl
- Apache >= 2.4
- mod_rewrite (recommended)
- SQL database system, one of:
- MariaDB >= 10.2
- MySQL >= 5.7
Step by step as Installer Screenshots[link14].
Preparing the Database for Installation
CREATE DATABASE db_name CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci;
2.4.2. File Permissions
Change the permissions[link15] on the following files and directories to be writable
Example:
touch config/config.php
chmod 666 config/config.php
chmod 0755 _cache/config/ _cache/feed/ _cache/page/ _cache/query/ _cache/session/ _cache/template/ file/backup/ file/global/ file/perpage/ file/thumb/ xml/
chmod 0660 config/lock config/lock_ap sitemap.xml
reset after installation / upgrade
chmod 644 config/config.php
2.4.3. Path for session values
Check if the provided path for CACHE_SESSION_DIR
is correct. The default value is /tmp
but may vary in your environment.
Furthermore you may want to change this to a custom folder[link16] for the application (e.g. _cache/session
) .
constants.php:
const CACHE_SESSION_DIR = '/tmp';
2.5. Admin panel[link2]
- 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
2.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[link55].
You can write or adapt your theme also without using the template engine[link20].
-> Themes[link21]
-> Theme guide with example templates[link22]
2.7. Backwards Compatibility
We dropped compatibility code for older PHP and MySQL versions. R6.0 requires at least PHP 7.3 and MySQL 5.7. To use WackoWiki with older PHP or MySQL versions, use the older branch of 5.5.x releases[link56], which you can find on the download page[link31].
2.8. Known Issues
All known issues[link57] are tracked in our Bug Tracker.[link33]
- Session duration issue[link34] - FIXED partially
- WikiEdit Autocomplete selection ain't working (help needed)
- Missing route cases (needs fix)
- CSS files in RECOVERY mode
2.9. Credits
- RideSnowNow[link58] -- developer, translation
- 王彥傑[link43] (Yan-Jie Wang) - initial Unicode fork[link59]
- Raysir[link60] -- testing, translation
- Elar9000[link39] -- developer, translation, support
- EoNy[link40] -- translation, documentation, screenshots, support
- KlePy[link61] -- Spanish translation
- Abram4[link62] -- Russian translation , testing
- bear[link63] - testing
- ascrsoft[link64] -- Spanish translation, testing
3. R5.5
(31.12.2019) b4095e3[link65] -> M17 (Change Log[link66])
This is a major release and a security update for the stable 5.x branch.
In addition to miscellaneous fixes the 5.5 release serves mainly three purposes: Migration to HTML5, address security related features and PHP 7.0 – 7.4 compatibility.
3.1. Notable in this release
- complete PHP 7.0 – 7.4 compatibility
- HTML5 support
- major refactoring of init system
- new session handler
- new URI router[link67]
- new template engine[link20]
- added php-diff rendering methods
- replaced all icons with SVG icons
- implemented auth and form token
- added support for audio, video and SVG files
- added Bad Behaviour[link68] as extension
- public registration moderation by admin
- using
password_hash()
andpassword_verify()
API - file link tracking
- improved notification handling
- localized WikiEdit and Admin panel
milestones
- beta – 14.12.15
- rc – 18.04.16
- rc2 – 12.08.16
- rc3 – 05.06.17
- final – 25.08.17
- m17 – 31.12.19
3.2. Download
wacko.r5.5.17.zip[link69]
- SHA1: b27118eff92927ef134bc3bbfb2eb517614f85ef
- File updated to change set b4095e3bda506094d298e6b6a3c293eb3db0f9d6
Repo files (including community[link70] folder)
Clone repo
git clone -b 5.5.17 https://bitbucket.org/wackowiki/wackowiki.git
3.3. Upgrade path
R4.x –> R5.0[link74] (requires PHP 5.2 / 5.3)
R5.x –> R5.5[link51] (requires PHP >= 7.0)
Please read the upgrade notices[link51] carefully.
3.4. Installation
Installation guide[link12]
3.4.1. Requirements
requires now[link75]
- PHP >= 7.0 (PHP 7.3 recommended)
- PHP Extensions
- bcmath, ctype, gd, iconv, json, mbstring, openssl, pcre, spl
- Apache >= 2.4
- mod_rewrite (recommended)
- SQL database system, one of:
- MariaDB >= 10
- MySQL >= 5.6
Step by step as Installer Screenshots[link14].
Preparing the Database for Installation
Data base configuration: If the installer asks you for charset, select the appropriate character set, e.g.
- [cp1252 West European] for Latin 1
- [cp1251 Windows Cyrillic] for Russian
- [cp1257 Windows Baltic] for Estonian
- [ISO 8859-2 Central European] for Polish and Hungarian
- [ISO 8859-7 Greek] for Greek
3.4.2. File Permissions
Change the permissions[link15] on the following files and directories to be writable
Example:
touch config/config.php
chmod 666 config/config.php
chmod 0755 _cache/config/ _cache/feed/ _cache/page/ _cache/query/ _cache/session/ _cache/template/ file/backup/ file/global/ file/perpage/ file/thumb/ xml/
chmod 0660 config/lock config/lock_ap sitemap.xml
reset after installation / upgrade
chmod 644 config/config.php
3.4.3. Path for session values
Check if the provided path for CACHE_SESSION_DIR
is correct. The default value is /tmp
but may vary in your environment.
Furthermore you may want to change this to a custom folder[link16] for the application (e.g. _cache/session
) .
constants.php:
define('CACHE_SESSION_DIR', '/tmp');
3.4.4. Path to user and group profile
The path for link to the users page or profile ((user:UserName UserName))
is set in config['users_page']
.
- e.g. WikiAdmin[link76]
The path for link to the group page or profile ((group:GroupName GroupName))
is set in config['groups_page']
.
- e.g. WackoWiki[link77]
3.4.5. New config settings
Please check the Change Log[link66] for more details.
3.5. Admin Panel
The Admin panel[link2] remains in beta stage.
- 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
3.6. Themes
All themes[link21] other than default
are outdated and unmaintained and were moved to the community/theme[link78] section. If you like to use one of them, please help to update this particular theme.
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[link79].
A Guide for the new template engine[link20] will hopefully follow soon. Nevertheless you can write or adapt your theme without using the template engine.
3.7. Backwards Compatibility
We dropped compatibility code for older PHP and MySQL versions. R5.5 requires at least PHP 7.0 and MySQL 5.6. To use WackoWiki with older PHP or MySQL versions, use the previous branch of 5.4.x releases, which you can find on the download page[link31].
3.8. Known Issues
All known issues[link80] are tracked in our Bug Tracker.[link33]
- Session duration issue[link34]
- Missing route cases (needs fix)
- CSS files in RECOVERY mode
- activate the option
multilanguage
in the installer / secondary config to avoid the following issues:- chars from another charset are not converted to HTML unicode entities
- This issue will become obsolete with our upcoming Unicode ready Wiki engine.
- WikiEdit won't show if you use [et] or [pl] as page language with the auto complete feature -> SyntaxError: invalid range in character class
- Workaround: disable Autocomplete under user settings -> extended -> Complete wikilinks by Ctrl+Space
3.9. Developers
3.9.1. New 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 wacko/DEBUG
when the config debug
is enabled.
Be aware the log isn't emptied automatically. Ensure that the file wacko/DEBUG
can be created and is writable.
touch DEBUG chmod 0664 DEBUG
3.9.2. Access config values
- new:
db->users_page
- legacy:
config['users_page']
3.9.3. HTTP functions
- new
-
http->redirect()
-
http->invalidate_page()
-
3.9.4. SQL functions
- new
-
db->sql_query()
-
db->load_all()
-
db->load_single()
-
3.10. Credits
Of note, is the large contribution of Serge Terekhov[link58] to this release.
- RideSnowNow[link58] — developer, translation
- birnbacs[link81] — patches #443[link82], #444[link83], #422[link84], #432[link85]
- javafun[link86] — patches #432[link85]
- TriS[link87] — patches #432[link85]
- RichMarisa[link88] — testing #432[link85]
- Raysir[link60] — testing, translation, patches #447[link89], #462[link90], #461[link91]
- Elar9000[link39] — developer, translation, support
- EoNy[link40] — translation, documentation, screenshots, support
- CodeFetch — patches #458[link92]
- KlePy[link61] — Spanish translation
- SatTva[link93] — Russian translation
- Abram4[link62] — Russian translation, testing #464[link94], #470[link95], #471[link96], #484[link97], #493[link98]
- Mangalor[link99] — patches #497[link100]
- ascrnet[link101] — testing #518[link102], #519[link103]
- [link1] https://wackowiki.org/doc/Dev/ChangeLog
- [link2] https://wackowiki.org/doc/Doc/English/AdminPanel
- [link3] https://bitbucket.org/wackowiki/wackowiki/commits/1069fc101fdab3df0e5927e6986d748cde6605aa
- [link4] https://wackowiki.org/doc/Dev/Release/R6.1/ChangeLog
- [link5] https://downloads.sourceforge.net/wackowiki/wackowiki-6.1.23.zip
- [link6] https://bitbucket.org/wackowiki/wackowiki/src/master/community
- [link7] https://bitbucket.org/wackowiki/wackowiki/get/6.1.23.zip
- [link8] https://bitbucket.org/wackowiki/wackowiki/get/6.1.23.tar.gz
- [link9] https://bitbucket.org/wackowiki/wackowiki/get/6.1.23.tar.bz2
- [link10] https://wackowiki.org/doc/Org/Tools/Repository
- [link11] https://wackowiki.org/doc/Dev/Release/R6.1/Upgrade
- [link12] https://wackowiki.org/doc/Doc/English/Installation
- [link13] https://wackowiki.org/doc/Dev/Release/R6.1/Dependencies
- [link14] https://wackowiki.org/doc/Doc/English/Installation/Screenshots
- [link15] https://wackowiki.org/doc/Doc/English/FilePermissions
- [link16] https://wackowiki.org/doc/Dev/Components/SessionHandling
- [link17] https://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewritebase
- [link18] https://wackowiki.org/doc/Doc/English/ModRewrite
- [link19] https://bitbucket.org/wackowiki/wackowiki/src/master/src/theme/default
- [link20] https://wackowiki.org/doc/Dev/Projects/Templatest/Usage
- [link21] https://wackowiki.org/doc/Dev/Themes
- [link22] https://wackowiki.org/doc/Doc/English/ThemeGuide
- [link23] https://wackowiki.org/doc/Dev/PatchesHacks/MassRegexReplace
- [link24] https://wackowiki.org/doc/Dev/PatchesHacks/Gallery
- [link25] https://wackowiki.org/doc/Dev/PatchesHacks/GeSHi
- [link26] https://wackowiki.org/doc/Dev/PatchesHacks/Highlight.js
- [link27] https://wackowiki.org/doc/Dev/PatchesHacks/CSV
- [link28] https://wackowiki.org/doc/Dev/PatchesHacks/MathJax
- [link29] https://wackowiki.org/doc/Dev/PatchesHacks/Timeline
- [link30] https://wackowiki.org/doc/Dev/Release/R6.0/ReleaseNotes
- [link31] https://wackowiki.org/doc/Download/LegacyVersions
- [link32] https://wackowiki.org/doc/Dev/Release/R6.1/ToDo
- [link33] https://wackowiki.org/bugs/
- [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=EvaggelosBalaskas
- [link42] https://wackowiki.org/doc/Users?profile=qianmengnet
- [link43] https://wackowiki.org/doc/Users?profile=yanjiew
- [link44] https://bitbucket.org/wackowiki/wackowiki/commits/a31bc75a22e98d32ceb40f9a4cc7af475858b51
- [link45] https://wackowiki.org/doc/Dev/Release/R6.0/ChangeLog
- [link46] https://downloads.sourceforge.net/wackowiki/wackowiki-6.0.37.zip
- [link47] https://bitbucket.org/wackowiki/wackowiki/src/6.0/community
- [link48] https://bitbucket.org/wackowiki/wackowiki/get/6.0.37.zip
- [link49] https://bitbucket.org/wackowiki/wackowiki/get/6.0.37.tar.gz
- [link50] https://bitbucket.org/wackowiki/wackowiki/get/6.0.37.tar.bz2
- [link51] https://wackowiki.org/doc/Dev/Release/R5.5/Upgrade
- [link52] https://wackowiki.org/doc/Dev/Release/R6.0/Upgrade
- [link53] https://wackowiki.org/doc/Dev/Release/R6.0/Upgrade/DatabaseConversion
- [link54] https://wackowiki.org/doc/Dev/Release/R6.0/Dependencies
- [link55] https://bitbucket.org/wackowiki/wackowiki/src/6.0/src/theme/default
- [link56] https://wackowiki.org/doc/Dev/Release/R5.5/ReleaseNotes
- [link57] https://wackowiki.org/doc/Dev/Release/R6.0/ToDo
- [link58] https://wackowiki.org/doc/Users?profile=RideSnowNow
- [link59] https://gitlab.com/wackowiki-tchinese/wackowiki-unicode
- [link60] https://wackowiki.org/doc/Users?profile=Raysir
- [link61] https://wackowiki.org/doc/Users?profile=KlePy
- [link62] https://wackowiki.org/doc/Users?profile=Abram4
- [link63] https://wackowiki.org/doc/Users?profile=bear
- [link64] https://wackowiki.org/doc/Users?profile=ascrsoft
- [link65] https://bitbucket.org/wackowiki/wackowiki/commits/b4095e3bda506094d298e6b6a3c293eb3db0f9d6
- [link66] https://wackowiki.org/doc/Dev/Release/R5.5/ChangeLog
- [link67] https://wackowiki.org/doc/Dev/Projects/UriRouter
- [link68] https://wackowiki.org/doc/Dev/Components/Lib/BadBehavior
- [link69] https://downloads.sourceforge.net/wackowiki/wacko.r5.5.17.zip
- [link70] https://bitbucket.org/wackowiki/wackowiki/src/5.5/community
- [link71] https://bitbucket.org/wackowiki/wackowiki/get/5.5.17.zip
- [link72] https://bitbucket.org/wackowiki/wackowiki/get/5.5.17.tar.gz
- [link73] https://bitbucket.org/wackowiki/wackowiki/get/5.5.17.tar.bz2
- [link74] https://wackowiki.org/doc/Dev/Release/R5.0/Upgrade
- [link75] https://wackowiki.org/doc/Dev/Release/R5.5/Dependencies
- [link76] https://wackowiki.org/doc/Users?profile=WikiAdmin
- [link77] https://wackowiki.org/doc/Groups?profile=WackoWiki
- [link78] https://bitbucket.org/wackowiki/wackowiki/src/5.5/community/theme/
- [link79] https://bitbucket.org/wackowiki/wackowiki/src/5.5/wacko/theme/default
- [link80] https://wackowiki.org/doc/Dev/Release/R5.5/ToDo
- [link81] https://wackowiki.org/doc/Users?profile=birnbacs
- [link82] https://wackowiki.org/bugs/view.php?id=443
- [link83] https://wackowiki.org/bugs/view.php?id=444
- [link84] https://wackowiki.org/bugs/view.php?id=422
- [link85] https://wackowiki.org/bugs/view.php?id=432
- [link86] https://wackowiki.org/doc/Users?profile=javafun
- [link87] https://wackowiki.org/doc/Users?profile=TriS
- [link88] https://wackowiki.org/doc/Users?profile=RichMarisa
- [link89] https://wackowiki.org/bugs/view.php?id=447
- [link90] https://wackowiki.org/bugs/view.php?id=462
- [link91] https://wackowiki.org/bugs/view.php?id=461
- [link92] https://wackowiki.org/bugs/view.php?id=458
- [link93] https://wackowiki.org/doc/Users?profile=SatTva
- [link94] https://wackowiki.org/bugs/view.php?id=464
- [link95] https://wackowiki.org/bugs/view.php?id=470
- [link96] https://wackowiki.org/bugs/view.php?id=471
- [link97] https://wackowiki.org/bugs/view.php?id=484
- [link98] https://wackowiki.org/bugs/view.php?id=493
- [link99] https://wackowiki.org/doc/Users?profile=Mangalor
- [link100] https://wackowiki.org/bugs/view.php?id=497
- [link101] https://wackowiki.org/doc/Users?profile=ascrnet
- [link102] https://wackowiki.org/bugs/view.php?id=518
- [link103] https://wackowiki.org/bugs/view.php?id=519