Campaign error

Hello

I want to set the start and end dates but they do not appear to me …

I get the following error

Notice: Undefined index: CampaignTrackers in C:\xampp\htdocs\SuiteCRM-7.7.9\include\SearchForm\SearchForm2.php on line 129

Notice: Undefined index: EmailMarketing in C:\xampp\htdocs\SuiteCRM-7.7.9\include\SearchForm\SearchForm2.php on line 129

Notice: Undefined index: START_DATE in C:\xampp\htdocs\SuiteCRM-7.7.9\include\InlineEditing\InlineEditing.php on line 360

Notice: Undefined index: link in C:\xampp\htdocs\SuiteCRM-7.7.9\include\InlineEditing\InlineEditing.php on line 395

Could you help me

I’m using
SuiteCRM-7.7.9,
Windows 10,
PHP Version 5.6.28,
Apache/2.4.23

thanks

Hi,

As these are just notices you can hide them in your php.ini and then restart your service. This should allow it to work.

Kind Regards
Cameron

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);