Search found 436 matches

by jguengerich
Fri Jul 26, 2013 3:05 pm
Forum: AbleCommerce GOLD
Topic: Password format questions
Replies: 2
Views: 2456

Re: Password format questions

No, I'm talking about how the passwords are hashed before they are stored in the ac_UserPasswords table. By looking at the source it appears that there are several choices, determined the PasswordFormat store setting. The default (when the setting is not found in the ac_StoreSettings table) is SHA1....
by jguengerich
Fri Jul 26, 2013 2:04 pm
Forum: AbleCommerce GOLD
Topic: Password format questions
Replies: 2
Views: 2456

Password format questions

Is there a way to change the PasswordFormat store setting through the Admin UI?

Can it be changed if there are already existing passwords? Or, to put it another way, how are the passwords recrypted if I change the password format?
by jguengerich
Fri Jul 26, 2013 12:55 pm
Forum: AbleCommerce GOLD
Topic: Updating Invoice and Packing Slip Print Invoices
Replies: 3
Views: 6101

Re: Updating Invoice and Packing Slip Print Invoices

For the sold to, you could add another column to shippingAddresses table (in Admin\Orders\Print\PackSlips.aspx). So, instead of this: <table class="shippingAddresses"> <tr> <th class="shipFrom"> <asp:Label ID="ShipFromCaption" runat="server" Text="Ship From:"></asp:Label> </th> <th class="shipTo"> <...
by jguengerich
Fri Jul 26, 2013 6:42 am
Forum: AbleCommerce GOLD
Topic: Error when paying order balance using credit card
Replies: 11
Views: 9450

Re: Error when paying order balance using credit card

Are there any updates/progress on this issue?
by jguengerich
Thu Jul 25, 2013 10:06 am
Forum: AbleCommerce GOLD
Topic: Add a related table
Replies: 4
Views: 4123

Re: Add a related table

Thanks mazhar. That solved that error but I ran into others. For now I'm just going to use Multi-line text boxes for Address 2. It seems to work, and if I force \r\n at the end of each line, it looks correct when shown in literal controls and email templates. Also, there would be a lot of other cust...
by jguengerich
Thu Jul 25, 2013 7:53 am
Forum: AbleCommerce GOLD
Topic: Forum notifications stopped?
Replies: 5
Views: 3736

Re: Forum notifications stopped?

Looks like they have stopped again.
by jguengerich
Wed Jul 24, 2013 2:36 pm
Forum: AbleCommerce GOLD
Topic: Add a related table
Replies: 4
Views: 4123

Re: Add a related table

Do you mean the Address.hbm.xml file? It is already included.
by jguengerich
Wed Jul 24, 2013 8:27 am
Forum: AbleCommerce GOLD
Topic: Add a related table
Replies: 4
Views: 4123

Add a related table

