Error when import Opportunity (NOTICE: [8] Accessing static property ImportFieldSanitize::$createdBeans as non static)

Hi Admin,
When I import on Opportunity module, error appear as below

Then I also do: Admin -> Repair -> Quick Repair and Rebuild. But still

Please help me!

I am not sure but I believe that you will solve this issue if yoiu change the setting of the PHP error_reporting configuration variable.

There are two ways to do it:

  1. Edit php.ini (the location and the way you can modify it depends on you system)
    change it to:
    error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT

  2. Edit index.php (in the SuiteCRM main folder)
    Add the following line after the first line which should be: <?php
    error_reporting(0);
    Alternatively you could add the following line instead:
    ini_set(‘error_reporting’, E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT);

thank fot feeback.
I has do it, but still error…:frowning: