Upgrading SupportPal

Contents

Licensing Requirements

Monthly Licenses

There are no restrictions on monthly licenses.

Owned Licenses

A license with a valid support and updates subscription is required to upgrade SupportPal.

Please check your support and updates subscription carefully before upgrading or use one of the built-in methods which will perform these checks for you automatically.


Version Scheme

SupportPal follows semantic versioning. You can usually painlessly upgrade to minor or patch versions as all changes are fully backwards compatible. For example, 3.0.0 to 3.1.0 or 3.0.0 to 3.0.1.

Upgrading between major versions, for example, 2.0 to 3.0, requires more care as breaking changes are introduced. These changes are documented in the relevant upgrade guide, which we strongly encourage you to read beforehand:


Upgrade Methods

Docker

If SupportPal is deployed using Docker (Monolithic), you can upgrade SupportPal with the following steps:

  1. Browse to the location of your deployment directory (where your docker-compose.yml files are).
  2. Run our upgrade script:
                bash <(curl -LsS https://raw.githubusercontent.com/supportpal/helpdesk-install/master/templates/docker-monolithic/upgrade.sh)
            

Upgrade via the operator panel

From v3.6.0, it's possible to painlessly upgrade via the System Update page in the operator panel.

Upgrade via CLI

From v3.6.0, if you're comfortable using the command line, you can upgrade using the app:update command directly. This enables you to make use of the command options, such as --no-backup which will improve the speed of the command. Learn more.

Manually upgrading

Upgrading your help desk between minor (or patch) versions is as simple as replacing the files and following our upgrader. Please follow the following steps:

  1. Take a backup to keep your data safe.
  2. Go to our downloads area and download the latest SupportPal version (you’ll need to log in).
  3. Upload the zip file to your server. Avoid uploading individual files, as this can cause issues.
  4. Move the zip file to your SupportPal installation directory and unzip it. Do not delete any files; simply unzip and when prompted about overwriting existing files, select "Yes".
    For example, on Linux:
    mv ~/supportpal.zip /var/www/supportpal && unzip -o /var/www/supportpal/supportpal.zip
  5. You can run the upgrader using either:
    • Web Browser: Go to the operator panel to start the upgrade.
    • Command Line: Open a command prompt, navigate to your SupportPal installation directory (e.g., cd /var/www/supportpal), and enter:
      php artisan app:upgrade
      To see more options for this command, enter:
      php artisan help app:upgrade
  6. Follow the instructions provided by the upgrader.
  7. Make sure all file permissions are correct and the same as before.
  8. Remember to clear your cache or do a hard refresh (Ctrl + R on Windows) when accessing the operator panel after completing the upgrade.
  9. If you've modified any template or language files, please ensure to check over the resource changes in the release notes and update your resources accordingly. More details on making this an easier process with version control can be found in our Templates guide.
  10. Enjoy the new version.