Is there any documentation on how to add a related table to the AbleCommerce data model (using Gold R5 SR1)? I want to add 2 more address lines for each address. I would like to access them simply by referencing someAddress.Address3 and someAddress.Address4. I added a table to the database: USE [Abl...
by jguengerich
Tue Jul 23, 2013 8:59 am
Forum: AbleCommerce GOLD
Topic: Invoice Layout
Replies: 19
Views: 23307

Re: Invoice Layout

I just realized the printed version width is quite a bit different (at least for me), but the CreatedDate does wrap to the next line. You could also switch to pixels instead of percent for the HeaderStyle-Width if it helps you get the look you want.

Code: Select all

HeaderStyle-Width="125px"
by jguengerich
Tue Jul 23, 2013 8:33 am
Forum: AbleCommerce GOLD
Topic: Invoice Layout
Replies: 19
Views: 23307

Re: Invoice Layout

You could put something like this just before the last line that says </table> at the bottom of the Admin/Orders/Print/Invoices.ascx file. <tr> <td colspan="4" class="dataSheet"> <asp:GridView ID="OrderNotes" runat="server" ShowHeader="true" AutoGenerateColumns="false" CellPadding="0" CellSpacing="0...
by jguengerich
Mon Jul 22, 2013 9:14 am
Forum: AbleCommerce GOLD
Topic: Adding new customers to specific group upon regstration
Replies: 15
Views: 7116

Re: Adding new customers to specific group upon regstration

There are two places in EditBillAddress that have the code MembershipCreateStatus createStatus; User newUser = UserDataSource.CreateUser(newUserName, newEmail, newPassword, string.Empty, string.Empty, true, 0, out createStatus); One is in the BillingPageContinue_Click method, and one is in the Creat...
by jguengerich
Sun Jul 21, 2013 6:01 pm
Forum: AbleCommerce GOLD
Topic: Adding new customers to specific group upon regstration
Replies: 15
Views: 7116

Re: Adding new customers to specific group upon regstration

You need the earlier code in there too. So, right under the line of code that starts with "User newUser = UserDataSource.CreateUser(...", put all of this: newUser.IsApproved = true; newUser.Save(); Group group = AbleContext.Current.Store.Groups.Find(g => g.Name == "Group Name"); if (group != null) {...
by jguengerich
Fri Jul 19, 2013 3:49 pm
Forum: AbleCommerce GOLD
Topic: Adding new customers to specific group upon regstration
Replies: 15
Views: 7116

Re: Adding new customers to specific group upon regstration

You won't see an error, that's why the if (...) statement is there. If you are set up to run the site in debug mode within Visual Studio, set a breakpoint at the if statement and see whether group is null. If you aren't set up for that, you can use the error log as your debugger: if (group != null) ...
by jguengerich
Fri Jul 19, 2013 3:07 pm
Forum: AbleCommerce GOLD
Topic: Adding new customers to specific group upon regstration
Replies: 15
Views: 7116

Re: Adding new customers to specific group upon regstration

When you run my code, is it finding the group, or is group == null?
by jguengerich
Fri Jul 19, 2013 2:59 pm
Forum: AbleCommerce GOLD
Topic: Adding new customers to specific group upon regstration
Replies: 15
Views: 7116

Re: Adding new customers to specific group upon regstration

Are you getting anything in the Error Log?
by jguengerich
Fri Jul 19, 2013 2:46 pm
Forum: AbleCommerce GOLD
Topic: Adding new customers to specific group upon regstration
Replies: 15
Views: 7116

Re: Adding new customers to specific group upon regstration

BTW, assuming you are putting this code in the CreateNewAccount() method, you may want to do it inside the "if (status == MembershipCreateStatus.Success)" statement (the next line after the 2 lines you show in the second code section of your post), in case the user isn't successfully created.
by jguengerich
Fri Jul 19, 2013 2:34 pm
Forum: AbleCommerce GOLD
Topic: Customizations in Gold
Replies: 50
Views: 33222

Re: Customizations in Gold

Check your search settings, such as match case and match whole word.
by jguengerich
Fri Jul 19, 2013 2:28 pm
Forum: AbleCommerce GOLD
Topic: Adding new customers to specific group upon regstration
Replies: 15
Views: 7116

Re: Adding new customers to specific group upon regstration

Haven't tried this, but my first thought is save the user first, then add them to the group: newUser.IsApproved = true; newUser.Save(); Group group = AbleContext.Current.Store.Groups.Find(g => g.Name == "Group Name"); if (group != null) { group.Users.Add(newUser); group.Save(); } Oops, didn't have t...
by jguengerich
Fri Jul 19, 2013 2:21 pm
Forum: AbleCommerce GOLD
Topic: Customizations in Gold
Replies: 50
Views: 33222

Re: Customizations in Gold

Not sure. When I scroll through the code you just posted, it is there, towards the bottom of the code. Just manually scroll through the code until you see #region BILLING ADDRESS. Do you see it here on the forum? If so, go to Visual Studio and make sure none of the #regions are collapsed - look for ...
by jguengerich
Fri Jul 19, 2013 1:50 pm
Forum: AbleCommerce GOLD
Topic: Customizations in Gold
Replies: 50
Views: 33222

Re: Customizations in Gold

I think you are still putting it at the wrong place. Look for this area of the file: #region BILLING ADDRESS protected void InitAddressForm() { Address address = AbleContext.Current.User.PrimaryAddress; FirstName.Text = address.FirstName; LastName.Text = address.LastName; Address1.Text = address.Add...
by jguengerich
Thu Jul 18, 2013 8:47 am
Forum: AbleCommerce GOLD
Topic: Error when paying order balance using credit card
Replies: 11
Views: 9450

Re: Error when paying order balance using credit card

Here is what I have found, but I am stumped as far as determining the cause and solution: Paying by credit card when ordering: CommerceBuilder.Services.PaymentService.Authorize(Payment payment) does this (obviously I've left out the rest of the try/catch structure): AuthorizeTransactionRequest reque...
by jguengerich
Wed Jul 17, 2013 3:32 pm
Forum: AbleCommerce GOLD
Topic: Forum notifications stopped?
Replies: 5
Views: 3736

Re: Forum notifications stopped?

Well they've been trickling in this afternoon (albeit out of order :?), so I guess it is fixed.
by jguengerich
Wed Jul 17, 2013 3:28 pm
Forum: AbleCommerce GOLD
Topic: Error when paying order balance using credit card
Replies: 11
Views: 9450

Error when paying order balance using credit card

AC Version: Gold R5 SR1 Payment Gateway: Cybersource If I do the following: 1. Login as a user 2. Go to the Account page (the Orders tab is selected by default) 3. Click the View Order button for an order that has a balance due 4. Click the Pay Now link 5. Fill in the credit card info 6. Click the P...
by jguengerich
Wed Jul 17, 2013 9:53 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Mailbox name not allowed
Replies: 3
Views: 6484

Re: Mailbox name not allowed

It looks like the SMTP server that AbleCommerce communicates with to send emails is saying that it isn't allowed to send emails to one of the recipients. If you have access to the SMTP server, or someone can access it for you, see if it's log indicates which email address it doesn't like. It may be ...
by jguengerich
Tue Jul 16, 2013 6:51 am
Forum: AbleCommerce GOLD
Topic: Forum notifications stopped?
Replies: 5
Views: 3736

Forum notifications stopped?

Since yesterday, I have not been getting email notifications when there are new posts to threads I am subscribed to. I have checked my settings, and they are correct. Has anyone else noticed this?