I assume you are using phpMyAdmin to do the import, that has a seperate control for execution time.
Look in `C:\wamp64\alias\phpmyadmin.conf` it should look something like this
Alias /phpmyadmin "${INSTALL_DIR}/apps/phpmyadmin5.1.3/"
<Directory "${INSTALL_DIR}/apps/phpmyadmin5.1.3/">
Options +Indexes +FollowSymLinks +MultiViews
AllowOverride all
Require local
# To import big file you can increase values
php_admin_value upload_max_filesize 128M
php_admin_value post_max_size 128M
php_admin_value max_execution_time 360
php_admin_value max_input_time 360
</Directory>
So you will have to amend the line
php_admin_value max_execution_time 800
To the new value, this is done so that you dont have to set the standard PHP execution time just in order to load a large Export back into a database.
You may also like to increase some of those other values, again the change will effect only execution of phpMyAdmin and not all your normal executions
---------------------------------------------------------------------------------------------
(Windows 10 Pro 64bit) (Wampserver 3.3.4 64bit) Aestan Tray Menu 3.2.5.4
<Apache versions MULTIPE> <PHP versions MULTIPLE> <MySQL Versions MULTIPLE>
<MariaDB versions MULTIPLE> <phpMyAdmin versions MULTIPLE> <MySQL Workbench 8.0.23>Read The Manuals Apache --
MySQL --
PHP --
phpMyAdminGet your Apache/MySQL/mariaDB/PHP ADDONs here from the
WAMPServer alternate Repo-X-X-X-
Backup your databases regularly Here is How dont regret it later! Yes even when developing -X-X-X-
Edited 2 time(s). Last edit at 09/14/2022 01:58PM by RiggsFolly.