upgraded from 7.8.2 to 7.8.3 but I read some errors around

Hi, with php 5.6 I upgraded from suitecrm 7.8.2 to 7.8.3 and it was looking to be all right, but after around 10 days I discover these errors around:

DASHBOARD

SUITECRM/index.php?module=Home&action=index
Strict Standards: Declaration of SugarFeedDashlet::process() should be compatible with DashletGeneric::process($lvsParams = Array, $id = NULL) in /SUITECRM/modules/SugarFeed/Dashlets/SugarFeedDashlet/SugarFeedDashlet.php on line 45

Strict Standards: Declaration of MyMeetingsDashlet::process() should be compatible with DashletGeneric::process($lvsParams = Array, $id = NULL) in /SUITECRM/modules/Meetings/Dashlets/MyMeetingsDashlet/MyMeetingsDashlet.php on line 0

Strict Standards: Declaration of MyOpportunitiesDashlet::process() should be compatible with DashletGeneric::process($lvsParams = Array, $id = NULL) in /SUITECRM/modules/Opportunities/Dashlets/MyOpportunitiesDashlet/MyOpportunitiesDashlet.php on line 0

Strict Standards: Declaration of MyCallsDashlet::process() should be compatible with DashletGeneric::process($lvsParams = Array, $id = NULL) in /SUITECRM/modules/Calls/Dashlets/MyCallsDashlet/MyCallsDashlet.php on line 0

Strict Standards: Declaration of MyAccountsDashlet::process() should be compatible with DashletGeneric::process($lvsParams = Array, $id = NULL) in /SUITECRM/modules/Accounts/Dashlets/MyAccountsDashlet/MyAccountsDashlet.php on line 0

ACCOUNT

https://SUITECRM/index.php?action=ajaxui#ajaxUILoc=index.php%3Fmodule%3DAccounts%26offset%3D61%26stamp%3D1496932258053471400%26return_module%3DAccounts%26action%3DDetailView%26record%3D56838900-e5df-f760-346d-58dcfeb28bd9
Notice: Undefined index: LBL_UPDATE_TEXT in /SUITECRM/modules/AOP_Case_Updates/Case_Updates.php on line 350

Notice: Undefined index: LBL_INTERNAL in /SUITECRM/modules/AOP_Case_Updates/Case_Updates.php on line 353

EMAIL

https://SUITECRM/index.php?action=ajaxui#ajaxUILoc=index.php%3Fmodule%3DAccounts%26offset%3D61%26stamp%3D1496932258053471400%26return_module%3DAccounts%26action%3DDetailView%26record%3D56838900-e5df-f760-346d-58dcfeb28bd9
Notice: Array to string conversion in /SUITECRM/modules/Emails/EmailUI.php on line 449

Is it normal? are htye creating problems to the functionality of SUITECRM?

About the dashlets errors, it’s a known issue with some versions of PHP.

github.com/salesagility/SuiteCRM/issues/942

While it’s not fixed, you can tweak the code to make it run. Go into each of the files with the error and find a line that looks like this:

function process($lvsParams = array()) {

and change it into this

function process($lvsParams = array(), $id=NULL) {

these changes won’t be upgrade-safe, meaning when you do an upgrade there is a small chance that you might have to reapply them.

I don’t know about the other errors, do you see any functionality breaking?

I just changed php from 5.6 to 7.0 and now it looks to be all right, is that possible?

Sure, these are just warnings and different versions of PHP can be more or less sensitive to these issues. It also varies with php.ini settings.