Home >Database >Mysql Tutorial >How to Fix Timeouts When Importing Large SQL Scripts in phpMyAdmin?
When attempting to import large SQL scripts (exceeding 300 MB) into phpMyAdmin, users may encounter timeout errors despite adjusting settings in their php.ini file. The following steps can help resolve this issue:
Step 1: Verify php.ini Settings
Ensure that the following PHP settings have been modified appropriately in php.ini:
Step 2: Modify config.default.php
In case the problem persists, navigate to the file phpmyadminlibrariesconfig.default.php. Locate the line:
Modify the value to:
This change effectively removes the execution time limit for importing the script.
Reminder: This change should only be applied on local servers for security reasons.
After implementing these modifications, restart phpMyAdmin to apply the updated settings. This should resolve the timeout errors and allow you to import large SQL scripts successfully.
The above is the detailed content of How to Fix Timeouts When Importing Large SQL Scripts in phpMyAdmin?. For more information, please follow other related articles on the PHP Chinese website!