Welcome to Decconz Multi-ERP Suite

Decconz Multi-ERP Suite is a comprehensive enterprise resource planning solution designed to streamline business operations across all departments. This documentation will help you understand, implement, and optimize the system for your organization.

Before You Begin

Make sure you have administrative access to your server and basic understanding of web applications. For cloud deployments, ensure you have the necessary cloud platform credentials.

Quick Start Guide

1

System Requirements Check

Verify that your environment meets the minimum requirements:

  • Server: Linux/Windows server with 4GB RAM minimum
  • Database: MySQL 5.7+ or PostgreSQL 10+
  • PHP: PHP 7.4+ with required extensions
  • Web Server: Apache 2.4+ or Nginx 1.18+
2

Installation

Follow our installation guide to set up Decconz ERP on your server:

Terminal
# Download Decconz ERP
wget https://download.decconz-erp.com/latest.zip

# Extract files
unzip latest.zip -d /var/www/decconz

# Set permissions
chown -R www-data:www-data /var/www/decconz
chmod -R 755 /var/www/decconz
3

Initial Configuration

Access the setup wizard at https://your-domain.com/setup and follow these steps:

  1. Enter database connection details
  2. Create administrator account
  3. Configure company information
  4. Select modules to install
  5. Set up email configuration
4

User Setup

Create user accounts and assign roles:

Admin Panel → Users
// Example user creation via API
POST /api/v1/users
{
    "name": "John Doe",
    "email": "john@example.com",
    "role": "manager",
    "department": "finance",
    "permissions": ["reports.view", "invoices.create"]
}

Next Steps