Install SUIGEST360 on a local computer
Prepare your Windows environment, configure PHP and MySQL, then use the SUIGEST360 installer to complete the setup.
Prepare the local environment.
A local installation is suitable for testing, demonstrations, training and development.
- Windows 10 or Windows 11
- PHP 8.2 or later
- MySQL or MariaDB
- Required PHP extensions
- Modern web browser
- Internet connection for license activation
- Valid SUIGEST360 license
Install PHP and MySQL.
You can use a local environment that provides PHP and MySQL, or install these components separately.
- PHP 8.2 or a compatible later version
- MySQL or MariaDB
- Required PHP extensions
- PowerShell or Windows terminal access
Check PHP.
Open PowerShell and verify the PHP version currently used by your system.
php -v
Also check the enabled PHP extensions.
php -m
- PDO
- PDO MySQL
- BCMath
- Ctype
- cURL
- DOM
- Fileinfo
- GD
- JSON
- Mbstring
- OpenSSL
- Tokenizer
- XML
- Zip
Check MySQL.
Make sure MySQL or MariaDB is installed and that the database service is running.
mysql --version
Create the SUIGEST360 database.
Create an empty database for the installation.
CREATE DATABASE suigest360
CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;
Keep the connection information available. The installer will request it later.
Host: 127.0.0.1
Port: 3306
Database: suigest360
Username: root
Password: YOUR_MYSQL_PASSWORD
Extract SUIGEST360.
Extract the official SUIGEST360 package into a simple and easily accessible local directory.
- Download the SUIGEST360 package.
- Extract the complete archive.
- Place the project in a local directory.
- Verify that all files and directories were extracted.
C:\suigest360
Open the project in PowerShell.
Change to the SUIGEST360 root directory and verify that Laravel is accessible.
cd C:\suigest360
php artisan --version
Start SUIGEST360.
Laravel’s built-in development server can be used for a local installation.
php artisan serve
To explicitly use port 8001:
php artisan serve --host=127.0.0.1 --port=8001
Open the installer.
Once the server is running, open the installation address in your browser.
http://127.0.0.1:8001/install
- Choose the installation language.
- Check system requirements.
- Check PHP extensions.
- Check required permissions.
- Activate the SUIGEST360 license.
- Configure the MySQL connection.
- Enter company information.
- Create the administrator account.
- Choose the installation type.
- Review the summary and start installation.
Activate your license.
Enter your SUIGEST360 license key when requested by the installer. An Internet connection may be required to communicate with the license server.
Connect SUIGEST360 to the local database.
Enter the information corresponding to the database created earlier.
Host: 127.0.0.1
Port: 3306
Database: suigest360
Username: root
Password: YOUR_MYSQL_PASSWORD
Choose the installation type.
SUIGEST360 can be prepared with a clean database or with demonstration data.
Starts with a database ready for configuration and real business use.
Adds example records that make it easier to explore SUIGEST360 modules and core workflows.
Test the installation.
Once installation is complete, verify the general operation of SUIGEST360.
- Administrator login
- Dashboard access
- Company settings
- Language
- Currency
- Timezone
- Customers and suppliers
- Products and warehouses
- Sales and purchase modules
- Reports
Local installation and production environments
The server started with php artisan serve is intended for development, testing and local demonstrations.
Need help during installation?
If you experience an issue with PHP, MySQL, license activation or any installation step, open a request through the SUIGEST360 support portal.
Open support portal