Uploaded image for project: 'Blesta Core'
  1. Blesta Core
  2. CORE-5728

Saving the layout under Look and Feel can cause an error on client dashboard

    Details

    • Type: Bug
    • Status: Closed
    • Priority: Blocker
    • Resolution: Fixed
    • Affects Version/s: 5.13.2
    • Fix Version/s: 5.13.3
    • Component/s: Client Interface
    • Labels:
      None

      Description

      To reproduce on 5.13.2

      • Resave Layout under Look and Feel settings
      • Access client dashboard, notice widgets do not load.

      Temporary solution:

      On line 164 replace:

                  $cards_order = base64_encode(json_encode($cards_order));
      

      with

                  $cards_order = base64_encode(serialize($cards_order));
      

      On line 183 replace:

                  $widgets_order = base64_encode(json_encode($widgets_order));
      

      with

                  $widgets_order = base64_encode(serialize($widgets_order));
      

      THEN: RESAVE Layout under Look and Feel settings

      This may require a different long term fix. Users ideally shouldn't have to re-save the settings after upgrading.

        Activity

          People

          • Assignee:
            jonathan Jonathan Reissmueller
            Reporter:
            admin Paul Phillips
          • Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved:
              Fix Release Date:
              31/Jan/26