Milo,
How many items in your store? Are you using the TAB or the CSV version? Does this occur just on the full download, or all downloads?
This error is cause when you run out of memory on the server. The server terminates the script and kicks you out.
If you have access to your php.ini file, you can find and change this line:
memory_limit = 64M ; Maximum amount of memory a script may consume (10MB)
Your memory limit is set to 32M. You can try and up it to 64 and hopefully that will work. You may also want to change these lines to increase script execution time:
max_execution_time = 60 ; Maximum execution time of each script, in seconds
max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
Note that if you are on shared hosting, they may still override these entries...
Hope this helps!
Bookmarks