Commit ca56f6c
authored
Fix phpMyAdmin and Adminer crash on PHP 8.5 (#3444)
## Summary
- phpMyAdmin and Adminer crashed on PHP 8.5 because they created a plain
`PDO` instance and passed it to `WP_SQLite_Connection`. The SQLite
plugin calls `PDO::sqliteCreateFunction()`, which is deprecated in PHP
8.5.
- The plugin already checks for `PDO\SQLite` to use the new API, but the
check failed because a plain `PDO` was passed.
- Fixed by passing the database path to `WP_SQLite_Connection` instead
of a pre-built `PDO` object. Its constructor already selects the correct
`PDO` class.
## Test plan
- [x] Run `npm nx dev playground-website` and open
http://127.0.0.1:5400/website-server/
- [x] Change PHP to 8.5
- [x] Open phpMyAdmin — verify it loads without errors
- [x] Open Adminer — verify it loads without errors
Fixes #34431 parent e0c93a6 commit ca56f6c
File tree
3 files changed
+3
-14
lines changed- packages/playground
- personal-wp/src/components/site-manager/site-database-panel/adminer-extensions
- tools/src/phpmyadmin
- website/src/components/site-manager/site-database-panel/adminer-extensions
3 files changed
+3
-14
lines changedLines changed: 1 addition & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
28 | | - | |
29 | 27 | | |
30 | 28 | | |
31 | 29 | | |
| |||
103 | 101 | | |
104 | 102 | | |
105 | 103 | | |
106 | | - | |
107 | | - | |
108 | 104 | | |
109 | | - | |
| 105 | + | |
110 | 106 | | |
111 | 107 | | |
112 | 108 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
18 | | - | |
19 | 18 | | |
20 | 19 | | |
21 | 20 | | |
| |||
260 | 259 | | |
261 | 260 | | |
262 | 261 | | |
263 | | - | |
264 | | - | |
265 | 262 | | |
266 | | - | |
| 263 | + | |
267 | 264 | | |
268 | 265 | | |
269 | 266 | | |
| |||
Lines changed: 1 addition & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
28 | | - | |
29 | 27 | | |
30 | 28 | | |
31 | 29 | | |
| |||
103 | 101 | | |
104 | 102 | | |
105 | 103 | | |
106 | | - | |
107 | | - | |
108 | 104 | | |
109 | | - | |
| 105 | + | |
110 | 106 | | |
111 | 107 | | |
112 | 108 | | |
| |||
0 commit comments