Web Dev

[Solved] phpmyadmin connection reset error

phpMyAdmin is a web interface use to work with MySQL database. It is possible to import/export database using phpMyAdmin.
Sometimes, while importing/exporting database connection reset error may occur.

Possible Reason:

The error may occur due to network interruption or PHP memory limit.

Solution:

If there is no problem with the network connection then try increasing the PHP memory limit by updating memory_limit value in loaded php.ini configuration file. Do not forget to restart Apache service.

In my case, increasing memory limit resolved the problem.

Hope this helps!

Related Articles

2 Comments

  1. Error "The connection was reset"
    File: /usr/share/phpmyadmin/libraries/common.inc.php
    search:
    $GLOBALS['PMA_Config'] = new PMA_Config(CONFIG_FILE);
    replace with:
    $GLOBALS['PMA_Config'] = new PMA_Config();

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Back to top button