| |
Tokra30 wrote:I fixed the problem after a lot of goolging around I have changed the following section of the web config file..
<authentication mode="Forms"> <forms name="NOPCOMMERCE.AUTH" loginUrl="~/login" protection="All" timeout="43200" path="/" requireSSL="false" slidingExpiration="true" cookieless="UseCookies"/> </authentication>
Also added a new folder called.
App_Browsers and created a file in that called
BrowserFile.browser
Containing the following:
<browsers> <browser refID="Default"> <capabilities> <!-- To avoid wrong detections of e.g. IE10 --> <capability name="cookies" value="true" /> <capability name="ecmascriptversion" value="3.0" /> </capabilities> </browser> </browsers>
Web pages of intrest are: http://www.hanselman.com/blog/FormsAuthenticationOnASPNETSitesWithTheGoogleChromeBrowserOnIOS.aspx and http://connect.microsoft.com/VisualStudio/feedback/details/662275/asp-net-user-agent-sniffing-and-ie10-internet-explorer-10
Just incase any one else comes across this...
this worked for me, thanks, i'm sure more will come across this
Posted:
one month ago
|
if anyone has a recommendation (other than a 3rd party plugin), i'd appreciate knowing some options.
Posted:
one month ago
|
MediaCarbon wrote:How do you add a redirect the way you did? I'm having the same exact problem on Arvixe.
heh, guess I should have shared that- you will need to add a rewrite rule to the Web.config, I used IIS Manager to create the rules for me, here are the outputs
change 'websitename' to your domain name and put this in your web.config
<rewrite> <rules> <rule name="CanonicalHostNameRule1"> <match url="(.*)" /> <conditions> <add input="{HTTP_HOST}" pattern="^www\.websitename\.com$" negate="true" /> </conditions> <action type="Redirect" url="http://www.websitename.com/{R:1}" /> </rule> </rules> </rewrite>
in my web.config this code was between the </handlers> and <staticContent>
Posted:
5 months ago
|
Hi Community,
Are any of you out there - using 3rd party software to manage inventory - have some type of sync between your inventory software and the inventory of NopCommerce
I'm trying to find an inventory management solution that integrates or can be integrated with NopCommerce; most of what I've seen out there uses proprietary databases, wants to use their online store front, or they provide an incomplete setup and require $$$ to have it 'integrated'.
This inventory system would be syncing with 2 NopCommerce stores.
I'd rather work with something already developed instead of starting from scratch.
Any recommendations?
Posted:
6 months ago
|
a.m. wrote:What version are you using? Please also see this post by MikeCaldera. It should help
The store owner let me know that it was a day and night difference. They haven't had anymore incomplete addresses or complaints about the state field not working.
I did a post about this fix (pics and stuff) if anyone is having trouble understanding what it involves
http://jacobthegeek.com/nopcommerce-2-5-state-field-not-selectable/
Posted:
8 months ago
|