PHP 8.0 rc Warning + Fatal error
Database management in a single PHP file
Brought to you by:
jakubvrana
Using for test PHP 8.0 rc from https://packages.sury.org on Debian 10 with adminer-4.7.7.php
so I get
Warning: Undefined array key "script" in /home/linux/sites/adminer.php on line 171
Warning: Undefined array key "HTTP_X_FORWARDED_PREFIX" in /home/linux/sites/adminer.php on line 171
Warning: Undefined array key "HTTPS" in /home/linux/sites/adminer.php on line 171
Fatal error: Uncaught Error: Call to undefined function get_magic_quotes_gpc() in /home/linux/sites/adminer.php:20 Stack trace: #0 /home/linux/sites/adminer.php(171): remove_slashes() #1 {main} thrown in /home/linux/sites/adminer.php on line 20
same issue.
get_magic_quotes_gpc is deprecated
https://www.php.net/manual/en/function.get-magic-quotes-gpc.php
Warning
This function has been DEPRECATED as of PHP 7.4.0. Relying on this function is highly discouraged.
Fixed by https://github.com/vrana/adminer/pull/406