scratch – Blame information for rev 46

Subversion Repositories:
Rev:
Rev Author Line No. Line
8 office 1 <?php
2  
11 office 3 ###########################################################################
4 ## Copyright (C) Wizardry and Steamworks 2017 - License: GNU GPLv3 ##
5 ###########################################################################
6  
7 # Set this to the filesystem to the folder where the files should be
8 # uploaded.
8 office 9 $STORE_FOLDER = '/var/www/incoming/';
10  
28 office 11 # Set this to the URL path of the folder where the files can be retrieved.
8 office 12 $URL_PATH = 'http://my.tld/incoming/';
11 office 13  
14 # A list of allowed files by extension that the template will accept.
15 $ALLOWED_FILE_EXTENSIONS = [
16 "PNG",
17 "JPG",
18 "JPEG",
19 "GIF",
20 "TGA",
21 "SVG",
22 "JP2",
23 "JP",
24 "ZIP",
25 "RAR",
26 "GZ",
27 "TAR",
28 "BZ2",
15 office 29 "TXT",
30 "CSV",
28 office 31 "HTML",
32 "HTM",
15 office 33 "DOC",
34 "DOCX",
35 "XLS",
11 office 36 "MP4",
37 "MP3"
38 ];
28 office 39