Skip to content

Instantly share code, notes, and snippets.

View W3BV1P3R's full-sized avatar

Jacob W3BV1P3R

View GitHub Profile
@eskimo
eskimo / upload.php
Created May 15, 2024 19:41
Igloo - Custom uploader example
<?php
set_time_limit(0);
// CONFIGURATION
$maxFileSize = 25600000; // 25MB
$uploadDirectory = "uploads/";
$allowedTypes = ["image", "video", "audio"]; // USE [] TO ALLOW ALL FILE TYPES
$authTokens = ["randomtokenhere", "andanotherone"];
$idLength = 32;