You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- support for PHP 8.3 (cleaned up some PHP Warnings, deprecations)
- enhancements:
- multiple db servers support - define server's configs via $DBSERVERS and quickly switch between servers via top navbar dropdown
- "ps" menu item in top navbar - shortcut for "show processlist"
- "SHOW TABLE STATUS" now works quicker because emulated via select from `information_schema.TABLES`
- "WITH" (Common Table Expressions (CTEs)) support
- moved include for phpminiconfig a bit further, so it allows override more things
- security improvements:
- `$ACCESS_PWD` now is enforced except for local usage
- added by default "SET GLOBAL local_infile=0" to prevent unwanted use of `LOAD DATA LOCAL INFILE`. Controlled by `$IS_LOCAL_INFILE` on the beginning of the script.
Copy file name to clipboardExpand all lines: README.md
+13-15
Original file line number
Diff line number
Diff line change
@@ -39,24 +39,22 @@ In the directory samples you'll find phpminiconfig.php for known OpenSource pack
39
39
40
40
## Change Log
41
41
42
-
### changes in phpMiniAdmin 1.9.210705 (latest)
42
+
### changes in phpMiniAdmin 1.9.240727 (latest)
43
+
- support for PHP 8.3 (cleaned up some PHP Warnings, deprecations)
44
+
- enhancements:
45
+
- multiple db servers support - define server's configs via `$DBSERVERS` and quickly switch between servers via top navbar dropdown
46
+
- "ps" menu item in top navbar - shortcut for "show processlist"
47
+
- "SHOW TABLE STATUS" now works quicker because emulated via select from `information_schema.TABLES`
48
+
- "WITH" (Common Table Expressions (CTEs)) support
49
+
- moved include for phpminiconfig a bit further, so it allows override more things
50
+
- security improvements:
51
+
-`$ACCESS_PWD` now is enforced except for local usage
52
+
- added by default "SET GLOBAL local_infile=0" to prevent unwanted use of `LOAD DATA LOCAL INFILE`. Controlled by `$IS_LOCAL_INFILE` on the beginning of the script.
53
+
54
+
### changes in phpMiniAdmin 1.9.210705
43
55
- removed use of function `get_magic_quotes_gpc` deprecated since PHP 7.4.0
44
56
- utf8mb4 is now default charset
45
57
- tested in PHP 8, cleaned up several PHP Warnings
46
58
47
-
### changes in phpMiniAdmin 1.9.210129
48
-
- limited max packet size during export to aviod PHP memory exhausted errors on huge tables
49
-
50
-
### changes in phpMiniAdmin 1.9.200928
51
-
- added ability to setup SSL connection (define at least "ssl_ca" in `$DBDEF`)
52
-
53
-
### changes in phpMiniAdmin 1.9.190822
54
-
- added ability to set socket for db connection
55
-
56
-
### changes in phpMiniAdmin 1.9.170730
57
-
- fixed potential XSS in database names and fields [#28](https://github.com/osalabs/phpminiadmin/issues/28)
58
-
- db NULLs now displayed in italic to distinguish from "NULL" text
Copy file name to clipboardExpand all lines: changelog.md
+12
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,15 @@
1
+
### changes in phpMiniAdmin 1.9.240727 (latest)
2
+
- support for PHP 8.3 (cleaned up some PHP Warnings, deprecations)
3
+
- enhancements:
4
+
- multiple db servers support - define server's configs via `$DBSERVERS` and quickly switch between servers via top navbar dropdown
5
+
- "ps" menu item in top navbar - shortcut for "show processlist"
6
+
- "SHOW TABLE STATUS" now works quicker because emulated via select from `information_schema.TABLES`
7
+
- "WITH" (Common Table Expressions (CTEs)) support
8
+
- moved include for phpminiconfig a bit further, so it allows override more things
9
+
- security improvements:
10
+
-`$ACCESS_PWD` now is enforced except for local usage
11
+
- added by default "SET GLOBAL local_infile=0" to prevent unwanted use of `LOAD DATA LOCAL INFILE`. Controlled by `$IS_LOCAL_INFILE` on the beginning of the script.
12
+
1
13
### changes in phpMiniAdmin 1.9.210705 (latest)
2
14
- removed use of function `get_magic_quotes_gpc` deprecated since PHP 7.4.0
0 commit comments