Nopcommerce 4.20

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
4 years ago
Hello!
I have been watching NopComerce for a long time and I want to transfer my stores to this engine, but in Russia we know very little of it and have no support at all.
Can you answer the questions?
1. Version 4.20 really works on Linux? I have a real server and Ubuntu is standing there, will it work on it?
2. What database is used if put on ubuntu?
3. What is the situation with the import of products, are there any good import plug-ins, both for the initial loading of 100,000 products and for updating prices and availability - if each has 4 images, 5 characteristics.
4. Will the store be able to work with 100,000 products, both variable and simple?
5. Ubunt + NGINX + MySQL is now on the server, is it possible to simultaneously install the modules necessary for NopComerce to run and run it? Since I have a real server with real stores on Wordpress-Woocommerce.
6. Can you provide potterzhku and how much does it cost?

I'll be waiting for your response
With respect, Igor
WhatsApp + 7-999-469-74-59
4 years ago
I just got chance to try out the latest release and just wanted to say that (although running locally) I can really notice the performance improvements when loading product pages.  It seems instantaneous.

Thanks a lot. I appreciate the effort.
4 years ago
Are the any upgrade documentation from 4.1 til 4.2? For instance i have a interface called IPluginFinder which seems to be removed?
4 years ago
I've the same question: I've to upgrade from 4.1 to 4.2 . Any suggestions?
4 years ago
Hello All,

In India we prefer to use most used payment gateway CCAvenue.

But plugin "CCAvenue payment module (nopCommerce team)" is not available for 4.20

Please suggest solution for this?
4 years ago
hkreklame wrote:
Are the any upgrade documentation from 4.1 til 4.2? For instance i have a interface called IPluginFinder which seems to be removed?


ZeroG wrote:
I've the same question: I've to upgrade from 4.1 to 4.2 . Any suggestions?


The only documentation regarding upgrading nopcommerce (that I know of) can be found here:
http://docs.nopcommerce.com/display/en/Upgrading+nopCommerce

To see an overall summary of whats new in nopcommerce 4.2 you can see the readme here:
https://www.nopcommerce.com/releasenotes.aspx

And regarding your question for the IPluginFinder interface:

In nopcommerce 4.2, the IPluginFinder interface has now been removed and replaced with a IPluginService.  You can see the usage in the InstallController HttpPost Index() method.

In nopcommerce 4.1:

PluginManager.MarkAllPluginsAsUninstalled();
var pluginFinder = EngineContext.Current.Resolve<IPluginFinder>();
var plugins = pluginFinder.GetPlugins<IPlugin>(LoadPluginsMode.All)
    .ToList()
    .OrderBy(x => x.PluginDescriptor.Group)
    .ThenBy(x => x.PluginDescriptor.DisplayOrder)
    .ToList();


Has been replaced with the following in nopcommerce 4.2:

var pluginService = EngineContext.Current.Resolve<IPluginService>();
pluginService.ClearInstalledPluginsList();

...

var plugins = pluginService.GetPluginDescriptors<IPlugin>(LoadPluginsMode.All)
    .Where(pluginDescriptor => !pluginsIgnoredDuringInstallation.Contains(pluginDescriptor.SystemName))
    .OrderBy(pluginDescriptor => pluginDescriptor.Group).ThenBy(pluginDescriptor => pluginDescriptor.DisplayOrder)
    .ToList();


If you have any other particular questions/issues regarding upgrading to 4.2 you might have more luck getting responses if you raise a new topic in the nopcommerce upgrade forum here:
https://www.nopcommerce.com/boards/f/14/nopcommerce-upgrades.aspx

Hope this helps.
4 years ago
I'm using Nopcommerce 4.2

When I had changed View Layout (Admin Site .cshtml files), I must change web.config or restart IIS for applying new Layout?? (difference previous versions. Source code published to LIVE)

Why?? How to no need to change web.config or restart IIS for this changes.

Thanks so much.
4 years ago
davidandrewpowell wrote:
Are the any upgrade documentation from 4.1 til 4.2? For instance i have a interface called IPluginFinder which seems to be removed?

I've the same question: I've to upgrade from 4.1 to 4.2 . Any suggestions?

The only documentation regarding upgrading nopcommerce (that I know of) can be found here:
http://docs.nopcommerce.com/display/en/Upgrading+nopCommerce

To see an overall summary of whats new in nopcommerce 4.2 you can see the readme here:
https://www.nopcommerce.com/releasenotes.aspx

[...]


Hi David,
thanks for your reply. I've found and followed that docs and i've completed the upgrade from 4.1 to 4.2 without problems. ;)

have a nice day
4 years ago
ZeroG wrote:

Hi David,I've found and followed that docs and i've completed the upgrade from 4.1 to 4.2 without problems. ;) have a nice day


That's great. Glad you managed to get it working. Enjoy!!
4 years ago
simoisen wrote:
I'm using Nopcommerce 4.2

When I had changed View Layout (Admin Site .cshtml files), I must change web.config or restart IIS for applying new Layout?? (difference previous versions. Source code published to LIVE)

Why?? How to no need to change web.config or restart IIS for this changes.

Thanks so much.


Help me! :(
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.