Search
RSS

Blog

Comments (0) Office 365 Email Configuration

Extra commands are required for PowerShell to use those commands

  • Install-Module -Name Az.StackHCI
  • Connect-AzAccount (then login to Azure via popup)

Then the rest as per documentation

  • Install-Module -Name ExchangeOnlineManagement -allowprerelease
  • Import-module ExchangeOnlineManag...
Comments (0) nopCommerce WEB API

nopCommerce WEB API covers most of the functionality, including multistore and multivendor.

Please find the frontend methods at https://app.swaggerhub.com/apis/nopCommerceAPI/nop-commerce_web_api_frontend 

and the backend methods at https://app.swaggerhub.com/apis/nopCommerceAPI/nop-commerce_w...

Comments (0) Settings in nopCommerce

General rules for using settings in nopCommerce are as follows:

1. If you have a single store (so you don't use a multistore feature), you can always inject settings by DI.
2. If you use a multistore feature, then getting settings depends on the place of use:

a) you can still inject settings ...

Comments (0) Upgrade a Version

Depending on the system, configuration and access there are different ways people like to upgrade.
The way I do it is to create a new installation in a new directory for v4.7.
Then I run the Install to create a a test database.
This allows you to check the install is all working before making any...

Comments (0) Basic Setup for IIS

Installing nopCommerce and having issues ?

Here is a document which shows the basic Setup for IIS
You can download here https://www.selectsystems.com.au/Content/Server%20install%20IIS%20and%20SQL%20Server.pdf

Or check for errors on a New Installation Here
https://www.selectsystems.com.au/che...

Comments (0) Custom View Engine
You can override the default _AddToCart.cshtml or one in another pluign using a Custom View Engine
Comments (0) Display a PDF from Jscipt Ajax Call

I searched for the answer for a while before I found this works

                $.ajax({
                    cache: false,
                    type: "POST",
                    url: "@Html.Raw(Url.Action("DailyReport"))?date=" + $('#EventStartDateTimeUtc').val() +
                        "&gr...

Comments (0) Developing with Paypal

For Paypal Commerce Plugin I have setup Sandbox and can do transactions no problem.

But where do you see the transactions in Paypal when using the Sandbox like you would in your Buinsess Dashboard ?
What is the link ?

One option is lookign at notifications See https://developer.paypal.com/dev...

Comments (0) Testing/debugging multi-store on Localhost
You can create New Local use Domains in the Local DNS
Comments (0) nopCommerce Plugin Development Manual
This guide covers various aspects, best practices and approaches for nopCommerce plugin development. Plugin is a software component enabling nopCommerce basic features extension. There is an official nopCommerce plugin marketplace distributing both free and paid plugins. Plugins enable developers to add new features and/or customize a UI theme without modifying nopCommerce source code. This is important for stable running of a web application and for upgrading nopCommerce platform to newer versions.