-
Notifications
You must be signed in to change notification settings - Fork 17
/
config.php
58 lines (44 loc) · 1.52 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
// SET RANDOM STRINGS HERE DONT USE DEFAULTS
$Accept_GPLv3_OpenSource_License = '1';
$Salts1 = 'PutSomethingRandomHere';
$Salts2 = 'PutSomethingElseRandomHere';
$Salts3 = 'AndSomethingHere';
$Salts4 = 'TheLongerTheBetter';
$Salts5 = 'MoreRandomStuff';
$Salts6 = 'LastOne';
//Put the URL used to access HRConvert here
$URL = 'localhost:8085';
//Set to true to enable virus scanning during all file operations
$VirusScan = FALSE;
//Set application browser application name and title
$ApplicationName = 'HRConvert2';
$ApplicationTitle = 'Convert Anything!';
$SupportedLanguages = array('en', 'fr', 'es', 'zh', 'hi', 'ar', 'ru', 'uk', 'bn', 'de', 'ko', 'it', 'pt');
//Default language
$DefaultLanguage = 'en';
$AllowUserSelectableLanguage = TRUE;
//Set to FALSE to disable users creating share links
$AllowUserShare = TRUE;
//Button colour - RED,GREEN,BLUE,GREY
$ButtonStyle = 'BLUE';
$SpinnerStyle = 6;
$SpinnerColor = $ButtonStyle;
$ShowGUI = TRUE;
$ShowFinePrint = FALSE;
$DeleteThreshold = 30;
$Verbose = TRUE;
$AllowUserVirusScan = TRUE;
$ScanCoreMemoryLimit = 268435456;
$ScanCoreChunkSize = 134217728;
$ScanCoreDebug = FALSE;
$ScanCoreVerbose = TRUE;
$InstLoc = '/var/www/html/HRProprietary/HRConvert2';
$ServerRootDir = '/var/www/html';
$ConvertLoc = '/home/converter';
$LogDir = '/var/www/html/HRProprietary/HRConvert2/Logs';
$Delete_Threshold = '30';
$MaxLogSize = '1048576';
$Font = 'Verdana';
$TOSURL = 'https://www.honestrepair.net/index.php/terms-of-service/';
$PPURL = 'https://www.honestrepair.net/index.php/privacy-policy/';