Nopcommerce 4.3 Live - Restart application kills app pool and website

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
3 years ago
In the current version 4.3 using a shared hosting, peopleshost (who do a great job and are nopcommerce partner) every time i restart the application in administration/shop backend, it kills the site.

Similar things happen locally for isntance when i install a plugin.

Anyone else is having a similar issue?

Kind regards,
Gonçalo Dias
3 years ago
Do you mean you get the message ?

The service is unavailable.

Same for me as well
There was another issue in the RC which was fixed not sure if this is the same or different error ?
I download the latest version but still see the error above
See https://github.com/nopSolutions/nopCommerce/issues/4765
3 years ago
Hello everybody
I have downloaded the latest version and I have the same problem.
i have tried to install the FacebookPixel plugin. but the FacebookPixelConfiguration table was not created. so the configuration page throws an error.
  
is there a workaround for the problem?

Thanks a lot
3 years ago
I have the same problem too.
3 years ago
Yidna wrote:
Do you mean you get the message ?

The service is unavailable.

Same for me as well
There was another issue in the RC which was fixed not sure if this is the same or different error ?
I download the latest version but still see the error above
See https://github.com/nopSolutions/nopCommerce/issues/4765


That is exactly what is happening. ( Sorry for the late reply)
3 years ago
amirabel wrote:
Hello everybody
I have downloaded the latest version and I have the same problem.
i have tried to install the FacebookPixel plugin. but the FacebookPixelConfiguration table was not created. so the configuration page throws an error.
  
is there a workaround for the problem?

Thanks a lot


Hi,
Maybe that is probably a different issue than killing the website, from your description it looks like a different issue. I suggest uninstalling the plugin, and try to install it again.
Try it in debug mode as well to understand exactly what is happenning there.
If it doesnt help, and it is a different issue, you should probably open a new thread because maybe more people are having similar issues with that particular plugin. (I havent tested that one).

Best of luck!
3 years ago
Try to restart nopcommerce and you will see the same error message.
3 years ago
foxnetsoft wrote:
Try to restart nopcommerce and you will see the same error message.


after installing a plugin and Apply Changes. the application is restarted again.



        [HttpPost, ActionName("List")]
        [FormValueRequired("plugin-reload-grid")]
        public virtual IActionResult ReloadList()
        {
            if (!_permissionService.Authorize(StandardPermissionProvider.ManagePlugins))
                return AccessDeniedView();

            _pluginService.UninstallPlugins();
            _pluginService.DeletePlugins();

            //restart application
            _webHelper.RestartAppDomain();

            return RedirectToAction("List");
        }

        [HttpPost, ActionName("List")]
        [FormValueRequired("plugin-apply-changes")]
        public virtual IActionResult ApplyChanges()
        {
            return ReloadList();
        }
3 years ago
Yidna wrote:
Do you mean you get the message ?

The service is unavailable.

Same for me as well
There was another issue in the RC which was fixed not sure if this is the same or different error ?
I download the latest version but still see the error above
See https://github.com/nopSolutions/nopCommerce/issues/4765


The issue (Bug) has been reopened.
3 years ago
We've found a possible solution. It works fine on our local machines and on our servers. Please see the "503-status-bag-on-restart" branch

Could you please also test it and let me know the results before we merge it?

P.S. Currently it's implemented only for the "Restart application" button in admin area
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.