by voidSkipper » Thu Oct 15, 2009 1:54 am
If it's timing out on the script that is converting the rows to text, you can temporarily hack around it by putting a line in the loop in phpmyadmin that affects the timeout counter of php.ini. This will cause the running timer to reset and prevent the script ever timing out.
Obviously you'll want to remove it afterwards.
The last time I used this method was in order to parse a very large json feed (120mb), and the specific line of code I used was "ini_set('max_execution_time', 3600);" where 3600 was the current execution time in my php.ini, at the end of the while loop that was traversing the feed.
(freespace2pilot was 'ere)