PROBLEMAS DE INSTALACION

Buenas tardes

Warning: Declaration of MyCallsDashlet::process($lvsParams = Array) should be compatible with DashletGeneric::process($lvsParams = Array, $id = NULL) in /srv/users/serverpilot/apps/crm/public/modules/Calls/Dashlets/MyCallsDashlet/MyCallsDashlet.php on line 47

Warning: Declaration of MyMeetingsDashlet::process($lvsParams = Array) should be compatible with DashletGeneric::process($lvsParams = Array, $id = NULL) in /srv/users/serverpilot/apps/crm/public/modules/Meetings/Dashlets/MyMeetingsDashlet/MyMeetingsDashlet.php on line 209

Warning: Declaration of MyOpportunitiesDashlet::process($lvsParams = Array) should be compatible with DashletGeneric::process($lvsParams = Array, $id = NULL) in /srv/users/serverpilot/apps/crm/public/modules/Opportunities/Dashlets/MyOpportunitiesDashlet/MyOpportunitiesDashlet.php on line 90

Warning: Declaration of MyAccountsDashlet::process($lvsParams = Array) should be compatible with DashletGeneric::process($lvsParams = Array, $id = NULL) in /srv/users/serverpilot/apps/crm/public/modules/Accounts/Dashlets/MyAccountsDashlet/MyAccountsDashlet.php on line 101

Warning: Declaration of SugarFeedDashlet::process($lvsParams = Array) should be compatible with DashletGeneric::process($lvsParams = Array, $id = NULL) in /srv/users/serverpilot/apps/crm/public/modules/SugarFeed/Dashlets/SugarFeedDashlet/SugarFeedDashlet.php on line 607

Gracias, agradezco si tienen alguna razón.

This is a known issue, it’s still waiting for a fix…

Try turning off E_STRICT errors in your php.ini (use Google to find out how this is done).

If it doesn’t work, you can change each of those lines like this:

where it says
process($lvsParams = Array)

change it to
process($lvsParams = Array, $id=NULL)

this isn’t upgrade safe, after any future upgrades you might have to reapply the fix…

Yo encontré la solución realizando lo que sugiere cada linea, que es ir a cada archivo que se encuentra ubicado en la ruta que el muestra de cada warning y reemplacé la linea del codigo que dice:

function process($lvsParams = array()) {

por

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

Solo es buscar la funcion en cada uno de los cinco archivos. Espero haber sido de ayuda