nopCommerce 4.00 is released

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
6 years ago
Where can I find the correct permission settings for nopCommerce 4.0?
http://docs.nopcommerce.com/display/en/Installation+guide still mentions:
Installation process



nopCommerce requires write permissions for the directories and files described below:

\App_Data\
\bin\
\Content\
\Content\Images\
\Content\Images\Thumbs\
\Content\Images\Uploaded\
\Content\files\ExportImport\
\Plugins\
\Plugins\bin\
\Global.asax
\web.config

But this is the 3.x folderstructure.
6 years ago
[email protected] wrote:
Where can I find the correct permission settings for nopCommerce 4.0?

Please find the updated document here. Thanks!
6 years ago
My pleasure.

I already found the settings via

Admin > System > Warnings

Maybe useful for others.
5 years ago
atulrungta wrote:





=> I've got this error and spent hours to fix. The reason is that .NET Core Hosting Bundle is installed before installing Microsoft Visual C++ 2015 Redistributable, it was a wrong order. According to microsoft : https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/iis/?view=aspnetcore-2.1&tabs=aspnetcore2x

" install the Microsoft Visual C++ 2015 Redistributable before installing the .NET Core Hosting Bundle."

So I install .NET Core Hosting Bundle again ( actually repair ), then It works.
5 years ago
registered view

remove one if condition

@if (Model.AllowCustomersToSetTimeZone)
            {
                <div class="fieldset">
                    <div class="title">
                        <strong>@T("Account.Preferences")</strong>
                    </div>
                    <div class="form-fields">
                        @if (Model.AllowCustomersToSetTimeZone)
                        {
                            <div class="inputs">
                                <label asp-for="TimeZoneId" asp-postfix=":"></label>
                                <select asp-for="TimeZoneId" asp-items="Model.AvailableTimeZones"></select>
                                <span asp-validation-for="TimeZoneId"></span>
                            </div>
                        }
                    </div>
                </div>
            }
5 years ago
a.m. wrote:
But maybe it's possible to make "order completed" possible to manage this page from admin panel?
Could you please clarify your suggestion? What exactly do you want to manage?


Hi! sorry i don't saw earlier your answer. :)

On Order Completed page:
We edit text, little css / graphic. Like on other Topics like shipping address. We don't want only information "Order confirmation but + few information to give hint Clients what next.

We always add this after upgrade, and i'm wonder why it's not implemented too edit like with the other topics page?
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.