Reputation: 67
These errors happen while I am installing sugarcrm. After finishing installing, its index.php has the same kind of error. How can I fix it ?
Upvotes: 2
Views: 93
Reputation: 11
In index.php
add following code (after starting tag of PHP)
error_reporting(0);
And Delete cache
files.
Upvotes: 1
Reputation:
set display_errors = 0;
Determines if the errors will be printed on the webpage as part of the output or if they will remain hidden.
Upvotes: 5