config.php 1013 B

12345678910111213141516171819
  1. <?php
  2. //$config_var[0] = "password"; // Registration validation key - not needed //
  3. $config_var[1] = "21474825485"; // Max virtual disk space usage - default 500MB //
  4. $config_var[2] = "367000000"; // Max file upload space - default 10MB //
  5. $config_var[3] = "Simple Online File Manager"; // Title //
  6. $config_var[4] = "Flat file multi user file manager with set usage and file upload restrictions"; // Description //
  7. $title = $config_var[3];
  8. $desc = $config_var[4];
  9. $user_max_webspace = $config_var[1];
  10. $user_max_upload = $config_var[2];
  11. $version = "v1.2.1"; // Current version ~ displayed in footer.
  12. // Allowed file extensions within array. Easy to handle as well as loop
  13. $allowedExts = array("gif", "jpeg", "jpg", "png", "bmp", "ico", "swf", "txt", "html", "htm", "xhtml", "css", "js", "c", "cpp", "lua", "py", "tar", "zip", "rar", "gz", "7z", "bz2", "tgz", "mp3", "mp4", "ogg", "wav", "ogv", "flv", "webm", "pdf", "json", "ttf", "rtf", "otf", "svg", "bz", "sig", "sum", "tbz", "xz", "iso", "img", "apk");
  14. ?>