Home / Reference / Directory Structure

Directory Structure

Complete directory structure of the system

Directory Structure

/
├── admin/              # Admin area controllers
│   ├── clients.php
│   ├── client_groups.php
│   ├── products.php
│   ├── orders.php
│   ├── invoices.php
│   ├── tickets.php
│   ├── domains.php
│   ├── departments.php
│   ├── custom_fields.php
│   ├── coupons.php
│   ├── quotes.php
│   ├── credits.php
│   ├── news.php
│   ├── news_tags.php
│   ├── modules.php
│   ├── reports.php
│   ├── settings.php
│   └── api/           # Admin API endpoints
├── auth/               # Authentication controllers
│   ├── login.php
│   ├── register.php
│   ├── logout.php
│   ├── verify-email.php
│   ├── reset-password.php
│   └── api/           # Auth API endpoints (passkeys)
├── client/             # Client area controllers
│   ├── dashboard.php
│   ├── services.php
│   ├── domains.php
│   ├── invoices.php
│   ├── tickets.php
│   ├── quotes.php
│   ├── news.php
│   ├── kb.php
│   ├── wallet.php
│   ├── profile.php
│   └── api/           # Client API endpoints
├── core/               # Core system classes
│   ├── Controller.php
│   ├── ModuleInterface.php
│   ├── ModuleManager.php
│   ├── PaymentManager.php
│   ├── PasskeyManager.php
│   ├── CreditManager.php
│   ├── PermissionManager.php
│   └── Cron.php
├── cron/               # Cron job scripts
├── downloads/          # Secure download handlers
├── includes/           # Bootstrap, router, database, helpers
├── install/            # Installation wizard and migrations
├── modules/            # Modular plugins
│   ├── gateways/       # Payment gateways
│   ├── servers/        # Server modules
│   └── registrars/     # Domain registrar modules
├── uploads/            # File uploads directory
│   ├── news/          # News article images
│   ├── tickets/      # Ticket attachments
│   └── profiles/      # Profile pictures
├── views/              # View templates
│   ├── layouts/        # Layout templates
│   └── errors/         # Error pages
├── webhooks/           # Payment gateway webhooks
├── index.php           # Main entry point
└── .htaccess           # URL rewriting rules