Looking for a .NET cart? Try Kartris - our ASP.NET shopping cart
Home > Item #26
I have upsized my database to SQL Server. Everything seems to be working fine, except that at the final step--order submission--the script times out. This was not a problem while using Access. How can this be fixed?
This is a cursor problem on versions 3.200 of CactuShop and below which may affect some users. Search for the following code in the mailorder.asp script or WorldPay version (if using that):
rs_main.Open cmdTemp, , 1, 3
and change to
rs_main.Open cmdTemp, , 1, cursortype
then search for
rs_main6.Open cmdTemp, , 1, 3
and change to
rs_main6.Open cmdTemp, , 1, cursortype
This should solve the problem.