In order to use Corrensa – you will need to make sure that the error_reporting level is set properly. Error reporting is set in VTiger configuration file, which can be found in
/path/to/your/vtigercrm/config.inc.php
Once you open the file, at the very top – might see
ini_set('display_errors',....)
OR
error_reporting(....)
If you do – comment it out by add // in front and that will remove the current error reporting level.
Next, you will need to add the code, which will set the proper error reporting level. Code to add:
error_reporting(E_WARNING & ~E_NOTICE & ~E_DEPRECATED & E_ERROR) ; error_reporting(E_WARNING & ~E_NOTICE & ~E_DEPRECATED & E_ERROR & ~E_STRICT); // PRODUCTION
Save the configuration and file and you should be all set.
If you run into any issues or have questions – feel free to contact us.