Attempted SQL import exceeds execution time limit

import, mysql, phpmyadmin, sql

Solution

Location: C:\xampp\phpmyadmin\config.inc.php

$cfg['ExecTimeLimit'] = 600;

In C:\xampp\php\php.ini Look for and Change `max_execution_time`

you already have execution 300 seconds, so go to that file and increase `max_execution_time` to to what ever you want of seconds.

Problem

When I am trying to load an SQL file into wamp using phpmyadmin I am getting the fatal error: Fatal error: Maximum execution time of 300 seconds exceeded in C:\wamp\apps\phpmyadmin4.5.1\libraries\plugins\import\ImportSql.class.php on line 220

Original source