by loren_d_c » Fri Sep 10, 2010 3:30 pm
I doubt it is a setting, it looks more like a problem with your custom product template and the form URL that clicking the Add to Cart button is submitting to. The form action URL looks like this:
<form action="LogFinish/http://www.logfinish.com/cgi-logfinish/sb/order.cgi" method=post onSubmit="setPrice('281:price_1',document.getElementById('281:itemnum_1'))">
So when you click the submit button it sends you to a URL that looks like this, which is wrong:
http://www.logfinish.com/store/LogFinish/http://www.logfinish.com/cgi-logfinish/sb/order.cgi
So this part of the tag:
action="LogFinish/http://www.logfinish.com/cgi-logfinish/sb/order.cgi"
Should be this instead:
action="http://www.logfinish.com/cgi-logfinish/sb/order.cgi"
Again, this is probably the result of a mistake your custom product template. If you didn't make the template yourself, please contact the person who did to have them fix this.
-Loren