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

Update tinyfilemanager.php

Browse files
Files changed (1) hide show
  1. tinyfilemanager.php +3 -6
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":"dark"}';
4
 
5
  /**
6
  * H3K | Tiny File Manager V2.5.3
@@ -26,15 +26,12 @@ $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
- '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
40
  $global_readonly = false;
 
1
  <?php
2
  //Default Configuration
3
+ $CONFIG = '{"lang":"en","error_reporting":false,"show_hidden":true,"hide_Cols":false,"theme":"dark"}';
4
 
5
  /**
6
  * H3K | Tiny File Manager V2.5.3
 
26
  // Users: array('Username' => 'Password', 'Username2' => 'Password2', ...)
27
  // Generate secure password hash - https://tinyfilemanager.github.io/docs/pwd.html
28
  $auth_users = array(
29
+ 'user' => '$2y$10$I7fp8fkwzHKjBqOOtxWT8enLaqQxd377FTCWpjutPOSPAGg5sMSnW', //123
 
30
  );
31
 
32
  // Readonly users
33
  // e.g. array('users', 'guest', ...)
34
+ $readonly_users = array();
 
 
35
 
36
  // Global readonly, including when auth is not being used
37
  $global_readonly = false;