2016-05-14 08:55:50 +00:00
|
|
|
<?php
|
2016-05-14 09:30:07 +00:00
|
|
|
//This is the configuration file for Uguu Temp File Sharing system
|
|
|
|
define("CONFIG_ROOT_URL", "http://path.to.uguu");
|
|
|
|
define("CONFIG_FILES_PATH", "/path/to/uguu/public/files/");
|
|
|
|
define("CONFIG_ROOT_PATH", "/path/to/uguu/");
|
|
|
|
define("CONFIG_MAX_RETENTION_TIME", "60"); //Max retention time in minutes
|
2016-05-14 09:47:48 +00:00
|
|
|
define("CONFIG_MAX_RETENTION_TEXT", "1 hour"); //Max retention time as a text to be displayed
|
|
|
|
define("CONFIG_RANDOM_LENGTH", "12"); //Length of the random chain appended to the filename
|
2016-05-14 09:30:07 +00:00
|
|
|
define ("CONFIG_BLOCKED_EXTENSIONS", serialize(array("exe", "scr", "rar", "zip", "com", "vbs", "bat", "cmd", "html", "htm", "msi")));
|