Magento 2.2.2, Unable to unserialize value, magento_umask and edting Json.php did not helpMagento 2.2: Unable to unserialize value?Magento 2.2: Unable to unserialize value?Magento 2.2 error: Unable to unserialize valueMagento 2 Unable to unserialize valueMagento 2.2: Unable to unserialize valueUnable to unserialize value - when adding to website magento 2.2Error on image upload with REST apiUnable to unserialize value Braintree magento 2.2.4Magento 2.2.4 Unable to unserialize the valueFailure reason: 'Unable to unserialize value, string is corrupted.' after upgrade magento 2.1.5 to magento 2.2.6Unable to unserialize value error when customer data is not display on editing the details?

PTIJ: Which Dr. Seuss books should one obtain?

Was Ahsoka Tano one of the younglings helping Kenobi find Kamino?

is this saw blade faulty?

Should I be concerned about student access to a test bank?

Have the tides ever turned twice on any open problem?

Reasons for having MCU pin-states default to pull-up/down out of reset

Should a narrator ever describe things based on a characters view instead of fact?

What is this high flying aircraft over Pennsylvania?

What is the difference between something being completely legal and being completely decriminalized?

Boss fired me and is begging for me to come back - how much of a raise is reasonable?

How to understand 「僕は誰より彼女が好きなんだ。」

Why is this tree refusing to shed its dead leaves?

Turning a hard to access nut?

Pre-Employment Background Check With Consent For Future Checks

What is it called when someone votes for an option that's not their first choice?

How can an organ that provides biological immortality be unable to regenerate?

Hot air balloons as primitive bombers

How to balance a monster modification (zombie)?

Magento 2: Make category field required in product form in backend

Was World War I a war of liberals against authoritarians?

Parts of mini page are not placed properly

How are passwords stolen from companies if they only store hashes?

Is it okay for a cleric of life to use spells like Animate Dead and/or Contagion?

Have any astronauts/cosmonauts died in space?



Magento 2.2.2, Unable to unserialize value, magento_umask and edting Json.php did not help


Magento 2.2: Unable to unserialize value?Magento 2.2: Unable to unserialize value?Magento 2.2 error: Unable to unserialize valueMagento 2 Unable to unserialize valueMagento 2.2: Unable to unserialize valueUnable to unserialize value - when adding to website magento 2.2Error on image upload with REST apiUnable to unserialize value Braintree magento 2.2.4Magento 2.2.4 Unable to unserialize the valueFailure reason: 'Unable to unserialize value, string is corrupted.' after upgrade magento 2.1.5 to magento 2.2.6Unable to unserialize value error when customer data is not display on editing the details?













2















After upgrade I'm getting below error in my local :



Exception #0 (InvalidArgumentException): Unable to unserialize value.

#0 myPath/vendor/magento/module-theme/Controller/Result/MessagePlugin.php(157): MagentoFrameworkSerializeSerializerJson->unserialize('[{\"type\":\"su...')


