scratch – Rev 66

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/';

# The size of the asset hash generated when uploading.
$ASSET_HASH_SIZE = 8;

# 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",
    "TXT",
    "CSV",
    "HTML",
    "HTM",
    "DOC",
    "DOCX",
    "XLS",
    "MP4",
    "MP3"
];