Overview
This article explains how to upgrade the version of your Concrete CMS site. You have two options to upgrade.
- Upgrade using an FTP client (easy)
- Upgrade via SSH (advanced)
Upgrading via FTP
- View the following link for instructions on how to download Concrete CMS using an FTP client.
- Follow all steps up to extracting the .zip file contents.
- Once extracted, navigate into the directory titled concrete5.x.x.x. You will see a list of files and directories. Delete everything except the directory named concrete.
- In your FTP client, navigate to the directory above concrete5.x.x.x directory. This means you should see the directory name in your FTP client in the left pane. For example:
- Upload this directory into your site's /update directory in the right pane.
This will take several minutes as there are many files to upload.
- Log into your site at example.com/index.php/login.
- Click the menu icon on the top right.
- Choose System & Settings from the pop-out menu.
- Under Update concrete5 click Apply Update.
- You should see the new version available. Click Install Update.
- A confirmation message displays once the update is complete.
Upgrading via SSH
- View the following link for instructions on how to download concrete5 via SSH.
- Follow all steps up to extracting the .zip file contents.
- Once extracted, navigate into the directory titled concrete5.x.x.x. You will see a list of files and directories. Use the rm command to delete everything except the directory named concrete. For example:
[server]$ rm FILENAME [server]$ rm -rf DIRECTORY
- Navigate one directory up.
[server]$ cd ..
- Copy the concrete5.x.x.x directory into your site's /updates directory. Make sure to change username to your Shell user and example.com to your website.
[server]$ cp -r ./concrete5.x.x.x /home/username/example.com/updates
- Log into your site at example.com/index.php/login.
- Click the menu icon on the top right.
- Choose System & Settings from the pop-out menu.
- Under Update concrete5 click Apply Update.
- You should see the new version available. Click Install Update.
- A confirmation message displays once the update is complete.