Tried solutions in below link but none of them helped :(



some solutions here










share|improve this question
























  • Magento 2.2.2 has changed serialize into json format. so we need to do those changes manually . we are also faced same issue while upgrade magento 2.1.4 into magento 2.2.1. we have created category and all manually .

    – Pramod Kharade
    Jan 22 '18 at 8:11
















2















After upgrade I'm getting below error in my local :



Exception #0 (InvalidArgumentException): Unable to unserialize value.

#0 myPath/vendor/magento/module-theme/Controller/Result/MessagePlugin.php(157): MagentoFrameworkSerializeSerializerJson->unserialize('[{\"type\":\"su...')


Tried solutions in below link but none of them helped :(



some solutions here










share|improve this question
























  • Magento 2.2.2 has changed serialize into json format. so we need to do those changes manually . we are also faced same issue while upgrade magento 2.1.4 into magento 2.2.1. we have created category and all manually .

    – Pramod Kharade
    Jan 22 '18 at 8:11














2












2








2








After upgrade I'm getting below error in my local :



Exception #0 (InvalidArgumentException): Unable to unserialize value.

#0 myPath/vendor/magento/module-theme/Controller/Result/MessagePlugin.php(157): MagentoFrameworkSerializeSerializerJson->unserialize('[{\"type\":\"su...')


Tried solutions in below link but none of them helped :(



some solutions here










share|improve this question
















After upgrade I'm getting below error in my local :



Exception #0 (InvalidArgumentException): Unable to unserialize value.

#0 myPath/vendor/magento/module-theme/Controller/Result/MessagePlugin.php(157): MagentoFrameworkSerializeSerializerJson->unserialize('[{\"type\":\"su...')


Tried solutions in below link but none of them helped :(



some solutions here







json magento2.2.2 unserialize






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 22 '18 at 7:28







Zinat

















asked Jan 22 '18 at 7:12









ZinatZinat

1,0791132




1,0791132












  • Magento 2.2.2 has changed serialize into json format. so we need to do those changes manually . we are also faced same issue while upgrade magento 2.1.4 into magento 2.2.1. we have created category and all manually .

    – Pramod Kharade
    Jan 22 '18 at 8:11


















  • Magento 2.2.2 has changed serialize into json format. so we need to do those changes manually . we are also faced same issue while upgrade magento 2.1.4 into magento 2.2.1. we have created category and all manually .

    – Pramod Kharade
    Jan 22 '18 at 8:11

















Magento 2.2.2 has changed serialize into json format. so we need to do those changes manually . we are also faced same issue while upgrade magento 2.1.4 into magento 2.2.1. we have created category and all manually .

– Pramod Kharade
Jan 22 '18 at 8:11






Magento 2.2.2 has changed serialize into json format. so we need to do those changes manually . we are also faced same issue while upgrade magento 2.1.4 into magento 2.2.1. we have created category and all manually .

– Pramod Kharade
Jan 22 '18 at 8:11











2 Answers
2






active

oldest

votes


















0














You can try by adding a line in function unserialize of class MagentoFrameworkSerializeSerializerJson.



This does happen when magento send some invalid string to parse or add string with multiple slashes to the string.



Even you can check exact error from this json_last_error() method.



So for now add stripslashes at the very first line of method body.



so your function should look like this:



public function unserialize($string)

$string = stripslashes($string);
$result = json_decode($string, true);
if (json_last_error() !== JSON_ERROR_NONE)
throw new InvalidArgumentException('Unable to unserialize value.');

return $result;






share|improve this answer






























    0














    Perfect Solution available Here:




    Solved: Unserialize Value Magento 2.2.2







    share|improve this answer
























      Your Answer








      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "479"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: false,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: null,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f210386%2fmagento-2-2-2-unable-to-unserialize-value-magento-umask-and-edting-json-php-di%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      You can try by adding a line in function unserialize of class MagentoFrameworkSerializeSerializerJson.



      This does happen when magento send some invalid string to parse or add string with multiple slashes to the string.



      Even you can check exact error from this json_last_error() method.



      So for now add stripslashes at the very first line of method body.



      so your function should look like this:



      public function unserialize($string)

      $string = stripslashes($string);
      $result = json_decode($string, true);
      if (json_last_error() !== JSON_ERROR_NONE)
      throw new InvalidArgumentException('Unable to unserialize value.');

      return $result;






      share|improve this answer



























        0














        You can try by adding a line in function unserialize of class MagentoFrameworkSerializeSerializerJson.



        This does happen when magento send some invalid string to parse or add string with multiple slashes to the string.



        Even you can check exact error from this json_last_error() method.



        So for now add stripslashes at the very first line of method body.



        so your function should look like this:



        public function unserialize($string)

        $string = stripslashes($string);
        $result = json_decode($string, true);
        if (json_last_error() !== JSON_ERROR_NONE)
        throw new InvalidArgumentException('Unable to unserialize value.');

        return $result;






        share|improve this answer

























          0












          0








          0







          You can try by adding a line in function unserialize of class MagentoFrameworkSerializeSerializerJson.



          This does happen when magento send some invalid string to parse or add string with multiple slashes to the string.



          Even you can check exact error from this json_last_error() method.



          So for now add stripslashes at the very first line of method body.



          so your function should look like this:



          public function unserialize($string)

          $string = stripslashes($string);
          $result = json_decode($string, true);
          if (json_last_error() !== JSON_ERROR_NONE)
          throw new InvalidArgumentException('Unable to unserialize value.');

          return $result;






          share|improve this answer













          You can try by adding a line in function unserialize of class MagentoFrameworkSerializeSerializerJson.



          This does happen when magento send some invalid string to parse or add string with multiple slashes to the string.



          Even you can check exact error from this json_last_error() method.



          So for now add stripslashes at the very first line of method body.



          so your function should look like this:



          public function unserialize($string)

          $string = stripslashes($string);
          $result = json_decode($string, true);
          if (json_last_error() !== JSON_ERROR_NONE)
          throw new InvalidArgumentException('Unable to unserialize value.');

          return $result;







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jan 22 '18 at 11:05









          dev_67Commercedev_67Commerce

          662213




          662213























              0














              Perfect Solution available Here:




              Solved: Unserialize Value Magento 2.2.2







              share|improve this answer





























                0














                Perfect Solution available Here:




                Solved: Unserialize Value Magento 2.2.2







                share|improve this answer



























                  0












                  0








                  0







                  Perfect Solution available Here:




                  Solved: Unserialize Value Magento 2.2.2







                  share|improve this answer















                  Perfect Solution available Here:




                  Solved: Unserialize Value Magento 2.2.2








                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited 2 days ago









                  magefms

                  1,801425




                  1,801425










                  answered Feb 28 '18 at 6:26









                  Charvi ParikhCharvi Parikh

                  592615




                  592615



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Magento Stack Exchange!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f210386%2fmagento-2-2-2-unable-to-unserialize-value-magento-umask-and-edting-json-php-di%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Masuk log Menu navigasi

                      16 Maret Daftar isi Peristiwa | Kelahiran | Meninggal | Hari raya dan peringatan | Menu navigasis

                      ジョン・ファウルズ