skip to Main Content

I have a table where I have 1.5 million records (680 MB). When I am trying to open this table in PHPMyAdmin it is not able to load

2

Answers


    • Edit config.default.php file in PHPMyAdmin
    • For Xampp it is located at

    please go to xamppphpMyAdminlibrariesconfig.default.php

    look for $cfg['ExecTimeLimit'] = 600;

    Change it to a higher value like 5000

    Login or Signup to reply.
  1. You have to change the ExecTimeLimit inside config.default.phpfile.

    Default value is 600. Edit it with 0 (no limit execution time):

    $cfg['ExecTimeLimit'] = 0;
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search