• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • Our UX team believes in the in the power of direct feedback and would like to invite you to participate in interviews, tests, and surveys.
    To stay in the loop and never miss an opportunity to share your thoughts, please subscribe to our UX research program. If you were previously part of the Plesk UX research program, please re-subscribe to continue receiving our invitations.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

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