• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Issue Upgrading to .NET 5.0 in VPS Obsidian v18.0.55

threeCard

New Pleskian
Server operating system version
Windows 2022
Plesk version and microupdate number
Obsidian 18.0.55
I am trying to change my Plesk Obsidian 18.0.55 VPS to be able to run .NET 5.0 or above but the only option is 4.8. How can I be able to get 5.0 or the latest version of .NET in my VPS?

1707332551581.png
 
I wonder where you saw a newer ASP.NET version than 4.8. The latest is 4.8.1. You probably do not mean ASP.NET, but ASP.NET Core. The ASP.NET version is 4.8, that is correct, there is no newer version.

References:
Software Requirements for Plesk Obsidian (section "Web Scripting", ASP.NET support up to 4.x)
 
I wonder where you saw a newer ASP.NET version than 4.8. The latest is 4.8.1. You probably do not mean ASP.NET, but ASP.NET Core. The ASP.NET version is 4.8, that is correct, there is no newer version.

References:
Software Requirements for Plesk Obsidian (section "Web Scripting", ASP.NET support up to 4.x)
1707399302214.png

I think you are right, however how can i get past this error?
 
View attachment 25467

I think you are right, however how can i get past this error?
Here is our web config file

Code:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <location path="." inheritInChildApplications="false">
    <system.webServer>
      <modules>
        <remove name="WebDAVModule" />
      </modules>
      <handlers>
        <remove name="WebDAV" />
        <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
      </handlers>
      <aspNetCore processPath="dotnet" arguments=".\api.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" />
    </system.webServer>
  </location>
</configuration>
 
I'm not sure if this makes sense because I don't use ASP.NET, but I read on StackOverflow that this can be fixed by installing the "Hosting Bundle":

 
I'm not sure if this makes sense because I don't use ASP.NET, but I read on StackOverflow that this can be fixed by installing the "Hosting Bundle":

I read that too, how would i go about installing that in plesk though? Where would I upload it FTP?
 
Back
Top