So the background is, I got Agora 4 working marginally well but decided I wanted the features of 5. I installed 5, got things working (in an human chair cushion-backwards way, I will glady admit) for the most part except for one key problem. This problem is, the variable %%URLofImages%% is now resulting in a broken link. All of the template images loaded in properly, but for some reason %%URLofImages%% is actually delivering "picserve.cgi?picserve=" directly into the SRC field, meaning a broken link.
Here's what the template has:
<!--BEGIN SELECT QUANTITY BUTTON-->
<TABLE>
<TR ALIGN="CENTER">
<TD VALIGN="MIDDLE">%%QtyBox%%</TD>
<TD VALIGN="MIDDLE"><INPUT TYPE="IMAGE"
NAME="add_to_cart_button" VALUE="Add To Cart"
SRC="%%URLofImages%%/add_to_cart.gif" BORDER="0">
</TD>
</TR>
</TABLE>
<!--END SELECT QUANTITY BUTTON-->
...And here's what the code outputs as:
<!--BEGIN SELECT QUANTITY BUTTON-->
<TABLE>
<TR ALIGN="CENTER">
<TD VALIGN="MIDDLE"><input type=text name="item-00011|Theraflex|28.95|Theraflex Sports Therapy|~lt~IMG SRC=~qq~%%URLofImages%%/notavailable.gif~qq~ BORDER=0~gt~|4.55" size="3" maxlength="4" value="1"></TD>
<TD VALIGN="MIDDLE"><INPUT TYPE="IMAGE"
NAME="add_to_cart_button" VALUE="Add To Cart"
SRC="picserve.cgi?picserve=/add_to_cart.gif" BORDER="0">
</TD>
</TR>
</TABLE>
<!--END SELECT QUANTITY BUTTON-->
Furthermore, the add to cart button says it has added the item to the cart, but when I go to checkout, it's nowhere to be seen.
Here's a link to the work in progress (some of the layout is still broken) if you want to see it for yourself in context:
http://nabobrx.net/agora/agora.cgi?xm=on&product=Theraflex
I dislike kinda sorta maybe asking questions in forums but to be honest I've been horrified by the lack of documentation after getting used to the deep documentation I found running a wordpress site.
/Kit