Hi,
I've just updated to ver 6.2.5 and got this error while running 'Planning':
Error on finalizeMessageDisplay('planResultDiv') :
Destination or is not a node or not a widget
or lastOperation or lastOperationStatus is not a node
Fatal error: Class '' not found in C:xampphtdocsmodelpersistenceSqlElement.php on line 4833
Contact your administrator.
(detailed error is reported in log file)
Can you help me to fix it please!
p/s: i tried to see log file and get this: Maybe allow_url_fopen is Off in php.ini... And i checked php.ini: allow_url_fopen is On
p/s: i've just back to 6.2.4, its ok.
Hi,
It seems you have in table planningelement some lines where refType is empty.
Try and execute (in phpMyAdmin for instance):
select * from planningelement where refType is null;
This should return no line.
If it does, post result here.
As a workaround, you can also apply the fix that we'll include in V6.3.
In /model/persistence/SqlElement.php, replace line 4833 from
$testObj=new $testClass($this->refId,true);
to
if ($testClass and SqlElement::class_exists($testClass)) $testObj=new $testClass($this->refId,true);