Getting the following errors thrown by SuiteCRM v8.8.0 (using Apache v2.4.62 (Debian) and PHP v8.2.28) when trying to add a new to the system directly under the top menu:
**Deprecated** : base64_decode(): Passing null to parameter #1 ($string) of type string is deprecated in **/##/html/public/legacy/modules/Emails/EmailUI.php** on line **1088**
**Deprecated** : base64_decode(): Passing null to parameter #1 ($string) of type string is deprecated in **/##/html/public/legacy/modules/Emails/EmailUI.php** on line **1088**
**Deprecated** : base64_decode(): Passing null to parameter #1 ($string) of type string is deprecated in **/##/html/public/legacy/modules/Emails/EmailUI.php** on line **1088**
**Deprecated** : base64_decode(): Passing null to parameter #1 ($string) of type string is deprecated in **/##/html/public/legacy/modules/Emails/EmailUI.php** on line **1315**
including under the “Users Create” headline I get the following:
Deprecated: Using unregistered function "strval" in a template is deprecated and will be removed in a future release. Use Smarty::registerPlugin to explicitly register a custom modifier. in /##/html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatecompilerbase.php on line 663
Deprecated: Using unregistered function "strval" in a template is deprecated and will be removed in a future release. Use Smarty::registerPlugin to explicitly register a custom modifier. in /##/html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatecompilerbase.php on line 663
Deprecated: Using unregistered function "strval" in a template is deprecated and will be removed in a future release. Use Smarty::registerPlugin to explicitly register a custom modifier. in /##/html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatecompilerbase.php on line 663
Yes, creating the records works, but clearly there are a few deprecated error messages coming up little bit everywhere. For now I’ve hushed them. So the posting was more fyi that it would be nice to get ride of these in error message in the long run.
Php.ini already had the settings and changed the log level in SuiteCRM, but still gets when click to view a user account record:
Deprecated: Using unregistered function "count" in a template is deprecated and will be removed in a future release. Use Smarty::registerPlugin to explicitly register a custom modifier. in /home/##/html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatecompilerbase.php on line 663
Deprecated: Using unregistered function "strpos" in a template is deprecated and will be removed in a future release. Use Smarty::registerPlugin to explicitly register a custom modifier. in /home/##/html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatecompilerbase.php on line 663
Once performing Quick Repair and Rebuild the error message disappeared.
I agree that deprecation warnings aren’t errors in the sense that they don’t stop the application from running, and they do serve as helpful heads-up for developers about upcoming changes.
That said, I’d add that deprecations are a bit more urgent than just notes for future developers. They often signal potential issues that could become errors when the deprecated feature is removed in a future release (e.g., in a new PHP or library version). Plus, in some cases—like with SuiteCRM or other web apps—these warnings can show up in the browser, which might confuse users or make the app look less polished. Addressing them promptly helps avoid technical debt, ensures compatibility, and keeps the user experience smooth.
Fixing these now not only silences the warnings but also prevents bigger headaches later. It’s definitely worth striving to tackle them as part of regular maintenance, even if they’re not critical errors.