致命错误:在class.pmScript.php(208)调用未定义的excuteQuery()进程生成器

Error Appear

Hi,

Can someone help/guide me on error appear. The error is undefined excuteQuery() function however i didn't found any script call undefined excuteQuery().

p/s : error appear when i did the next process.

class.pmScript.php

Fatal error: Call to undefined function excuteQuery() in /opt/processmaker/workflow/engine/classes/class.pmScript.php(208) : eval()'d code on line 4

Detail

ProcessMaker Version : ProcessMaker 2.8 Community

Operating System : RHEL 6

Database : MySQL

I think the problem is with the function.

Its executeQuery and not excuteQuery. You are missing an "e".

Hope this helps.

use below code to check either you have permission to execute queries or not.

$query = "SELECT USR_UID FROM USERS";
$result = executeQuery($query);
print_r($result);