Am executing PHP script to migrate tables from one server DB to another server DB.
The script unnecessarily stops execution during large no. of INSERT command is executed.
eg:transfer 15000rows to a table using mysqli_query("INSERT INTo....VALUES(....)") then execution stops.
already initialized:
set_time_limit(0);
ini_set('mysql.connect_timeout', '0');
ini_set('max_execution_time', '0');
Is there any other solutions available?