Hi, I'm having the same problem
I'm using php 5.3.1
sugarcrm 5.5
I get the following error in the php log file:
PHP Fatal error: Call to undefined method SugarWidgetFieldVarchar::SugarWidgetFieldVarchar() in /html/sugar/include/generic/SugarWidgets/SugarWidgetFieldname.php on line 48
When I take a look at the file SugarWidgetFieldname.php on line 48 I see the method call that the error is referring to:
PHP Code:
parent::SugarWidgetFieldVarchar($layout_manager);
in the beginning of this same file there is this include where I presume the problematic method is defined.
PHP Code:
require_once('include/generic/SugarWidgets/SugarWidgetFieldvarchar.php');
Then when I take a look at SugarWidgetFieldvarchar.php (where the method should be located) the only thing I see is the class:
PHP Code:
class SugarWidgetFieldVarchar extends SugarWidgetReportField
I had to downgrade to php 5.2.11 and now the Edit Sugar Dashlet is working again. I believe it was due to the ereg function being deprecated in php 5.3 as it was giving me error messages also.
Bookmarks