Forte-ion Installation Guide 🚀

This guide will walk you through the steps to install the Forte-ion application using both offline and online methods.


1. Forte-ion Offline Application Installation

This method is for installing the application using a local installer file without an internet connection.

Installation Steps

  1. Run the Installer

    Locate the installation file named InstallForte-ion.exe in the downloaded package and double-click it to start the setup.

    tutor1.png

  2. Select Language

    Choose your preferred language for the installation from the dropdown menu and click OK.

    tutor3.png

  3. Choose Installation Mode

    It is recommended to select Install for all users to ensure the application has the necessary administrative privileges. Click Next.

    tutor2.png

  4. Accept License Agreement

    Read the license agreement and choose I accept the agreement. Click Next.

    tutor4.png

  5. Enter Password

    Enter the password provided for the installation. Note that the password is case-sensitive. Click Next.

    tutor6.png

  6. Select Destination Location

    Choose where you want Forte iON to be installed. The default location is usually sufficient. Click Next.

    tutor7.png

  7. Wait for Installation to Complete

    The setup will now install Forte iON on your computer. This may take a few moments.

    tutor8.png

  8. Finish Setup

    Once the installation is complete, you will see a final wizard screen. You can choose to Launch Forte iON immediately. Click Finish to close the installer.

    tutor9.png

You have now successfully installed the Forte-ion application offline.


2. Forte-ion Online Application Installation

Once the development tools are ready, you can start installing the application.

A. Source Code Preparation

     
  1. Extract the Source Code:
  2.  
       
    • Extract the forte_ion.zip file to an easily accessible location on your computer, for example in D:\forte_ion.
    •  
     
  3. Navigate to the Project Directory:
  4.  
       
    • In CMD, switch to the drive where you extracted the folder: type D: and Enter (if you extracted it in drive D:).
    •  
    • Move to the project folder: type cd forte_ion and Enter.
    •  
     
  5. Run the Laravel Local Server:
  6.  
       
    • Type the command: php artisan serve and Enter.
    •  
    • Wait until the message appears: INFO Server running on [http://127.0.0.1:8000].
    •  

B. Database Configuration Via Browser

     
  1. Access the Installation Page:
  2.  
       
    • Open your browser and type the address: http://127.0.0.1:8000/install.
    •  
     
  3. Fill out the Installation Form:
  4.  
       
    • You will see the "Installer" view (as shown in image install1.png).
    •  
    • Fill in your database details:
    •  
           
      • App URL: Leave as default or use http://127.0.0.1:8000.
      •    
      • Database Host: 127.0.0.1
      •    
      • Database Name: Create your new database name here (e.g., forte).
      •    
      • Database User: root (XAMPP default user).
      •    
      • Database Password: Leave empty (XAMPP default password is usually empty).
      •  
       
    • Click the Install button.
    •  

C. Finalizing Installation

     
  1. Database Migration and Seeding:
  2.  
       
    • After successful configuration, you will see the "Installation Complete" page (as shown in image install 3).
    •  
    • The next step is to create the database tables and populate the initial data.
    •  
    • In your Command Prompt (CMD) (which should still be in the forte_ion directory), run the command provided:
    •  

Bash

php artisan migrate --seed

     
       
    • This command will create the necessary tables and populate the initial data (seeding).
    •  
     
  1. Starting the Application:
  2.  
       
    • Once the migration and seeding process is complete, run the command to start your Laravel application:
    •  

Bash

php artisan serve

     
  1. Log in to the Application:
  2.  
       
    • Open your browser and navigate to the address: http://127.0.0.1:8000
    •  
    • You can login using the default administrator account:
    •  
           
      • Email: admin@example.com
      •    
      • Password: password
      •  
       

You have now successfully installed and run Forte-ion. Congratulations! 🎉