=== Production Autoloader Fix === Environment: Production Current path: /var/www/factur-x Checking autoloaders: Composer autoloader: ✓ Custom autoloader: ✓ === Production Fix Instructions === Option A: Install Composer dependencies 1. cd /var/www 2. composer install --no-dev --optimize-autoloader 3. This will create proper vendor/autoload.php Option B: Fix custom autoloader 1. Update vendor/autoload.php paths: - Change __DIR__ . '/src/' to actual path - Current __DIR__ = /var/www/factur-x - Should be: /var/www Option C: Use absolute paths in autoloader 1. Edit vendor/autoload.php 2. Replace __DIR__ with absolute path $base_dir = '/var/www/factur-x.point8.fr/customers/customer1/src/'; ✓ Created fixed autoloader: vendor/autoload_fixed.php 4. Replace vendor/autoload.php with vendor/autoload_fixed.php === Quick Test === ✗ Current autoloader failed: Missing required configuration key: database === Fix Complete ===