after upgrading from sugarcrm 6.5.16 to suite crm Add tab and Add Dashlet is not working

Add Tab and Add Dashlet is not working…
while clicking on that no action is performed

Hi there,

Have you performed a Quick Repair & Rebuild in Admin -> Repair? What are your permissions set to?

Thanks,

Will.

hi Will,

I have performed the repair and rebuild option.

But in that i didn’t perform the following;

  • Remove missed files from upload directory
  • Remove XSS
  • Rebuild Schedulers

Should i this too…

If you are using PHP 5.4 there is a warning message that will prevent you from adding a dashlet to your home screen.

Look in /custom/include/MySugar/MySugar.php around line 135.

Look for this line:

array_unshift($pages[$_SESSION['current_tab']]['columns'][0]['dashlets'], $guid);

Add this peice of code above it:

 if (!is_array($pages[$_SESSION['current_tab']]['columns'][0]['dashlets'])) {
                        $pages[$_SESSION['current_tab']]['columns'][0]['dashlets'] = array();
                }

I also find that when you add a tab it wont appear until you refresh the page.