| |
My specific problem was because of custom coding which I don't think will be relevant to anyone else.
But I can refer you to threads http://www.nopcommerce.com/boards/t/2505/force-redirect-from-wwwdomaincom-to-domaincom.aspx?p=2 which I started.
I found in the past this problem was caused by redirects between www. and non www. when page went from non-ssl to ssl. This was caused when a user came on as www. when the site ssl certificate was issued for domain name without www.
Posted:
one year ago
|
Response.Redirect to checkoutcompleted.aspx does not work instead a post back seems to occur, and on page load if cart count =0 (which it is because order has been processed) then redirected to empty cart.
The question is, when SSL is disabled everything works perfectly.
How come the page can not redirect properly when SSL is enabled.
Moreover, other code, custom insert to DB is also failing when SSL is enabled which is even more mystifying.
I am totally stumped.
Help is much appreciated. Thank You!!
Posted:
one year ago
|
The company I work for have a business idea which will be based on offering a subscription based product with recurring billing. I was wondering if nopCommerce can be used as a base for this project.
I have browsed through the forum and see threads related to this, but am unsure if anyone has had success with this approach.
Features I would need supported: 1) Variable recurring billing amounts 2) The ability to cancel subscription/recurring billing 3) Configurable recurring billing cycle length
Thanks in advance for your help with this.
Posted:
2 years ago
|
Check out ExportManger.cs
int MaxStringLength=200; tableDefinition.Add("Name", string.Format("nvarchar({0})",maxStringLength)); tableDefinition.Add("ShortDescription", string.Format("nvarchar({0})", maxStringLength)); tableDefinition.Add("FullDescription", string.Format("nvarchar({0})", maxStringLength));
According to my understanding just change MaxStringLength.
Posted:
3 years ago
|
I am having the same issue described above.
Especially interesting was that while the times were stored correctly in the database the display in the Admin Panel flips dates back one day.
Having Product start & end dates is an essential feature for me and I would greatly appreciate if someone could help me out with this issue.
Thanks in advance.
Another Observation:
While stepping through the code at Administration/Modules/ProductVariantInfo.ascx.cs I noticed that this.ctrlAvailableStartDateTimePicker.SelectedDate = productVariant.AvailableStartDateTime.Value; does not correctly capture the value. .SelectedDate remains null even while value present in ProductVariant.
Posted:
3 years ago
|