Posts

Showing posts from February, 2019

Missing export as SQL format in single table in phpMyAdmin

In phpMyAdmin version 4.8.4 in wamp server export as SQL format is missing in single table but you fixed this issue to follow below steps: Go to "C:\wamp64\apps\phpmyadmin4.8.4\libraries\classes\Display" and Edit " Export.php " Find line /* Scan for plugins */ Add the following above the line:              // Export a single table if (isset($_GET['single_table'])) { $GLOBALS['single_table'] = $_GET['single_table']; } I hope it will work for you. Thanks