KONFIGURASI FILE SIZE
=====================

DEFAULT: 100MB
Sudah cukup untuk kebanyakan path file.

JIKA BUTUH LEBIH BESAR:
-----------------------

1. Edit api/config.php:
   define('MAX_FILE_SIZE', 500 * 1024 * 1024); // 500MB

2. Edit api/.htaccess:
   php_value upload_max_filesize 500M
   php_value post_max_size 500M
   php_value memory_limit 512M

3. Edit api/php.ini (jika hosting support):
   upload_max_filesize = 500M
   post_max_size = 500M
   memory_limit = 512M

4. Edit api/upload.php baris error message:
   die(json_encode(['error' => 'File too large (max 500MB)']));

CATATAN:
--------
- Pastikan hosting support file size yang kamu set
- Shared hosting biasanya limit max 100-200MB
- VPS/Dedicated bisa lebih besar
- Check di: yoursite.com/api/test.php

RECOMMENDED LIMITS:
------------------
- Shared Hosting: 100MB
- VPS/Cloud: 500MB - 1GB
- Dedicated: No limit (sesuai kebutuhan)

Semakin besar limit, semakin besar memory yang dibutuhkan!
