You are getting the error because the max execution time set in PhpMyAdmin is too low.
In order to increase the Maximum execution time follow the steps :
Quote:
|
vi /usr/local/cpanel/base/3rdparty/phpMyAdmin/libraries/config.default.php
|
Look for this line:
Quote:
|
$cfg[’ExecTimeLimit’] = 300;
|
And replace with 0 or any larger value
Quote:
|
$cfg[’ExecTimeLimit’] = 3600;
|