Adding dashlets does not work

Hello everyone
I encounter a problem of personalization homepage :
When I click on the button “Add Dashlet” pop modules opens, but when I click on one of the modules, nothing happens
Thank you for your help

Hi dpccrt87,

I’d advice to use Firefox and install Firebug:
https://addons.mozilla.org/en-US/firefox/addon/firebug

Open Firebug by clicking on the bug and then open the console, open SuiteCRM and add a dashlet, see if any errors are displayed.

My guess is that your PHP configuration gives warnings due to the fact that the PHP code is not “strict”. You might want to check php.ini which you can find in one of the following locations depending on your OS/Distribution:


/etc/php.ini
/usr/local/etc/php.ini
/etc/php5/apache2/php.ini and etc/php5/cli/php.ini

Please lookup the line “error_reporting” and change it to:


error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT

Afterwards restart Apache with:


apachectl restart