You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 10, 2019. It is now read-only.
I can't reproduce it but it's most likely that I can't guess right combination :)
But I see that PhpMath class isn't used by Zend when bcmath extension is enabled, so enabling bcmath in php could maybe solve the problem?
I can replicate with a new install of CE 1.9.3.x with Inchoo_PHP7 2.2.0 on PHP 7.1.13:
admin > CMS > Pages > Edit Page 'Home page' >click Save button > Warning: A non-numeric value encountered in .../lib/Zend/Locale/Math/PhpMath.php on line 94
To fix this, I edited lib/Zend/Locale/Math/PhpMath.php
// at line 92, insert the following
if (empty($op2)) {
$op2 = 0;
}
This is with Magneto EE 1.14.3.6 running PHP 7.1 with Inchoo PHP 7 module installed - creating a new CMS page in Magento.
The text was updated successfully, but these errors were encountered: