Forum

Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.

Error: not found in...
 
Notifications
Clear all

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

2 Posts
2 Users
0 Reactions
4,445 Views
(@vanlele)
Posts: 10
Active Member
Topic starter
 
[#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.


 
Posted : 27 Jun 2017 12H51
(@babynus)
Posts: 14952
Member 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);

 
Posted : 28 Jun 2017 12H30
Share:

Scroll to Top