Is there a way to extend extra values to options.
ie i am using options to display sizes of my products. but i also want to store width and height
Search found 27 matches
- Fri Feb 27, 2009 2:21 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Adding extra values to options
- Replies: 1
- Views: 1853
- Mon Feb 09, 2009 1:59 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: How to extract user Id from session
- Replies: 1
- Views: 1733
How to extract user Id from session
Hi as a work around to the "Flash Cookie bug" i am passing thru the session in flash var.
My question is , once i have the session, how do i then exract the userId.
My question is , once i have the session, how do i then exract the userId.
- Fri Feb 06, 2009 5:40 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Creating token from session Id
- Replies: 0
- Views: 2513
Creating token from session Id
I am having an issue where i am losing the Token when i post from flash. I understand i could use a flashVar and pass thru the userId and then create the Token from that. But i'm wondering is there a more secure way of doing this. If i pass through the sessionId is there a way to create the token fr...
- Mon Feb 02, 2009 1:16 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Posting to Ashx files and requesting token
- Replies: 2
- Views: 2383
Re: Posting to Ashx files and requesting token
I've included IReadOnlySessionState
public class test : IHttpHandler, IReadOnlySessionState {
The issue seems to be that the session in timing out. Tho in the web.config
timeout="30" // 30 mins
<sessionState mode="InProc" timeout="30" cookieName="AC7.SESSIONID"/>
public class test : IHttpHandler, IReadOnlySessionState {
The issue seems to be that the session in timing out. Tho in the web.config
timeout="30" // 30 mins
<sessionState mode="InProc" timeout="30" cookieName="AC7.SESSIONID"/>
- Mon Feb 02, 2009 9:19 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Posting to Ashx files and requesting token
- Replies: 2
- Views: 2383
Posting to Ashx files and requesting token
I'm getting some confusing results around myCustom.ashx handler.
If i visit the handler via the browser:
i get Token.Instance.User.UserId = 162 // which is correct
If i post to the handler:
i get Token.Instance.User.UserId = 163 // obviously a new user is generated.
Any thoughts?
If i visit the handler via the browser:
i get Token.Instance.User.UserId = 162 // which is correct
If i post to the handler:
i get Token.Instance.User.UserId = 163 // obviously a new user is generated.
Any thoughts?
- Fri Nov 07, 2008 9:44 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Credit cards numbers / expiration
- Replies: 1
- Views: 1989
Credit cards numbers / expiration
ok, i know a lot has been made of the way AC always saves an order. Just wondering if a method exist in the API that will check for valid credit card numbers and expiration dates. I am using paypal which returns a 107xx error if the billing address is incorrect. Why can it not the same look up on ex...
- Fri Nov 07, 2008 9:14 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Getting paypal error code
- Replies: 2
- Views: 2414
Re: Getting paypal error code
afraid not. that was the first thing i tried. That returns a string like "failure".
I've done something like this
String regex = @"\d{5}";
foreach (Match m in Regex.Matches(responseMessage, regex))
{
return (m.Value);
}
I've done something like this
String regex = @"\d{5}";
foreach (Match m in Regex.Matches(responseMessage, regex))
{
return (m.Value);
}
- Fri Nov 07, 2008 4:45 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Getting paypal error code
- Replies: 2
- Views: 2414
Getting paypal error code
on Transaction authTx = GetLastAuthorization(lastPayment); authTx.ResponseMessage I get something like this, This transaction cannot be processed. (10747) Is there a way to just get the code "10747" I've tried every property on Transaction. Of course i could use regEx to extract it, but it's not mos...
- Wed Oct 29, 2008 12:18 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: provider.DoAuthorize
- Replies: 0
- Views: 3643
provider.DoAuthorize
Hi I'm trying to get PayPalButton.asx link drectly to paypal. I've started adding provider.DoAuthorize(authorizeTransactionRequest); Any tips on the best way to do this. PayPalButton.asx ####################### PaymentGateway gateway = CommerceBuilder.Payments.Providers.PayPal.PayPalProvider.GetPayP...
- Mon Oct 27, 2008 12:49 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: how to directly link to paypal but register an order
- Replies: 1
- Views: 2238
Re: how to directly link to paypal but register an order
Any thoughts on this? Where is the method that generates the form just prior to submission to PayPal.
- Mon Oct 27, 2008 12:47 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: SSL helper
- Replies: 2
- Views: 2421
Re: SSL helper
cool, thanks.
- Mon Oct 27, 2008 10:30 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: SSL helper
- Replies: 2
- Views: 2421
SSL helper
Is there some kind of SSL Helper. ie i have a new page
mydomain.com/mydir/payment.aspx
just wondering if there is some setting in able that manages which pages have to be secure
mydomain.com/mydir/payment.aspx
just wondering if there is some setting in able that manages which pages have to be secure
- Mon Oct 27, 2008 8:48 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Credit card failures - how to let the user try again.
- Replies: 1
- Views: 1903
Credit card failures - how to let the user try again.
I've noticed that when an order that goes through and fails ie PaymentStatus.AuthorizationFailed that the basket is deleted. Therefore there is no way to prompt the user to go back and re-enter there credit or perhaps try another method. Have i got this correct? What is AC procedure for allowing use...
- Mon Oct 27, 2008 5:01 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: how to directly link to paypal but register an order
- Replies: 1
- Views: 2238
how to directly link to paypal but register an order
Hi, currently when the user selects paypal they are directed to view their order /checkout/receipt.aspx?orderId=## and then there is another paypal button to click that sends you to PayPal. I'm trying to simplify the process so when the user clicks on paypal they are sent directly to paypal. ie i do...
- Mon Oct 27, 2008 3:58 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: need to change Redirect login
- Replies: 2
- Views: 2615
Re: need to change Redirect login
thanks, all working
- Fri Oct 17, 2008 5:31 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: need to change Redirect login
- Replies: 2
- Views: 2615
need to change Redirect login
we have created our own login page. It's address is "/login/" ie not "/login.aspx" I cannot find a redirect setting in the web.config. Ideally i'd like to do something like <authentication mode="Forms"> <forms name="Able" loginUrl="~/login/default.aspx" timeout="15" protection="All" cookieless="UseC...
- Wed Oct 08, 2008 5:28 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: password policy
- Replies: 1
- Views: 1975
password policy
I wish to amend some properties on
Admin/Store/Security/PasswordPolicy.aspx
I would like
- extend MaximumPasswordAge to unlimited
- Have Maximum login failures greater than the allowed 10
I can't find any config files or databases settings to amend these
thanks
Admin/Store/Security/PasswordPolicy.aspx
I would like
- extend MaximumPasswordAge to unlimited
- Have Maximum login failures greater than the allowed 10
I can't find any config files or databases settings to amend these
thanks
- Thu Sep 04, 2008 9:54 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Asset Manager
- Replies: 1
- Views: 2106
Asset Manager
Hi all, I am having a lot trouble with /Admin/Products/Assets/AssetManager.aspx A few months ago I originally installed Able 7 (Build 9879) though have just apply "PostFinalPatch_2008AUG07.zip" which has no updates to this file. I find the page very temperamental, 1. If I navigate to Manage > Images...
- Wed Sep 03, 2008 12:47 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: order status
- Replies: 2
- Views: 2591
order status
hi i'm wondering if there is a way to for the order status to refer to the orderItem not the order. Take the following example A user orders: 1 x product with cat printed on it 1 x product with dog printed on it we want to be able to assign the custom status "printed" to cat product without effected...
- Sun Aug 24, 2008 7:12 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: updating UserId's
- Replies: 0
- Views: 4362
updating UserId's
We are currently using the UserId for saving some of our own custom data ( ie in myCustomTable ). Once the user then selected the item and creates an order. They are then prompted to login and which generate a new userId. So obviously i need to update myCustomTable.UserId with the new UserId Just wo...
- Tue Jul 29, 2008 12:47 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Variants
- Replies: 1
- Views: 2149
Variants
i need to amend the variants of KitComponents. I'm using the AC api. But want to know if a new row in added that is linked to order. ie is possible to programitically amend a kit component's variant. Also would someone care to explain how the order knows which variant was selected. I can't seem to s...
- Mon Jul 28, 2008 9:01 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: components lose their variants
- Replies: 2
- Views: 2605
components lose their variants
I am using Kit product: "Product_1" which has 1 component "component_1"
component_1 uses a variant called colour (red, green)
When i add component_1 to product_1 there is validation that requires that i choose a colour
ie the user can no longer select the colour.
component_1 uses a variant called colour (red, green)
When i add component_1 to product_1 there is validation that requires that i choose a colour
ie the user can no longer select the colour.
- Mon Jul 28, 2008 8:46 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: custom fields for basketItem & orderItem
- Replies: 9
- Views: 6653
Re: custom fields for basketItem & orderItem
wow, thats its. Really appreciate your response. Very useful feature..
ok, now for bonus point. Is there a way to set up a category that will always use a product templete?
ie everything put in category Tshirt will use the product template called "ShirtTemplate"
thanks again.
ok, now for bonus point. Is there a way to set up a category that will always use a product templete?
ie everything put in category Tshirt will use the product template called "ShirtTemplate"
thanks again.
- Thu Jul 24, 2008 1:57 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: custom fields for basketItem & orderItem
- Replies: 9
- Views: 6653
Re: custom fields for basketItem & orderItem
thanks, let me be more specific. we are using a Kit which consist of 1 -> unlimited products ie - T-shirt - design 1 (Guid) - design 2 (Guid) - design 3 (Guid) each of the designs needs a unique id. When you mention adding custom fields to product, are you referring to varients. I don't see anything...
- Thu Jul 24, 2008 11:47 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: custom fields for basketItem & orderItem
- Replies: 9
- Views: 6653
Re: custom fields for basketItem & orderItem
Mazhar, Thanks for link. Though don't understand it in the context of adding a custom field to BasketItem and OrderItem.
would you mind giving a further explanation. How can i put a wrapper around a table.
much appreciated.
would you mind giving a further explanation. How can i put a wrapper around a table.
much appreciated.