Thread Starter
TrisK
(@trisk)
ok so the problem is that that code uses
new PMA_Config('./config.inc.php');
and there is no config.inc.php in that libraries directory. so i changed to go to ‘../config.inc.php’ and there is one in the directory above
however this causes a php my admin error
#1045 – Access denied for user ‘root’@’localhost’ (using password: NO)
so need some mucking around with the script, or there is a problem with the config page, although it doesnt seem to listen to the settings in there at all to be honest
Thread Starter
TrisK
(@trisk)
I have tracked the error down to line 2866 in
wp-content/plugins/portable-phpmyadmin/wp-pma-mod/libraries/common.lib.php
it is this line in specific
$_SESSION['PMA_Config'] = new PMA_Config('./config.inc.php');
I am currently reading the PHPMyAdmin documentation to try and get somewhere