Workflow blank - Printable Version +- CoreBOSBB (https://discussions.corebos.org) +-- Forum: Support (https://discussions.corebos.org/forumdisplay.php?fid=17) +--- Forum: Administrator Support (https://discussions.corebos.org/forumdisplay.php?fid=8) +--- Thread: Workflow blank (/showthread.php?tid=1732) |
Workflow blank - phongkni - 03-12-2020 Please help me, after I update the latest revision, when I open the Workflow module it is blank. How to fix this problem. Thanks. RE: Workflow blank - joebordes - 03-12-2020 first make sure you clear the service worker cache then look in your apache error log and share the error that you are getting there RE: Workflow blank - phongkni - 03-12-2020 (03-12-2020, 08:12 AM)joebordes Wrote: first make sure you clear the service worker cache I have found the problem. With February 19, 2020 update: fix (Workflow: export) eliminates warning ** modules/com_vtiger_workflow/com_vtiger_workflow.php line of code: $filters = isset(($_REQUEST['filters'])) ? vtlib_purify($_REQUEST['filters']) : ''; I replaced it with the old code: $filters = vtlib_purify($_REQUEST['filters']); It worked Please review the updated code on February 19, 2020 with any wrong parameters? Thanks. RE: Workflow blank - joebordes - 03-12-2020 well, that is odd. What version of PHP are you running? I eliminated the redundant parenthesis: https://github.com/tsolucio/corebos/commit/a2d727f4812dd7a2e1529e8d26dcdba6c3e0fec2 can you please try like that to see if that is the issue. Also, as a blank page, that means that PHP is giving you an error, can you see that error in the apache log. set error_reporting(-1) in config.inc.php to see the error RE: Workflow blank - joebordes - 04-06-2020 How did this end up? Did you get it working? |