Hi Friends,
My CRM was working fine on my server and when I try to configure on my local machine for some experiment. Everything is working fine except when I go to the studio. It shows various notices. Can you please tell me why it is happening. Thanks
Try one of the following:
- Edit php.ini (the location and the way you can modify it depends on you system)
search for error_reporting and change it to:
error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_WARNING
or
- Edit index.php (in the SuiteCRM main folder)
Add the following line after the first line of code:
error_reporting(0);
or
- Edit index.php (in the SuiteCRM main folder)
Add the following line after the first line of code:
ini_set(‘error_reporting’, E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_WARNING);