Mar 26th, 2009, 8:15 AM
Hey Form-ers,
I noticed that during the importing of my v1.5x forms and data that I ran into a timeout during the form_data portion of the migration because I have so many form submissions on a couple forms. It looks like there isn't a timeout extension during this portion of the script like there is in a couple other steps. If anyone is having this problem, here's the quick fix..
In /modules/ft1_data_import/library.php, around line 361 you'll find..
After the above code add...
Hope it helps..
Rich Morgan
I noticed that during the importing of my v1.5x forms and data that I ran into a timeout during the form_data portion of the migration because I have so many form submissions on a couple forms. It looks like there isn't a timeout extension during this portion of the script like there is in a couple other steps. If anyone is having this problem, here's the quick fix..
In /modules/ft1_data_import/library.php, around line 361 you'll find..
Code:
function ft1_data_import_import_form_data()
{
global $g_table_prefix, $L;
After the above code add...
Code:
// potentially this operation can take a long time. Max it out at 10 minutes, though.
set_time_limit(600);
Hope it helps..
Rich Morgan