Open coastgnu opened 8 years ago
I don't recognize this issue. Do you still get this error if you disable the data plugin or the datatable plugin temporary? Or why do you know that these plugins conflict in some way?
The error is thrown at https://github.com/splitbrain/dokuwiki/blob/master/inc/plugin.php#L298
syntax_plugin_data_table is old constructor and is recently renamed. https://github.com/splitbrain/dokuwiki-plugin-data/commit/1971ed3ef529580ee28b7566ca5aeb48b54ffd67
Is it somewhere cached? Can you resave you configuration in the Config manager? That expires caches of DokuWiki itself.
I just guessed? hrrmmph, I suspect I'm totally mistaken here...
data_table
is not datatables
, stupid me
Wer lesen kann ist klar im Vorteil.
pardon me, thomas
I put an disabled
file to plugins/datatemplate/
and voila the whitescreen is gone.
Puhh, ich kann doch lesen... Oder ein Fall von "Blindes Huhn..."
a grep for syntax_plugin_data_table
shows:
plugins/datatemplate/syntax/list.php:class syntax_plugin_datatemplate_list extends syntax_plugin_data_table {
Line 26
In the constructor the old constructor name is used, this one should be renamed as well.
https://github.com/ccl/dokuwiki-plugin-datatemplate/blob/master/syntax/list.php#L33
Old: parent::syntax_plugin_data_table();
New: parent::__construct();
Conflict with data plugin version 2016-03-11?
Hi Joseph,
After updating the dokuwiki data plugin I got a white screen. The only relevant error log I got was the following.
apache2/error.log
Could this be due to a conflict between data plugin and your datatables plugun?
regards, thomas
see also: https://github.com/splitbrain/dokuwiki-plugin-data/issues/194