# Minimal Chunked File Storage (PHP) This is a minimalistic PHP-based file storage system with: * Password-protected admin panel * Chunked file upload for large files (GB+) * Upload progress display * File listing with download and delete options * Direct link copy button * No external libraries required ## ๐Ÿš€ Features * Chunked upload via JavaScript + `fetch` * Server-side chunk handling and merging * No CSS or frontend frameworks * Fully self-contained (no Composer needed) ## ๐Ÿ›  Requirements * PHP 7.4+ * A web server (or use PHP's built-in server) ## ๐Ÿ“ Folder Structure ``` /simple-file-share/ โ”œโ”€โ”€ index.php โ”œโ”€โ”€ upload/ # Final uploaded files โ”œโ”€โ”€ upload_chunks/ # Temporary chunk storage โ”œโ”€โ”€ upload_chunk.php โ”œโ”€โ”€ merge_chunks.php โ””โ”€โ”€ config.php # Configuration (password and paths) ``` ## ๐Ÿ” Configuration Create `config.php`: ```php