Hi David,
Is there anyway to stop an import once it has started, (for testing purposes ... that sleep function...wanting to get the config of that just right without waiting each time for whole feed to import).
I am using putty, php import.php merchant.txt , if I simply close putty does that stop the script running, or once started will it complete on the server even if putty is closed and connection lost?
Hi Clare,
Yes - closing putty will stop the import as the command is a child process of the shell; so when the shell closes all the programs started within that shell also close (unless they were started with & on the end, which means "run in the back-ground").
However, without having to come out of putty, you should just be able to press CTRL+C to exit the process at whatever point it has got to...
Cheers,
David.