Skip to content
On this page

Upgrade Guide

This section will guide you through upgrading your NitroFIT28 application to the latest version.

DANGER

Before proceeding, it's crucial to take a backup of your database and files. This precautionary measure helps prevent any potential data loss during the upgrade process.

DANGER

Please note that these steps will replace any customizations you have made, including logo, frontend view files, and other modifications. If you are a developer, we recommend using version control (e.g., Git) to track your changes.

Replace Old Files

  1. Download the latest version of NitroFIT28 from Codecanyon.

  2. Extract the downloaded zip file to a temporary location on your machine. You will find the following file structure:

/documentation
/nitrofit28_v4.4 // Main files
readme.html
  1. Move all files from nitrofit28_v4.2 to your server's public_html directory, replacing existing files.

DANGER

Please be aware that these steps will overwrite any customizations you have made.

Migrate Databases & Data

  1. Access your server via SSH by opening a terminal and running the following command, replacing your_username with your SSH username and host_ip_address with your server's IP address:
ssh your_username@host_ip_address

WARNING

If you are unsure about SSH access details, please contact your hosting provider for assistance.

  1. Enter your password when prompted and press Enter. Once logged in, navigate to the public_html directory by running the following command:
cd public_html
  1. Run the following commands to migrate the database schema and seed necessary data:
php artisan migrate --force
php artisan db:seed --class=UpgradeSeeder

DANGER

It's highly recommended to take a backup of your database before proceeding with these commands to prevent any potential data loss.

These commands will update your database schema and populate any required seed data.

By following these steps, you can successfully upgrade your NitroFIT28 application to the latest version. If you encounter any issues during the upgrade process, please refer to the documentation or contact support for assistance.

Crafted with ❤️