SYMPTOMS:
Shipping cost calculated is always 0.
VERSIONS AFFECTED:
Q-Shop Lite and Pro v3.5.0 and 3.5.1.
PROBLEM:
This is caused by a syntax error in checkout.asp.
FIX:
To correct this problem, edit the file checkout.asp and where it says:
<form action="<%= strSecPath %>procchkout.asp" method="POST" name="CheckoutForm>
change it to:
<form action="<%= strSecPath %>procchkout.asp" method="POST" name="CheckoutForm">
Notice the missing quote in the name attribute that needs to be added.