Installation Guide
Recurlix comes with an easy-to-use web installer to help you get up and running quickly.
Option 1: Using the Web Installer
- Upload Files: Upload all files from the
sourcefolder to your web server's root or a subdirectory. - Set Permissions: Ensure the
storageandbootstrap/cachedirectories are writable by the web server. - Visit Site: Open your browser and navigate to your site's URL (e.g.,
https://yourdomain.com). - Follow Steps: The installer will automatically detect your environment and guide you through:
- License Verification
- Requirement Check
- Directory Permission Check
- Database Configuration
- Admin Account Setup
Option 2: Manual Installation (Developers)
If you prefer to install manually using the terminal:
- Clone/Upload: Upload the files to your server.
- Install Dependencies: Run
composer install --no-dev. - Environment Setup: Copy
.env.exampleto.envand configure your database credentials. - App Key: Run
php artisan key:generate. - Database Migration: Run
php artisan migrate --seed. - Storage Link: Run
php artisan storage:link.
Post-Installation
After installation, make sure to:
- Delete the
installfolder if it still exists (the installer usually does this automatically). - Configure your Cron Jobs for background tasks.