Search found 436 matches

by jguengerich
Thu May 16, 2013 12:30 pm
Forum: AbleCommerce GOLD
Topic: Custom Tax Provider
Replies: 1
Views: 2492

Re: Custom Tax Provider

Well, after setting up a tax rule and watching what happened in the database when building a cart and checking out, I managed to figure out some answers to my questions. 1. You do need to add a BasketItem to the Basket, so I did it like this: taxItem = new BasketItem(0, basket, null, "Sales Tax:", b...
by jguengerich
Thu May 16, 2013 11:49 am
Forum: AbleCommerce GOLD
Topic: Bug when category has > 2099 products
Replies: 2
Views: 3405

Re: Bug when category has > 2099 products

Actually, I already got a reply for my support case and they said a fix is already undergoing final QA.
by jguengerich
Thu May 16, 2013 9:36 am
Forum: AbleCommerce GOLD
Topic: Custom Tax Provider
Replies: 1
Views: 2492

Custom Tax Provider

Using AbleCommerce GOLD build 5410. I am trying create a custom tax provider. I have followed the Wiki article here: http://wiki.ablecommerce.com/index.php/Integrating_A_Tax_Provider I wanted to start with something simple to prove that I could make it work, so for now, my Calculate method simply su...
by jguengerich
Thu May 16, 2013 8:20 am
Forum: AbleCommerce GOLD
Topic: Bug when category has > 2099 products
Replies: 2
Views: 3405

Bug when category has > 2099 products

I have created a support case to let AbleCommerce know about this bug, but I thought I would share it here in case anyone else has the same issue. If a Category has more than 2099 Products, the MoreCategoryItems control will cause a crash with the following error: [SqlException (0x80131904): The inc...
by jguengerich
Tue May 14, 2013 4:01 pm
Forum: AbleCommerce GOLD
Topic: Require login before viewing
Replies: 8
Views: 8016

Re: Require login before viewing

I think I might have figured it out. I added <authorization> <deny users="?"/> <authorization> to the root web.config's system.web section. I added a web.config to the App_Themes folder containing: <configuration> <system.web> <authorization> <allow users="*"/> </authorization> </system.web> </confi...
by jguengerich
Fri May 10, 2013 3:18 pm
Forum: AbleCommerce GOLD
Topic: Require login before viewing
Replies: 8
Views: 8016

Re: Require login before viewing

I tried it again and it worked the first time - sort of. My logo didn't show up, and clicking on the Wishlist button (top) or link (bottom) took me to the wish list screen instead of the login screen (I'm using the Wireframe theme). After I logged in and logged back out, I got the same screen I show...
by jguengerich
Thu May 09, 2013 3:34 pm
Forum: AbleCommerce GOLD
Topic: CyberSource error
Replies: 2
Views: 5394

Re: CyberSource error

OK, I've got to start using Google before I post here :? .
Using a suggestion from the Cybersource FAQ, I was able to resolve the second issue by changing all of the parameters in the <readerQuotas /> line to very large numbers.
by jguengerich
Thu May 09, 2013 3:05 pm
Forum: AbleCommerce GOLD
Topic: CyberSource error
Replies: 2
Views: 5394

Re: CyberSource error

Well, I made some progress. Based on threads found on Stack Overflow, I resolved that error by copying the <system.serviceModel> section from cybersource_wcf.config file to the "root" web.config file. However, now I get the following error: Provider threw exception in DoAuthorize. Exception: Error i...
by jguengerich
Thu May 09, 2013 1:24 pm
Forum: AbleCommerce GOLD
Topic: CyberSource error
Replies: 2
Views: 5394

CyberSource error

I have followed the directions in the AbleCommerce GOLD Merchant Guide for setting up the CyberSource gateway (in test mode). When I click "Pay With Card" I get the following error: Provider threw exception in DoAuthorize. Exception: Could not find default endpoint element that references contract '...
by jguengerich
Thu May 09, 2013 9:26 am
Forum: AbleCommerce GOLD
Topic: Full-Text Search (SQL Server) problem
Replies: 4
Views: 5285

Full-Text Search (SQL Server) problem

Versions: AbleCommerce GOLD 7.0.8.5410 (30-day trial download) IIS 7.5 on Windows 2008 R2 64-bit SQL Server 2012 64-bit on Windows 2008 R2 64-bit I left the Search Provider set to Lucene. I added a bunch (~17000) of our products directly to the ac_Products table. I rebuilt the Index. All the product...
by jguengerich
Tue May 07, 2013 2:45 pm
Forum: AbleCommerce GOLD
Topic: Require login before viewing
Replies: 8
Views: 8016

Require login before viewing

I would like to require users to log in before they can view anything on the site. I found the following thread with instructions for modifying the web.config file: http://forums.ablecommerce.com/viewtopic.php?f=42&t=7286&start=0 However, when I try that, I am taken to the login page, but it is basi...