I have a php script that inserts random data in mysql database. (approximative 1 milion rows) Afer the script begins to run on my browser, after a few minutes (ex. 10 min or so) the script stops. (Chrome is giving me "No data recieved")
In my script I have set the followings:
ini_set('display_errors','On');
ini_set('error_reporting',E_ALL);
ini_set('max_execution_time' ,0);
ini_set('set_memory_limit', '10240MB');
For this project I am using the Laravel framework but I don't think it has something to do with it.
Have any ideas?