Skip to content

Commit 709fd44

Browse files
committed
- phpminiadmin.php - 1.9.240727
- 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.
1 parent 5df556c commit 709fd44

File tree

4 files changed

+190
-118
lines changed

4 files changed

+190
-118
lines changed

Diff for: README.md

+13-15
Original file line numberDiff line numberDiff line change
@@ -39,24 +39,22 @@ In the directory samples you'll find phpminiconfig.php for known OpenSource pack
3939

4040
## Change Log
4141

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
4355
- removed use of function `get_magic_quotes_gpc` deprecated since PHP 7.4.0
4456
- utf8mb4 is now default charset
4557
- tested in PHP 8, cleaned up several PHP Warnings
4658

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
59-
- misc formatting adjustments
60-
6159
[see older changes in changelog](changelog.md)
6260

Diff for: changelog.md

+12
Original file line numberDiff line numberDiff 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+
113
### changes in phpMiniAdmin 1.9.210705 (latest)
214
- removed use of function `get_magic_quotes_gpc` deprecated since PHP 7.4.0
315
- utf8mb4 is now default charset

0 commit comments

Comments
 (0)