Search found 375 matches

by heinscott
Mon Jul 30, 2012 9:58 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Product or Category Name Change and Duplicate Content
Replies: 1
Views: 2855

Product or Category Name Change and Duplicate Content

Hello, Just wondering if anyone has come across this, and how they have addressed this issue. It seems that for any product or category names that have changed for us (due to misspelling or even manufacturer name changes), google seems to find both version of the page, and lists them as duplicate co...
by heinscott
Wed Oct 26, 2011 10:22 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Url Rewriting AC 7.02
Replies: 2
Views: 2531

Url Rewriting AC 7.02

Hello all, I am wondering about url rewriting. I know that the major change with regards to this in AC came around version 7.03, but I was curious whether or not there would be any way that I could accomplish some sort of custom rewrites without upgrading (due to massive amounts of customization). I...
by heinscott
Wed Nov 10, 2010 12:19 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Extend search with additonal tables/columns?
Replies: 6
Views: 3850

Re: Extend search with additonal tables/columns?

Here is a method I used for searching across multiple columns (in one table) with FullText, using different weights per column. I think it should be easy enough to modify this to include the tables and columns you are interested in searching against, since I had to use JOINs to tie the ranks back to...
by heinscott
Wed Nov 10, 2010 9:52 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Extend search with additonal tables/columns?
Replies: 6
Views: 3850

Re: Extend search with additonal tables/columns?

