scratch – Rev

Subversion Repositories:
Rev:
<?php

###########################################################################
##  Copyright (C) Wizardry and Steamworks 2017 - License: GNU GPLv3      ##
###########################################################################

# Set this to the filesystem to the folder where the files should be 
# uploaded.
$STORE_FOLDER = '/var/www/incoming/';

# Set this to the URL path of the folder where the files can be
# retrieved.
$URL_PATH = 'http://my.tld/incoming/';

# A list of allowed files by extension that the template will accept.
$ALLOWED_FILE_EXTENSIONS = [
    "PNG",
    "JPG",
    "JPEG",
    "GIF",
    "TGA",
    "SVG",
    "JP2",
    "JP",
    "ZIP",
    "RAR",
    "GZ",
    "TAR",
    "BZ2",
    "MP4",
    "MP3"
];