Update tinyfilemanager.php
Browse files- tinyfilemanager.php +5 -5
tinyfilemanager.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
//Default Configuration
|
3 |
-
$CONFIG = '{"lang":"en","error_reporting":false,"show_hidden":false,"hide_Cols":false,"theme":"
|
4 |
|
5 |
/**
|
6 |
* H3K | Tiny File Manager V2.5.3
|
@@ -13,7 +13,7 @@ $CONFIG = '{"lang":"en","error_reporting":false,"show_hidden":false,"hide_Cols":
|
|
13 |
define('VERSION', '2.5.3');
|
14 |
|
15 |
//Application Title
|
16 |
-
define('APP_TITLE', '
|
17 |
|
18 |
// --- EDIT BELOW CONFIGURATION CAREFULLY ---
|
19 |
|
@@ -26,14 +26,14 @@ $use_auth = true;
|
|
26 |
// Users: array('Username' => 'Password', 'Username2' => 'Password2', ...)
|
27 |
// Generate secure password hash - https://tinyfilemanager.github.io/docs/pwd.html
|
28 |
$auth_users = array(
|
29 |
-
'
|
30 |
-
'
|
31 |
);
|
32 |
|
33 |
// Readonly users
|
34 |
// e.g. array('users', 'guest', ...)
|
35 |
$readonly_users = array(
|
36 |
-
'
|
37 |
);
|
38 |
|
39 |
// Global readonly, including when auth is not being used
|
|
|
1 |
<?php
|
2 |
//Default Configuration
|
3 |
+
$CONFIG = '{"lang":"en","error_reporting":false,"show_hidden":false,"hide_Cols":false,"theme":"dark"}';
|
4 |
|
5 |
/**
|
6 |
* H3K | Tiny File Manager V2.5.3
|
|
|
13 |
define('VERSION', '2.5.3');
|
14 |
|
15 |
//Application Title
|
16 |
+
define('APP_TITLE', 'File Manager');
|
17 |
|
18 |
// --- EDIT BELOW CONFIGURATION CAREFULLY ---
|
19 |
|
|
|
26 |
// Users: array('Username' => 'Password', 'Username2' => 'Password2', ...)
|
27 |
// Generate secure password hash - https://tinyfilemanager.github.io/docs/pwd.html
|
28 |
$auth_users = array(
|
29 |
+
'dell' => '$2y$10$OPEN4iIqz0Le9lRSqRkfZu0qe8PvIwu0JoR610Ly/5XrEwBbpXrsq', //dell
|
30 |
+
'guest' => '$2y$10$aUXOMk6kSg2O29OB9uyX3OOvY44lq.P56gVwdabnPHXMJFyuwpAtC' //1234
|
31 |
);
|
32 |
|
33 |
// Readonly users
|
34 |
// e.g. array('users', 'guest', ...)
|
35 |
$readonly_users = array(
|
36 |
+
'guest'
|
37 |
);
|
38 |
|
39 |
// Global readonly, including when auth is not being used
|