Errors on homepage after installation

Hey Guys,

I just installed suiteCRM via softacalous in Cpanel, and I got these errors on the homepage. Any ideas?

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

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

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

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

Strict Standards: Declaration of SugarFeedDashlet::process() should be compatible with DashletGeneric::process($lvsParams = Array, $id = NULL) in /home/arccrmco/public_html/modules/SugarFeed/Dashlets/SugarFeedDashlet/SugarFeedDashlet.php on line 607

I am also getting this. PHP 5.4 SuiteCRM 7.7.6

Hi,

It sounds to me like PHP is simply displaying everything, (e.g: Strict Standards messages/Warnings/etc…)
If you would like to, these can simply be hidden, which won’t cause any issues in the CRM.

I’m not certain what level of access you’d have via a Softacalous install, but I would recommend, if possible, doing the following:

Edit the index.php file for SuiteCRM, and enter the following:

ini_set(display_errors,0);

Then save changes, refresh browser cache, check to see if you can still see these messages.

If you do this, do you still see these messages?

Hi, i installed version 7.8.1 and got those errors, so i modified the following php files, adding :

ini_set(display_errors,0);
error_reporting(E_ALL ^ E_STRICT);

Files:

/public_html/SuiteCRM/index.php
/public_html/SuiteCRM/modules/Home/index.php
/public_html/SuiteCRM/modules/Calls/Dashlets/MyCallsDashlet/MyCallsDashlet.php

Maybe it helps for you.

1 Like

Thank’s, it works.

ya after this text i am receiving the same message

where exactly I should add them in the file

I fixed this by adding this to my .HTACCESS file.

#DISABLE STRICT ERRORS IN SUITECRM
php_flag display_errors off