How can I debug my Vtiger?
Tracy library is a useful helper for everyday PHP programmers. It helps you to:quickly detect and correct errors log errors dump variables measure execution time and memory consumptionImplementationDownload Tracy latest version from https://github.com/nette/tracy/releases Open .zip file and copy tracy to your FTP folder include Edit file libraries/HTTP_Session/Session.php Replace function: function start($name = 'SessionID', $id = null) from:function start($name = 'SessionID', $id = null) { HTTP_Session::name($name); if ($id) { HTTP_Session::id($id); } elseif (is_null(HTTP_Session::detectID())) { HTTP_Session::id($id ? $id : uniqid(dechex(rand()))); ...