CRITICAL Error: Unable to serialize value When I upgraded the Magento on the checkout page and that was “report.CRITICAL: Unable to serialize value. Error: Malformed UTF-8 characters, possible incorrectly encoded.” Please follow below step: 1) Create registration.php file at Path :- app/code/Dolphin/Serializer
|
<?php \Magento\Framework\Component\ComponentRegistrar::register( \Magento\Framework\Component\ComponentRegistrar::MODULE, 'Dolphin_Serializer', __DIR__ ); |
2) Create module.xml file at Path :- app/code/Dolphin/Serializer/etc
|
<?xml version="1.0" ?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> <module name="Dolphin_Serializer" setup_version="1.0.0"> <sequence> <module name="Magento_Framework"/> </sequence> </module> </config> |
3) Create di.xml…