Upgrade to 2021.07 FP2

When upgrading from July Release :
  • run the installer:
  • update the required webapps.

Optional:  You can always choose to update the Demo application by leaving the Demo_Application check box on. This will reset the standard demo environment with our latest features examples.

Optional:  In most cases , when doing an upgrade , you do not need to include the 'Install Apliqo Server' item (only if a new version of Tomcat has been released and you need to upgrade your current version).

Update the settings.json file located in the WEB-INF/config folder file in order to define the allowed file types that can be uploaded to the application: 

"upload": {       

          "allowedExtensions": [     

           "jpeg",

           "jpg",

           "png",

           "pdf",

           "xlsx",

           "xls" 

                               ]}    

AFTER CONTENTSTORE UPGRADE: update allowedRestPaths property

After upgrading to UX 2021.07 FP2 version it will be necessary to update the allowedRestPaths property under settings.json for each web application - located under WEB-INF\Config.

"allowedRestPaths": [
    {
      "path": "/ExecuteProcessWithReturn",
      "method": "POST"
    },
    {
      "path": "/Users.*",
      "method": "PATCH"
    },
    {
      "path": "/Cubes(.*)",
      "method": "GET"
    },
    {
      "path": "/Cubes(.*)",
      "method": "POST"
    },
    {
      "path": "/Cubes(.*)",
      "method": "PATCH"
    },
    {
      "path": "/Cubes(.*)",
      "method": "DELETE"
    },
    {
      "path": "/Dimensions(.*)",
      "method": "POST"
    },
    {
      "path": "/Dimensions(.*)",
      "method": "PATCH"
    },
    {
      "path": "/Dimensions(.*)",
      "method": "DELETE"
    },
    {
      "path": "/Cellsets(.*)",
      "method": "POST"
    },
    {
      "path": "/Cellsets(.*)",
      "method": "DELETE"
    },
    {
      "path": "/\\$metadata.*",
      "method": "GET"
    },
    {
      "path": "/Threads.*",
      "method": "GET"
    },
    {
      "path": "/Threads.*",
      "method": "PATCH"
    },
    {
      "path": "/Threads(.*)",
      "method": "POST"
    }
  ]
Click to copy

0 Comments

Add your comment

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.