The easiest way I have found to use additional tables of product info in the search is by using the LoadForCriteria in a creative way. Example: Orginal Table: ac_Products Extended Table: ac_ProductsExtended (contains foreign key to ProductId) ProductCollection pc = ProductDataSource.LoadForCriteria(...
by heinscott
Mon Oct 11, 2010 1:42 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Refund without an initial payment
Replies: 1
Views: 1658

Refund without an initial payment

I've been trying to figure out a way to process a refund to a credit card when no original payment exists. We need to make this work for customers who are returning items, but they previously checked out anonymously and don't have an order number. Would this be possible? I know this scenario is not ...
by heinscott
Mon Oct 11, 2010 8:12 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Changing the logout timing
Replies: 1
Views: 1818

Re: Changing the logout timing

...Nevermind. I found the cookie timeouts in the web.config file.
:oops:

Thanks,

Scott
by heinscott
Mon Oct 11, 2010 7:30 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Changing the logout timing
Replies: 1
Views: 1818

Changing the logout timing

Can anyone help me figure out how I could change the default time for cookies to time out in the admin section of able? I have customized our setup to be used as a point of sale (barcode storage and scanning, receipt printing, credit card swipe, etc), but would like to force users to have to logon a...
by heinscott
Tue Sep 28, 2010 8:40 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Custom Reports
Replies: 18
Views: 13181

Re: Custom Reports

Here is about the easiest "Hello World" type example I could think of... Just a simple select from the ac_Stores table bound to a GridView with the columns autogenerated. For the sake of simplicity, I chose to just use the one page aspx format (no code behind). Hope this helps. Scott <%@ Page Langua...
by heinscott
Fri Sep 24, 2010 9:27 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Web store with multiple physical store fronts
Replies: 3
Views: 2580

Re: Web store with multiple physical store fronts

I was hoping to come up with some kind of automated system, kind of set it and forget it, if possible. The problem with dataport is that I need to leave my inventory alone, but sync anything else that has changed. Any other ideas for me? This all of a sudden seems like it's going to be a little more...
by heinscott
Mon Sep 20, 2010 1:36 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Web store with multiple physical store fronts
Replies: 3
Views: 2580

Re: Web store with multiple physical store fronts

Okay... so scratch all the previous ideas.... We've decided, instead, to run a separate Able Commerce store for each physical location, and just auto sync our products and category structures. Would anyone have any kind of good suggestions for this? At first I didn't think it would be too big of an ...
by heinscott
Fri Sep 17, 2010 10:37 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Product flag for Ship Separately really isn't
Replies: 7
Views: 3648

Re: Product flag for Ship Separately really isn't

I could be wrong about this, but isn't the ship separately designator used for kit items that belong to different warehouses? So, instead of a kit with different components all shipping in the same shipment, they could be split up by warehouse? I haven't upgraded yet, so I am just speaking from past...
by heinscott
Wed Sep 15, 2010 11:50 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Duping Live site to Beta site
Replies: 13
Views: 6104

Re: Duping Live site to Beta site

On your beta site, have you tried modifying the storesettings table directly? On my local side, I always have to change the value:
SSLEnabled to false before it will run. Make sure you also reset the app pool after you've made the change.

Scott
by heinscott
Wed Sep 15, 2010 7:50 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Web store with multiple physical store fronts
Replies: 3
Views: 2580

Web store with multiple physical store fronts

I was wondering if anyone could give me advice concerning a new project I will soon be undertaking? We are currently in the process of rebranding our brick and mortal locations to be the same as our PoolGeek web store. As a result, we would like to have all of these stores run off of the same system...
by heinscott
Mon Sep 13, 2010 10:57 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: CountForCriteria injection problem
Replies: 4
Views: 2775

Re: CountForCriteria injection problem

Thanks! I will try that SafeSqlString method.

Scott
by heinscott
Fri Sep 10, 2010 9:30 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: CountForCriteria injection problem
Replies: 4
Views: 2775

CountForCriteria injection problem

I have a small problem... McAfee secure scan is telling me that my site has the possibility of an injection attack. I have an email signup in my footer that I want to use to sign people up to our list IF they are not on any other email list already... Here is the code that causes the error.... strin...
by heinscott
Fri Sep 10, 2010 9:27 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Long Shot...
Replies: 4
Views: 3290

Re: Long Shot...

Thanks for giving it a shot, Joe. Turns out there was some problem with the ToString("ulc")... Seems that particular method will cause an error when the email template is being sent from code called from Global.ascx. I just changed all references to ToString("C") and everything worked as expected. T...
by heinscott
Thu Sep 02, 2010 8:09 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Long Shot...
Replies: 4
Views: 3290

Re: Long Shot...

Okay... here's a bit more info, if anyone wants to try to help me now... Here are the different ToString methods used in my email template. The ones with X's next to them are the ones that cause an error. $order.OrderDate.ToString("G") (does not cause an error) $order.Items.TotalPriceById().ToString...
by heinscott
Fri Aug 27, 2010 2:02 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Long Shot...
Replies: 4
Views: 3290

Long Shot...

This is probably a long shot, but wondering if anyone could give me an idea of what could be the problem here. Lately, in my error log, I am receiving this error: Error generating email messages for template 'Order Shipped' having subject 'Your order has shipped from PoolGeek.com'. Here is the debug...
by heinscott
Fri Aug 27, 2010 12:27 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Create a secure page
Replies: 2
Views: 1997

Re: Create a secure page

Thanks, Mazhar. I was looking to secure the whole page, so you answered my question!

Scott
by heinscott
Fri Aug 27, 2010 8:25 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Create a secure page
Replies: 2
Views: 1997

Create a secure page

Hello, Wondering if anyone could help me with creating a secure page on the front end of my site? I have a page that contains the LoginDialog conlib file, as well as a custom conlib that allows a customer to check the status on a shipment by using their order number and last name. The point of this ...
by heinscott
Wed Jul 21, 2010 8:10 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Shipping for kit items in multiple warehouses
Replies: 4
Views: 2766

Re: Shipping for kit items in multiple warehouses

Which version of AC started using this? I'm still on 7.02.
Thanks

Scott
by heinscott
Mon Jul 12, 2010 8:23 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Shipping for kit items in multiple warehouses
Replies: 4
Views: 2766

Shipping for kit items in multiple warehouses

I have a bit of a problem... I have a kit which includes the main product, plus an additional "free" item. Now, the problem I have is that the free item ships from a different warehouse than the main kit item, but when the order is processed, both items are placed in the same shipment (doesn't work ...
by heinscott
Thu May 27, 2010 7:03 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Interesting Scenario
Replies: 3
Views: 2454

Interesting Scenario

Hello! I am in the process of creating a new website, and I would love to use AbleCommerce as the base due to its easy to work with structure and the fact that I've been using it for the past 2 years :). Here is my situation. My customer only sells products by the truckload. Each truck will contain ...
by heinscott
Fri May 14, 2010 10:50 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: MC partial auth, auth reversal, May 1st change?
Replies: 14
Views: 22886

Re: MC partial auth, auth reversal, May 1st change?

Will updates be available for all versions?
Thanks,

Scott