nopCommerce 4.00 BETA released. Please share your impressions

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
6 years ago
pdunleavy75 wrote:
Nice work guys.

Slightly off topic but I notice that in this release the azure picture service is using async calls however the calling function uses ".Result" which will in effect block and cause the call to be synchronous. All database access is also still synchronous.

So this release will speed things up by reducing the time spent in the http request cycle but I don't see it helping much with concurrent user load if you are using sql azure or if you store pictures in azure blob. Switching everything to async in my mind will provide much better performance and scalability benefits than just switching to .net core, you could also start using async viewcomponents as I imagine adding widgets is a big factor in slowing a site down.

https://news.ycombinator.com/item?id=13383016

Thanks a lot! Sure, we know about it. There's a separate work item for this task
6 years ago
larsenlights wrote:
I do not see the feature " phone order". It was planned for this release, but I do not see it anywhere in the release notes.
Is it not done in this release ?

Kenny

Hi Kenny,

This work item is still on our roadmap. Right now you can place orders using "Impersonation" feature only
6 years ago
ellettJoseph wrote:
I downloaded 4.00 BETA version, and tried to install it. First time I entered all the necessary data on the set up page. And it quits quietly. Then tried to run it second time, got this error:
https://www.dropbox.com/s/ojtjk8bw9h8tzf5/NopLoadError.png?dl=0

Tried to debug the code, and it brought up NopCommerce 4.0 BETA successfully. Tested 10 times without debugging, and about 3 times it fails to start. I am using Visual Studio 2017 Professional. It seems like there is a race condition in loading data. We may need put a delay in the code below:

        public virtual IList<ScheduleTask> GetAllTasks(bool showHidden = false)
        {
            var query = _taskRepository.Table;
            Thread.Sleep(2000); //Delay 1 second, it fails 3 times in 10 tries. Delay 2 seconds it fails 1 time in 10 tries.
            if (!showHidden)
            {
                query = query.Where(t => t.Enabled);
            }
            query = query.OrderByDescending(t => t.Seconds);

            var tasks = query.ToList();
            return tasks;
        }

Thanks! We also experienced this error, But still not sure how to fix it and what exactly causes it (a work item)
6 years ago
VVDunaev wrote:
Hello.

I'm having problems installing.

Downloaded and launched nop4B (VS17 F5)

Create DB in smarterasp.net

Error:

Setup failed: Последовательность содержит более одного элемента


What is the problem?

Thank you.

Looks like your database already has tables. It should be empty
6 years ago
ellettJoseph wrote:
I downloaded 4.00 BETA version, and tried to install it. First time I entered all the necessary data on the set up page. And it quits quietly. Then tried to run it second time, got this error:
https://www.dropbox.com/s/ojtjk8bw9h8tzf5/NopLoadError.png?dl=0

Tried to debug the code, and it brought up NopCommerce 4.0 BETA successfully. Tested 10 times without debugging, and about 3 times it fails to start. I am using Visual Studio 2017 Professional. It seems like there is a race condition in loading data. We may need put a delay in the code below:

        public virtual IList<ScheduleTask> GetAllTasks(bool showHidden = false)
        {
            var query = _taskRepository.Table;
            Thread.Sleep(2000); //Delay 1 second, it fails 3 times in 10 tries. Delay 2 seconds it fails 1 time in 10 tries.
            if (!showHidden)
            {
                query = query.Where(t => t.Enabled);
            }
            query = query.OrderByDescending(t => t.Seconds);

            var tasks = query.ToList();
            return tasks;
        }


I'm getting this error as well. Needs to be fixed, it makes developing/upgrading plugins a nightmare.
6 years ago
I'm also experiencing the same problem when initializing the application

https://1drv.ms/i/s!AsxsQEKkH-KjhpBiojJ-C6zOr2L-JQ
6 years ago
wwnaweb wrote:
I'm also experiencing the same problem when initializing the application

https://1drv.ms/i/s!AsxsQEKkH-KjhpBiojJ-C6zOr2L-JQ

Have you already installed the application? Or are you getting the error when nopCommerce is not installed yet?
6 years ago
Hi Andrey

This error appears soon after the installation, when it runs, it will be problem with SqlCompact ...
6 years ago
Why am I getting this error on the IIS side?  I am on WS 2016.  I do have the .Net core installed.

Handler "aspNetCore" has a bad module "AspNetCoreModule" in its module list
6 years ago
Hi,

I installed the version without direct source code on the "SmarterASP" Server with SQL 2016 and did not show errors, the error is only local in Visual Studio with SqlCompact, Thanks.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.