Forum

Error: not found in...
 
Notifications
Retirer tout

Error: not found in C:xampphtdocsmodelpersistenceSqlElement.php on line 48

2 Posts
2 Utilisateurs
0 Reactions
4,444 Vu
(@vanlele)
Posts: 10
Active Member
Début du sujet
 
[#4458]

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.


 
Posté : 27 Juin PM 12:066
(@babynus)
Posts: 14952
Membre Admin
 

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);

 
Posté : 28 Juin PM 12:066
Share:
Retour en haut