Reputation: 245
I'm having a hard time figuring out why I wasn't able to create a new field on the module builder of Sugar CRM CE.
I thought it could be a file permissions issue, but after many forum posts and user guides from the SugarCRM community, I have not yet resolve my issue.
To give a background on the issue, here are steps I've taken:
Hope you guys can help me with this problem. Thank you.
Upvotes: 1
Views: 763
Reputation: 2148
When I previously encountered this, I worked with Sugar support to establish the cause of the problem.
We were able to narrow it down to opcache by disabling opcache, which worked. However, after some investigation, we came to the conclusion that it was the particular setting opcache.revalidate_freq.
By setting this to 0 (to check for changes on every request), we were able to work with opcache. While this wasn't ideal, this was the Sugar recommended solution to the problem. Also, it allowed us to continue using most of the benefits of opcache.
So you can resolve this by adding the following line to php.ini and restart apache:
opcache.revalidate_freq = 0
Upvotes: 6