skip to Main Content

I have a ASP.NET Core with Blazor website and I want to deploy it to Arvixe host. The website is very simple and contains only UI elements no database required. I published the website to a local file system and uploaded it using FTP to the Plesk.

When I am visiting the website, I receive this error:

500 – Internal server error. There is a problem with the resource you
are looking for, and it cannot be displayed.

I have tried to run it on the IIS and I received more details:

Configuration The configuration file cannot be read due to
insufficient permissions.

I tried to add IIS_IUSRS to the group and users for web.config but I am not able to find it because I am using a windows 10 connected to active directory.

Besides, I still don’t know how to solve this problem at Arvixe. Does anyone know tips might help?

2

Answers


  1. 500 internal error is generic issue. Please kindly check the error message on the server and paste it here. Make sure that your provider has installed .net core bundled on their server and here are tutorial about publsih .net core using plesk https://windowswebhostingreview.com/how-to-publish-using-web-deploy-with-plesk-control-panel/. It should be working fine.

    Login or Signup to reply.
  2. You need to give Full Trust permission (Read-Write-Execute) to your application folder and also to Application Pool and also check if the Runtime version supported by Arvixe matches with your Asp.net Core version.

    Also enable the logs in web.config file by setting stdoutLogEnabled=”true” to get detailed error so that you can investigate more about the error.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search