I've got a couple of settings that I need to temporarily change to run a large script.
This is a one time deal for importing a large amount of data from an excel document into a mysql database on a dedicated server.
By setting the following settings, how long do they last? Do I need to reset them after the process has completed? If so, what do the defaults need to be?
ini_set('memory_limit', '-1');
ini_set('max_execution_time', 300);
set_time_limit(0);