Posted
over 3 years
ago
Hallo Zusammen,
für was benutzt ihr euer DokuWiki so?
Ich benutze mein DokuWiki als Ablage für meine Anleitungen, Programm Tipps , als Ablage für wichtige Notizen.
VG
Thomas
|
Posted
over 3 years
ago
Hallo Zusammen,
für was benutzt ihr euer DokuWiki so?
Ich benutze mein DokuWiki als Ablage für meine Anleitungen, Programm Tipps , als Ablage für wichtige Notizen.
VG
Thomas
|
Posted
over 3 years
ago
There seems to be a problem with LDAP authentication. While the user lookup works, the lookup of groups fails. From our debugging with the LDAP server logs it seems that the group filter messes up the user's DN, changing a UTF8 multibyte character into two single bytes.
As a quick fix: is it possible to disable LDAP group lookup?
|
Posted
over 3 years
ago
There seems to be a problem with LDAP authentication. While the user lookup works, the lookup of groups fails. From our debugging with the LDAP server logs it seems that the group filter messes up the user's DN, changing a UTF8 multibyte character into two single bytes.
As a quick fix: is it possible to disable LDAP group lookup?
|
Posted
over 3 years
ago
Folgendes Problem:
|km-stand | gefahrene Kilometer|
| 2000|~~=cell(0,row())-cell(0,row(-1))~~ |
| 1423|
Das funktioniert leider nicht. Gibt es eine Möglichkeit dies zu realisieren ohne dass ich für die Altdaten eine neue Spalte anlegen muss?
|
Posted
over 3 years
ago
Folgendes Problem:
|km-stand | gefahrene Kilometer|
| 2000|~~=cell(0,row())-cell(0,row(-1))~~ |
| 1423|
Das funktioniert leider nicht. Gibt es eine Möglichkeit dies zu realisieren ohne dass ich für die Altdaten eine neue Spalte anlegen muss?
|
Posted
over 3 years
ago
I'm writing a syntax plugin with two syntaxes, one for block use and another for inline. As getPType() doesn't know which syntax is calling it, I've split the plugin into two files:
syntax/
block.php
inline.php
Everything else is the same
... [More]
between the two syntaxes, so I've also created a base class, meta/Syntax.php, which states:
namespace dokuwiki\plugin\\meta
The two syntax classes only override the getPType() method and connect their syntax; they inherit everything else from the base class with:
use dokuwiki\plugin\\meta\Syntax;
At this point DokuWiki fails to load, because it can't find the Doku_Handler class used in the handle() method of Syntax.php. Error:
PHP Fatal error: Could not check compatibility between dokuwiki\\plugin\\\\meta\\Syntax::handle($match, $state, $position, dokuwiki\\plugin\\\\meta\\Doku_Handler $handler): array and dokuwiki\\Extension\\SyntaxPlugin::handle($match, $state, $pos, Doku_Handler $handler), because class dokuwiki\\plugin\\\\meta\\Doku_Handler is not available in /var/www/html/lib/plugins//meta/Syntax.php on line 66
Is there a way to sensibly have the base class reference the Doku_Handler class so it can be found? Should I be loading the base class a different way in the syntax classes?
Thanks,
Iain.
[Less]
|
Posted
over 3 years
ago
I'm writing a syntax plugin with two syntaxes, one for block use and another for inline. As getPType() doesn't know which syntax is calling it, I've split the plugin into two files:
syntax/
block.php
inline.php
Everything else is the same
... [More]
between the two syntaxes, so I've also created a base class, meta/Syntax.php, which states:
namespace dokuwiki\plugin\\meta
The two syntax classes only override the getPType() method and connect their syntax; they inherit everything else from the base class with:
use dokuwiki\plugin\\meta\Syntax;
At this point DokuWiki fails to load, because it can't find the Doku_Handler class used in the handle() method of Syntax.php. Error:
PHP Fatal error: Could not check compatibility between dokuwiki\\plugin\\\\meta\\Syntax::handle($match, $state, $position, dokuwiki\\plugin\\\\meta\\Doku_Handler $handler): array and dokuwiki\\Extension\\SyntaxPlugin::handle($match, $state, $pos, Doku_Handler $handler), because class dokuwiki\\plugin\\\\meta\\Doku_Handler is not available in /var/www/html/lib/plugins//meta/Syntax.php on line 66
Is there a way to sensibly have the base class reference the Doku_Handler class so it can be found? Should I be loading the base class a different way in the syntax classes?
Thanks,
Iain.
[Less]
|
Posted
over 3 years
ago
I'm writing a syntax plugin with two syntaxes, one for block use and another for inline. As getPType() doesn't know which syntax is calling it, I've split the plugin into two files:
syntax/
block.php
inline.php
Everything else is the same
... [More]
between the two syntaxes, so I've also created a base class, meta/Syntax.php, which states:
namespace dokuwiki\plugin\\meta
The two syntax classes only override the getPType() method and connect their syntax; they inherit everything else from the base class with:
use dokuwiki\plugin\\meta\Syntax;
At this point DokuWiki fails to load, because it can't find the Doku_Handler class used in the handle() method of Syntax.php. Error:
PHP Fatal error: Could not check compatibility between dokuwiki\\plugin\\\\meta\\Syntax::handle($match, $state, $position, dokuwiki\\plugin\\\\meta\\Doku_Handler $handler): array and dokuwiki\\Extension\\SyntaxPlugin::handle($match, $state, $pos, Doku_Handler $handler), because class dokuwiki\\plugin\\\\meta\\Doku_Handler is not available in /var/www/html/lib/plugins//meta/Syntax.php on line 66
Is there a way to sensibly have the base class reference the Doku_Handler class so it can be found? Should I be loading the base class a different way in the syntax classes?
Thanks,
Iain.
[Less]
|
Posted
over 3 years
ago
I'm writing a syntax plugin with two syntaxes, one for block use and another for inline. As getPType() doesn't know which syntax is calling it, I've split the plugin into two files:
syntax/
block.php
inline.php
Everything else is the same
... [More]
between the two syntaxes, so I've also created a base class, meta/Syntax.php, which states:
namespace dokuwiki\plugin\\meta
The two syntax classes only override the getPType() method and connect their syntax; they inherit everything else from the base class with:
use dokuwiki\plugin\\meta\Syntax;
At this point DokuWiki fails to load, because it can't find the Doku_Handler class used in the handle() method of Syntax.php. Error:
PHP Fatal error: Could not check compatibility between dokuwiki\\plugin\\\\meta\\Syntax::handle($match, $state, $position, dokuwiki\\plugin\\\\meta\\Doku_Handler $handler): array and dokuwiki\\Extension\\SyntaxPlugin::handle($match, $state, $pos, Doku_Handler $handler), because class dokuwiki\\plugin\\\\meta\\Doku_Handler is not available in /var/www/html/lib/plugins//meta/Syntax.php on line 66
Is there a way to sensibly have the base class reference the Doku_Handler class so it can be found? Should I be loading the base class a different way in the syntax classes?
Thanks,
Iain.
[Less]
|