Skip to content

How to upgrade EspoCRM

Upgrade from CLI

As of v5.6.

This is the most preferable way to upgrade.

Command to run:

php command.php upgrade

This will check the next available version, download it and install. Once the upgrade is complete, it will prompt to run the command again, if a newer version is available.

Note

Upgrading process may take a while. Do not close the terminal until it's finished.

Note

If the next Espo version requires a higher PHP version, upgrade won't be processed, a message will be displayed.

It's recommended to upgrade whenever the new version is out with the possible exception for new minor or major releases (the last number is zero) as they are more likely to have bugs. If you skip a few minor versions before upgrading, it's more likely that the upgrade will run unsmoothly.

Recommendations

  1. Make a backup before upgrading.
  2. If the next Espo version requires a higher PHP version, upgrade your PHP (with all extensions). The PHP version you are upgrading to must be supported by your current Espo (usually you make a +2 minor version steps). After that, make sure your Espo is working, cron is running. Make sure that the new PHP version is applied to the CLI (command php -v) and to the web server (at Administration > System Requirements > PHP Version).
  3. Make sure you have enough free disk space on the server.
  4. Disable cron before upgrading (at Administration > Settings). Enable it back after upgrade is finished. This will prevent situations when a job started on the previous version and finished on the new version. In most cases this won't cause any issues though. The most significant problem it can cause is the job not being finished.
  5. Enable Maintenance Mode before upgrading (at Administration > Settings). Disable after upgrade is finished. This will prevent non-admin users accessing the application before you started upgrading.
  6. opcache.enable_cli parameter in PHP should be set to false (usually set to false by default).

It's recommended to run upgrade either under the webserver user (usually www-data) or root user.

Additional parameters

Available parameters (only for advanced users):

  • -y − run w/o user confirmation;
  • -s − run an upgrade in a single process;
  • --file="EspoCRM-upgrade.zip" − install a specific upgrade package (path to file).

Example of using parameters:

php command.php upgrade -y --file="EspoCRM-upgrade.zip"

Legacy way to upgrade

Warning

For EspoCRM versions lower than 5.6.0. Not recommended for versions greater than 5.6.0.

Execute the following command from the EspoCRM root directory:

php upgrade.php /path/to/upgrade/package.zip

Upgrade from UI

Warning

This is not recommended way to upgrade. It may cause problems as the upgrade will be processed in a single web server process.

Step 1. Check your current version

To check your current version, go to Administration > Upgrade page.

Step 2. Download needed upgrade packages

Go to the download upgrade page and download needed packages (based on your current version).

Step 3. Run upgrade from Administration panel

Go to Administration > Upgrade. Upload and install upgrade packages one by one.

See also