i cant install suitecrm cuz this message

Warning: “continue” targeting switch is equivalent to “break”. Did you mean to use “continue 2”? in C:\xampp\htdocs\omar\SuiteCRM-7.11.5\data\SugarBean.php on line 2551

Warning: “continue” targeting switch is equivalent to “break”. Did you mean to use “continue 2”? in C:\xampp\htdocs\omar\SuiteCRM-7.11.5\data\SugarBean.php on line 2565

Hi, welcome.

XAMPP never works well until you turn off display_errors in your php.ini and restart the web server.

Those errors in themselves are not important, you just need to convince XAMPP not to mess up the code because of them.

The correct place to list errors is in your logs, not on-screen.

open index.php and write these 2 lines where php code starts

ini_set(‘display_errors’,0);
error_reporting(0);

@ashsh

Putting it in index.php won’t be upgrade-safe (even though index.php doesn’t get changed often…)

Isn’t it better to make the change in php.ini? Why not?

It was just to install Suite first, after it it needs to change at php.ini of course. It needs to setup on server.