I get the same, but reported it ages ago :0(
no one has the answer to this problem i also have.
Please somebody help
Same here. Latest WP latest Portable phpMyAdmin. Blank screen where the admin panel should show. This was a great plugin but no longer works.
Same problem here.
Deactivating Contact Form 7 plugin fixed the problem. Just reactivate CF7 once you have finished.
Tracked it down as I was getting Apache 500 – Internal Server error. Looking in the logs showed
PHP Fatal error: Call to a member function add_shortcode() on a non-object in /blah/blah/wp-content/plugins/contact-form-7/includes/shortcodes.php on line 174, referer: http://example.com
I guess there is a conflict between the two plugins.
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
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