Panormitis
Verified User
- Joined
- Sep 13, 2014
- Messages
- 40
phpMyAdmin gives fatal error on PHP 7.2 if the functions ini_set() and/or ini_get() are disabled. This wasn't happening in the past as far as I know.
One crude way to fix this for now, is to edit the file common.inc.php
Find the following part and delete it or comment it out:
One crude way to fix this for now, is to edit the file common.inc.php
Find the following part and delete it or comment it out:
Code:
if (! function_exists('ini_get') || ! function_exists('ini_set')) {
PMA_fatalError(
__(
'You have disabled ini_get and/or ini_set in php.ini. '
. 'This option is incompatible with phpMyAdmin!'
)
);
}