i-have-no-idea-for-a-username commited on
Commit
431d4a3
·
verified ·
1 Parent(s): 1dbd2e9

Update tinyfilemanager.php

Browse files
Files changed (1) hide show
  1. 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":"light"}';
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', 'Tiny File Manager');
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
- 'admin' => '$2y$10$/K.hjNr84lLNDt8fTXjoI.DBp6PpeyoJ.mGwrrLuCZfAwfSAGqhOW', //admin@123
30
- 'user' => '$2y$10$Fg6Dz8oH9fPoZ2jJan5tZuv6Z4Kp7avtQ9bDfrdRntXtPeiMAZyGO' //12345
31
  );
32
 
33
  // Readonly users
34
  // e.g. array('users', 'guest', ...)
35
  $readonly_users = array(
36
- 'user'
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