diff --git a/index.php b/index.php index e6eeb02..414c9b5 100755 --- a/index.php +++ b/index.php @@ -236,13 +236,20 @@ function purge_files() : void print("Deleted $num_del files totalling $total_size MiB\n"); } +function send_text_file(string $filename, string $content) : void +{ + header('Content-type: application/octet-stream'); + header("Content-Disposition: attachment; filename=\"$filename\""); + header('Content-Length: '.strlen($content)); + print($content); +} + // send a ShareX custom uploader config as .json function send_sharex_config() : void { $name = $_SERVER['SERVER_NAME']; $site_url = CONFIG::SITE_URL(); - $filename = $name.'.sxcu'; - $content = <<