4.70.0 update help

2 weeks ago
Is there a detailed video or document for the update from 4.60.4 to 4.70.0 ? Please help me. I want to upgrade to 4.70.0.
2 weeks ago
Hello,

I think there is no video. Maybe this helps.
https://docs.nopcommerce.com/en/installation-and-upgrading/upgrading-nopcommerce.html

Best regards
2 weeks ago
I tried HTTP Error 500.30 - ASP.NET Core app failed to start I get this warning when I upgrade
2 weeks ago
iska wrote:
I tried HTTP Error 500.30 - ASP.NET Core app failed to start I get this warning when I upgrade


Hello,
do you have a Windows Server Version???  ?

Best regards
2 weeks ago
epl-software wrote:
I tried HTTP Error 500.30 - ASP.NET Core app failed to start I get this warning when I upgrade


Hello,
do you have a Windows Server Version???  ?

Best regards


hello server 2016
2 weeks ago
Check logs for errors
See https://www.selectsystems.com.au/checking-for-errors-on-a-new-installation-of-nopcommerce

Did you install the .NET 8 runtime ?
https://docs.nopcommerce.com/en/installation-and-upgrading/technology-and-system-requirements.html
1 week ago
I'm also encountering this issue with the warning " CapCut Pro APK HTTP Error 500.30 - ASP.NET Core app failed to start" after upgrading. It seems like the upgrade process triggered this error, and now my ASP.NET Core app is failing to start properly. I'm not sure what might be causing this issue or how to resolve it. If anyone has experienced a similar problem or has suggestions for troubleshooting, I'd greatly appreciate your assistance.
1 week ago
Turn on Std Error Logging
See https://www.selectsystems.com.au/checking-for-errors-on-a-new-installation-of-nopcommerce
1 week ago
Hello,

the error could be a connection string or two entries in the web.config if you have a Windows server. Comment out both entries. That helped me.
this " <remove name="WebDAVModule" />" and "  <remove name="WebDAV" />".

    <modules>
      <!-- Remove WebDAV module so that we can make DELETE requests -->
      <remove name="WebDAVModule" />
    </modules>
    <handlers>
      <!-- Remove WebDAV module so that we can make DELETE requests -->
      <remove name="WebDAV" />
      <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
    </handlers>

Best regards