
Originally Posted by
timritchie
I have been having a problem with Dashboard reports using SugarCRM CE Version 5.2.0k (Build 5837). I have several opportunities created under a user account (in a variety of sales stages), but the Report | Dashboard reports all display an error: No Displayable Data.
I had a consultant look at the problem and they fixed it, but the charts would only show up when logged into the Admin account, not the user account that created the Opportunities. When logged into the user account, I continued to get the same error. There is data that should show using the reporting parameters I set.
In an attempt to fix this, I used the Admin | Repair function to clear the chart data cache, rebuild relationships, and rebuild Sugar Dashlets. Now the reporting doesn't work for either the Admin or user account.
The Cache directory permissions are set to 777 and the XML permissions set to 775.
HELP!
Change the default_permissions in the config.php
This change
PHP Code:
...
'default_permissions' =>
array (
'dir_mode' => 1528,
'file_mode' => 432,
'user' => '',
'group' => '',
),
...
To this
PHP Code:
...
'default_permissions' =>
array (
'dir_mode' => 1533,
'file_mode' => 436,
'user' => '',
'group' => '',
),
...
And then clear XML directory.
Bookmarks