scratch – Diff between revs 15 and 28

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