nopcommerce

Can't build notcommerce project under appharbor

北城以北 提交于 2019-12-11 00:46:45
问题 I used nopcommerce to create a store. And now I want to deploy it on appharbor. But I have a small issue: nopcommerce hasn't .sln file (which have list of files) and appharbor can't build project. Thank you. 回答1: If your repository contains no solution files, it will be treated as a WebMatrix project and deployed straight up. This works fine for Orchard CMS, for example -- see this guide for more details. There's more on the AppHarbor solution file convention here. You can make the source

ASP.NET MVC 3 - Replacing HttpContext Response Not Working

梦想的初衷 提交于 2019-12-10 15:56:15
问题 I am using Nopcommerce which has recently been upgraded to use MVC3 - previously it used webforms. I am attempting to connect to Worldpay's (payment gateway) hosted site. The process is a little convoluted but essentially a form needs to be submitted to Worldpay and the user is then redirected to their hosted site to fill in their credit card details etc. Nopcommerce takes care of this using a Post method which, on the server side, builds the form that needs to be posted and replaces the

How to deploy nopCommerce 3.5 to new server from source?

两盒软妹~` 提交于 2019-12-10 11:14:06
问题 I have nopCommerce 3.5 source code with numerous customizations and plugins that needs to be moved to a new server. I restored the database backup and have the source on the new server. What other steps are needed to ensure proper deployment to the new development server? 回答1: For the latest NopCommerce version, there is a short instructions file for publishing your code to the server here: http://nopcommerce.codeplex.com/SourceControl/latest#src/Deploying.Readme.txt I haven't personally

nopCommerce 2.40 Admin Product Edit Addition

杀马特。学长 韩版系。学妹 提交于 2019-12-08 09:29:11
问题 Hopefully I can get some headway here as nopCommerce forums has been silent to my post. My current situation is that for each product we have in our store, we(admins) need to upload a specific document and have that document show to the end user when they are browsing the product detail section, through means of a link and download. So I figured I would chop this project up and first attempt to develop the upload function from the admin area. In case anyone else can help but doesn't know

Can't Access Admin CP on nopCommerce v2.60

我的未来我决定 提交于 2019-12-08 05:44:08
问题 I have gone here on CodePlex and downloaded nopCommerce v2.60. I am on a Windows 8 Pro 64x Machine, I have .NET Framework and SQLEXPRESS 2012 installed. The nopCommerce solution installs perfectly fine, no problem ! All front-end stuff work fine. But when I try and access: localhost:xxxx/admin I get the following error: I have already tried re-installing with fresh database and files, but no success. I don't know how to get it to work. Before this use to work no problems at all! 回答1: You need

No parameterless constructor defined for this object

久未见 提交于 2019-12-08 05:43:36
问题 I am getting the following error on the index page: == No parameterless constructor defined for this object. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.MissingMethodException: No parameterless constructor defined for this object. Source Error: Line 5: <div class="header-links-wrapper"> Line 6: @Html.Action(

how to run SmartStore.NET in localpc

大憨熊 提交于 2019-12-06 15:55:33
问题 How do I start smartstore.net in Visual Studio localhost? I downloaded the GitHub code and opened project file from SmartStoreNET-2.x\src\SmartStoreNET.sln The download link is: https://github.com/liuzengjun/smartstore 回答1: here some steps for build project 1.open you project/solution in visual studio 13 or you can use visual studio 12 but make sure that it must be fully updated because solution uses the latest version of mvc and all other controls. 2.build SmartStore.Web.Framework. 3.build

No parameterless constructor defined for this object

天大地大妈咪最大 提交于 2019-12-06 14:40:20
I am getting the following error on the index page: == No parameterless constructor defined for this object. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.MissingMethodException: No parameterless constructor defined for this object. Source Error: Line 5: <div class="header-links-wrapper"> Line 6: @Html.Action("HeaderLinks", "Common") Line 7: @Html.Action("FlyoutShoppingCart", "ShoppingCart") Line 8: </div> Line 9: <div

“TypeError: $(…).magnificPopup is not a function” in nopCommerce 3.40

醉酒当歌 提交于 2019-12-06 07:54:40
The following code displays picture thumb nails and attaches a magnificPopup event. it also embeds a picture within a picture. This all worked a few days ago but now broken it somehow and now all i get is a js type error. I have tried fiddling around with jQuery.noConflict() even though i have not added any new libs or updated old ones but that of course did nothing. i know that the problem has to do with magnificPopup somehow because if i simply remove the script from the code everything works fine again. I guess i made a simple error somewhere which leads to this but i can't find anything

Authentication approach to be use in asp.net Web api and angular js

痞子三分冷 提交于 2019-12-06 04:11:51
问题 I am creating 1 website using Web api and angular js and i am so much confused about Authentication to be used in my web site. I have created one login.js in which there would be my Login method which will post my Username/Emailid and password to my Web Api and the method in web api will authenticate that user. Code: $scope.Login() { $.post("api/Authentication/Login",Username,Password) { } } Web api code: [Route] Public Task<object> Login([FromBody] username,password) { //method to