Search found 4912 matches

by mazhar
Mon Nov 14, 2016 9:57 pm
Forum: AbleCommerce GOLD
Topic: Basket error since upgrading to R12
Replies: 1
Views: 2576

Re: Basket error since upgrading to R12

Is there any customization on this page?
by mazhar
Mon Oct 24, 2016 11:54 pm
Forum: AbleCommerce GOLD
Topic: Gold R12 SR1 bots update?
Replies: 4
Views: 6111

Re: Gold R12 SR1 bots update?

It was fixed in R12 release. Check AC8-3042 in R12 change log here

http://help.ablecommerce.com/upgrades/a ... to_r12.htm
by mazhar
Sun Oct 23, 2016 11:12 pm
Forum: AbleCommerce GOLD
Topic: Add Cart Link to Another Application
Replies: 1
Views: 3900

Re: Add Cart Link to Another Application

Well does that other application is running ablecommerce? If its some other software then you will have to check with their process of how to add an item to cart from a link. If its ablecommerce then you can find sample code in this thread http://forums.ablecommerce.com/viewtopic.php?f=65&t=17169 In...
by mazhar
Fri Oct 14, 2016 2:16 am
Forum: AbleCommerce GOLD
Topic: Anyone have R12 ExtendedFields working?
Replies: 15
Views: 15436

Re: Anyone have R12 ExtendedFields working?

Extended fields are using existing ac_CustomFields table and there are couple of scenarios due to which we choose not to cascade delete. First ac_CustomFields is a special table which doesn't have foreign keys defined which means you can not force delete using database cascades. The fact that any en...
by mazhar
Wed Oct 12, 2016 3:11 am
Forum: AbleCommerce GOLD
Topic: Anyone have R12 ExtendedFields working?
Replies: 15
Views: 15436

Re: Anyone have R12 ExtendedFields working?

Yeah that's intended and kept this way for improved performance. You should remove the fields before deleting the order.
by mazhar
Tue Oct 11, 2016 5:50 am
Forum: AbleCommerce GOLD
Topic: Anyone have R12 ExtendedFields working?
Replies: 15
Views: 15436

Re: Anyone have R12 ExtendedFields working?

