Downloaded here: http://web2project-mod.svn.sourceforge.net/viewvc/web2project-mod/documentation/
Version after install: 0.2
Symptoms:
After installation a "Documentation" tab becomes visible. After cklicking it you should get a screen like the enclosed one. In my case the menu bar and the text (MediaWiki) at "Syntax:" are not displayed. If text is written and submitted either nothing happens or a white screen (as reported by other users) appears.
As I am not (yet) common with the WikiWiki-world I did not know what to expect or how to use it.
Because an error is not reported (only in php-error.log an error like some files are missing is reported) I did not recognized this as an bug and just was not using it for a while.
Bugs:
1. w2p-ver. 2.3.1 and 3.x:
- index.php:
- Code: Select all
// require_once ("config.php");
require_once (W2P_BASE_DIR . "/modules/documentation/config.php");
---> module's configuration is not read, because instead of the local file "config.php" the system's config.php file is read! Here the full path has to be set.
- documentation.class.php
- Code: Select all
public function store(CAppUI $AppUI) {
global $db, $WIKI_CONFIG;
---> the variable $WIKI_CONFIG becomes unknown in this function!
I solved this by inserting:
- Code: Select all
public function store(CAppUI $AppUI) {
global $db, $WIKI_CONFIG;
require (W2P_BASE_DIR . "/modules/documentation/config.php");
Works, but can be "smarter" solved.
2. w2p-ver. 3.x:
- documentation.class.php
Additionally to the above changes the class "CAppUI" has to be replaced by the new w2p-class "w2p_Core_CAppUI".
- Code: Select all
// public function delete(CAppUI $AppUI) {
public function delete(w2p_Core_CAppUI $AppUI) {
- Code: Select all
// public function store(CAppUI $AppUI) {
public function store(w2p_Core_CAppUI $AppUI) {
Other possible bugs:
During configuration of the module via System Admin 5x different PDF-Converters can be selected. The first three are not selectable, the last 2x (mPDF, HTML2PDF (TCPDF) are selectable and working as I could see.
---> Bug ?
pm.
PS:
@eureka: Nice nick name, especially if the own name is Archimede as I figured it out now, lol...
