Extra information
Thought I'd add some information:
I don't download orders manually from within SellerDeck, I have written code within MS Access that orders the download using the command line. This has worked successfully for years.
For those interested, the line is:
I have several sites, so sCompany is the company and site name.
Normally, after downloading the orders, my code moves onto processing those orders. However, the PHP error stops my code, so I can't let it run unobserved.
It doesn't occur when there are no orders to download, and it doesn't occur everytime there is an order to download. It maybe that it's only when there is a payment (I have some free offers). I'll update this when I'm clear on that.
Phil
Thought I'd add some information:
I don't download orders manually from within SellerDeck, I have written code within MS Access that orders the download using the command line. This has worked successfully for years.
For those interested, the line is:
Code:
dRetVal = ShellExecute(0, "open", "C:\Program Files (x86)\SellerDeck\SellerDeck 2016\Catalog.exe", "/s " & sCompany & " /d /q", "", 3)
Normally, after downloading the orders, my code moves onto processing those orders. However, the PHP error stops my code, so I can't let it run unobserved.
It doesn't occur when there are no orders to download, and it doesn't occur everytime there is an order to download. It maybe that it's only when there is a payment (I have some free offers). I'll update this when I'm clear on that.
Phil
Comment