I think it maybe the nhibernate proxy objects creating trouble. Try to unproxy objects before setting/accessing custom fields on them. Give a try to following and see if it makes any differeance. if (lastPayment.PaymentStatus == PaymentStatus.Authorized) { var acOrder = AbleContext.Current.Database....
by mazhar
Mon Oct 10, 2016 11:27 pm
Forum: AbleCommerce GOLD
Topic: Check out programmatically
Replies: 6
Views: 7724

Re: Check out programmatically

Make sure the payment gateway associated with your payment method is configured in ablecommerce and has working merchant account details. Also why not use Windsor container to resolve ablecommerce service instead of creating new instance? You should be able to use AbleContext.Container.Resolve<IChec...
by mazhar
Mon Oct 10, 2016 2:58 am
Forum: AbleCommerce GOLD
Topic: Customer reviews
Replies: 1
Views: 3627

Re: Customer reviews

Yes you are correct. You can ignore the ac_ReviewReminders table, its about automated review alerts. You can simply create reviewer profiles and reviews and that should get things working for you.
by mazhar
Fri Oct 07, 2016 5:11 am
Forum: AbleCommerce GOLD
Topic: CustomFieldsManager error
Replies: 6
Views: 7254

Re: CustomFieldsManager error

I was trying to say that CustomFieldsManager wasn't intended to be used separately. If you have source code you will notice that Save method is internal on CustomFieldsManager and can only be invoked from inside CommerceBuilder entity classes. BTW you can unproxyfy the proxified order instances and ...
by mazhar
Fri Oct 07, 2016 3:54 am
Forum: AbleCommerce GOLD
Topic: Confusing Checkout Page
Replies: 3
Views: 5394

Re: Confusing Checkout Page

What its doing is listing non shippable master in non shipping items while shippable item in shipment section. As for duplicate entry its actually trying to tell that Hardcover Book is within a kit called History of the Love of God. See there is wor "in" between both book names. If it still seems co...
by mazhar
Thu Oct 06, 2016 8:56 pm
Forum: AbleCommerce GOLD
Topic: Confusing Checkout Page
Replies: 3
Views: 5394

Re: Confusing Checkout Page

Thanks for reporting this. I am able to reproduce the issue on ShipMethod page. It seems like we need few improvements on ShipMethod.aspx page to handle this case. Here is a code workaround for you to try. Edit your Website/Checkout/ShipMethod.aspx.cs file and locate following method. protected ILis...
by mazhar
Thu Oct 06, 2016 7:58 pm
Forum: AbleCommerce GOLD
Topic: CustomFieldsManager error
Replies: 6
Views: 7254

Re: CustomFieldsManager error

Actually as of this point CustomFieldsManager is not intended to be used separately hence its. Even if you get it to initialize it won't be able to save the information since it only allows Entity classes in CommerceBuilder to save the fields. In your case how are you loading oneOrder object? I wond...
by mazhar
Thu Oct 06, 2016 12:29 am
Forum: AbleCommerce GOLD
Topic: Login Automation
Replies: 2
Views: 5962

Re: Login Automation

Can't you try Single Signon by using same cookies for both websites? In your builder application you can validate using data from ablecommerce database and then have same Forms Authentication cookies on both websites. This way user logged into one website will be considered loggedin when reached to ...
by mazhar
Wed Oct 05, 2016 12:37 am
Forum: AbleCommerce GOLD
Topic: CustomFieldsManager error
Replies: 6
Views: 7254

Re: CustomFieldsManager error

I just updated your other thread viewtopic.php?f=65&t=18937
by mazhar
Wed Oct 05, 2016 12:36 am
Forum: AbleCommerce GOLD
Topic: Anyone have R12 ExtendedFields working?
Replies: 15
Views: 15436

Re: Anyone have R12 ExtendedFields working?

I am able to reproduce the issue. It seems like order object is having difficulty saving the custom field data due to custom save implementations to trigger alerts. Custom field seems to be working for other objects like product. The only way to save custom fields with order object seems to be by no...
by mazhar
Mon Oct 03, 2016 12:19 am
Forum: AbleCommerce GOLD
Topic: Trying to open Able on Local host
Replies: 1
Views: 3832

Re: Trying to open Able on Local host

Are you publishing your website to localhost? Please check following stack overflow post
http://stackoverflow.com/questions/9017 ... pplication
by mazhar
Wed Sep 28, 2016 9:12 pm
Forum: AbleCommerce GOLD
Topic: Dynamically Adding Products to Cart
Replies: 1
Views: 3957

Re: Dynamically Adding Products to Cart

This is possible by using CommerceBuilder API. If you want the product item to be added using a link then working code for AC Gold is posted in this thread http://forums.ablecommerce.com/viewtopic.php?f=65&t=17169 Simply download AddTobasket.aspx and upload it to your website root. Now when you visi...
by mazhar
Tue Sep 27, 2016 9:02 pm
Forum: AbleCommerce GOLD
Topic: How to save basket when anonymous logs in to registered?
Replies: 14
Views: 13670

Re: How to save basket when anonymous logs in to registered?

From title I thought that you wanted to use replace registered user's basket with one from anonymous user which is happening right now. If you want to merge the basket then you can extend BasketService and override its Transfer method. In there you will copy contents from target basket to source bas...
by mazhar
Sun Sep 25, 2016 11:11 pm
Forum: AbleCommerce GOLD
Topic: How to save basket when anonymous logs in to registered?
Replies: 14
Views: 13670

Re: How to save basket when anonymous logs in to registered?

Joe isn't it already happening in Gold? In my test and if a I look at BasketService.Transfer method I can see we always overwrite basket with the one from anonymous user.
by mazhar
Sun Sep 18, 2016 9:30 pm
Forum: AbleCommerce GOLD
Topic: R12 reports..
Replies: 1
Views: 3320

Re: R12 reports..

Glad that you liked them. Regarding the difference in reports I will have it reported for confirmation and fix if reproduced.
by mazhar
Fri Sep 16, 2016 4:24 am
Forum: AbleCommerce GOLD
Topic: Email issues in iOS 10 Mail App
Replies: 11
Views: 12503

Re: Email issues in iOS 10 Mail App

If I am correct then idea of having templates from database has been discussed before and I think at one point we had them this way in ac7. Its very hard to maintain large HTML contents in database specially when you release patches. Its also very easy to have them under version control with physica...
by mazhar
Wed Sep 14, 2016 8:42 pm
Forum: AbleCommerce GOLD
Topic: Putting Category Back into the URL
Replies: 9
Views: 7899

Re: Putting Category Back into the URL

For old URL you will need to have a redirect configured. Once you have a product configured via custom URL the old one won't work. System needs a redirect to make sure old one points to new URL.
by mazhar
Wed Sep 07, 2016 1:18 am
Forum: AbleCommerce GOLD
Topic: Large catalog timeout generating Sitemap file
Replies: 7
Views: 10582

Re: Large catalog timeout generating Sitemap file

What happens when feed is generated automatically without manually triggering it from page? In feed there is some code related to price calculation and variants, I wonder if you try commenting out that part obviously just for testing and see if it makes any difference. Is there any error in log ?
by mazhar
Wed Sep 07, 2016 12:49 am
Forum: AbleCommerce GOLD
Topic: category flyout popping under product
Replies: 2
Views: 5172

Re: category flyout popping under product

It seems like you need to set the z-index for menu in stylesheet. Try adding following to your style.css file under theme folder. .categoryMenu ul.ui-menu { z-index:1; } Save the stylesheet and finally to a hard refresh in your browser using CTRL + F5. This will ensure a cache refresh of stylesheet ...
by mazhar
Wed Sep 07, 2016 12:33 am
Forum: AbleCommerce GOLD
Topic: Odd behavior with 404 custom errors page
Replies: 4
Views: 5473

Re: Odd behavior with 404 custom errors page

Joe what you noticed happened earlier with websites having extension less URLs. It was discussed here http://forums.ablecommerce.com/viewtopic.php?f=65&t=18776 Apparently asp.net overlooked customErrors settings in web.config when missing URL was an extension less URL. It was always jumping towards ...