Skip to main content
Participant
July 25, 2014
Question

404 with link to shopping cart index.cfm

  • July 25, 2014
  • 2 replies
  • 523 views

I have tried to reference the file several ways without success.  Please help me sort this out.  Thanks!

<a href="/index.cfm/fuseaction/YourShoppingCart.additem/productid=1001">add to cart</a>

<a href="./index.cfm/fuseaction/YourShoppingCart.additem/productid=1001">add to cart</a>

<a href="http://www.theartoflovingcatsanddogs.com/index.cfm/fuseaction/YourShoppingCart.additem/productid=1001">add to cart</a>

This topic has been closed for replies.

2 replies

BKBK
Community Expert
Community Expert
July 26, 2014

Or, naturally,

<a href="index.cfm?fuseaction=YourShoppingCart.additem&productid=1001">add to cart</a>

Participating Frequently
July 25, 2014

What's wrong with just

/index.cfm?fuseaction=YourShoppingCart.additem&productid=1001