diff --git a/tinyfilemanager.php b/tinyfilemanager.php index 9d036d1..e563bf9 100644 --- a/tinyfilemanager.php +++ b/tinyfilemanager.php @@ -3,7 +3,7 @@ $CONFIG = '{"lang":"en","error_reporting":false,"show_hidden":false,"hide_Cols":false,"theme":"light"}'; /** - * H3K | Tiny File Manager V2.5.1 + * H3K | Tiny File Manager V2.5.2 * @author Prasath Mani | CCP Programmers * @email ccpprogrammers@gmail.com * @github https://github.com/prasathmani/tinyfilemanager @@ -11,7 +11,7 @@ $CONFIG = '{"lang":"en","error_reporting":false,"show_hidden":false,"hide_Cols": */ //TFM version -define('VERSION', '2.5.1'); +define('VERSION', '2.5.2'); //Application Title define('APP_TITLE', 'Tiny File Manager'); @@ -109,7 +109,7 @@ $sticky_navbar = true; // Maximum file upload size // Increase the following values in php.ini to work properly // memory_limit, upload_max_filesize, post_max_size -$max_upload_size_bytes = 10000000000; +$max_upload_size_bytes = 5000000000; // size 5,000,000,000 bytes (~5GB) // Possible rules are 'OFF', 'AND' or 'OR' // OFF => Don't check connection IP, defaults to OFF @@ -132,7 +132,7 @@ $ip_blacklist = array( '::' // non-routable meta ipv6 ); -// if User has the customized config file, try to use it to override the default config above +// if User has the external config file, try to use it to override the default config above [config.php] // sample config - https://tinyfilemanager.github.io/config-sample.txt $config_file = __DIR__.'/config.php'; if (is_readable($config_file)) { @@ -335,12 +335,12 @@ if ($use_auth) {
- +
- +
@@ -1327,12 +1327,12 @@ if (isset($_GET['upload']) && !FM_READONLY) {