500 - Internal server error.when uploading asp.net core to godaddy - shared-hosting

site does work when I upload it onto azure Server but it doesn't when I use GoDaddy. I have contacted GoDaddy's support but these guys are completely clueless in to what's wrong. Here's a link to my OneDrive folder that should contain the same thing that is on the server

Related

Trying to deploy ASP.Net core website onto a debian server

I am trying to find a way to deploy a ASP.Net Core (version 6.0) Website onto a server provided by a domain provider.
The server is Debian and as far as I can understand I cant change things on the server except uploading the files required for the Website.
I have created a simple website in Visual Studio 2022, using MVC Framework. It has no database as it is not required.
So the issue is how would I go about deploying the website onto the server, I understand I have to change my files to be Debian compatible but also I read up on the documents from Microsoft, and they insist I need to install .Net onto the server. Which I cant seem to do.
I tried reading through other solutions but there doesn't seem to be any updated answers.
I am new to this so sorry if this has been asked before. but any help would be welcome.

500 internal server error - Hosting nopCommerce 4.0 on Godaddy with Windows Plesk (not VPS) Account

I know how to install and setup nopCommerce.
However this is specific to hosting it on Godaddy Windows Plesk account, I have searched, looked and read many threads, documents on nopCommerce 4.0 and hosting it or installing it. However I am unable to successfully install nopCommerce 4.0 on Godaddy Windows Plesk (not VPS) Hosting.
I get 500 internal server error, looks like .NET Core is not supported on Windows Plesk hosting on Godaddy, on VPS hosting it works.
So is any one able to successfully do it on Plesk?
As mentioned in my comment above:
You will need .net framework 4.61+ and .net core 2.0+ runtime to successfully run nopCommerce 4.0.
And as mentioned by you
GoDaddy with Plesk does not support .NET Core yet.
See https://in.godaddy.com/help/software-versions-on-hosting-accounts-897
In .net core, iis is not really used as a web service, its just use to point users to application. Application is a exe file so actually windows will run it, so i dont think that its a issue of plex or something like that.
I hade same error for nop4 on vps, but i cant tell you any advice if you don't check logs.
Try see the logs,application set logs automatically as a text file.
You may solve when check that file or create another question so we can help you and others who had the same error

SQL Server agent job [Event] to be uploaded on hosting server

I have a question: I am uploading my website to a free hosting site somee.com for testing purposes. I have uploaded all the asp.net source files and .mdf and .ldf files successfully.
For my website I have written a SQL Server job that executes after every five minutes.
I just want to know how to upload or run this SQL Server job steps on the hosting server?
Thank you in advance.
You'll need to talk to the hosting provider. They probably will not support doing this, especially if they are a free hosting provider.

visual studio 2012 publish mvc 4 site to godaddy

From visual studio 2012 i am trying to publish my mvc 4 site to godaddy (windows plesk panel) but cannot get the Connection right.
how do i get this information:
Service Url?
Username - is this my go daddy username and pass?
Destination URL?
i have tried a combination of "www.godaddy.com" and my domain that i purchased, but have not been successful.
i get the following error:
Web deployment task failed. (Could not connect to the remote computer ("[domain]"). On the remote computer, make sure that Web Deploy is installed and that the required process ("Web Management Service") is started. Learn more at: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_DESTINATION_NOT_REACHABLE.)
i then tried the IP that Go daddy said my site was on and i got UserNotAdmin:
Error 1 Web deployment task failed. (Connected to '[ip]' using the Web Deployment Agent Service, but could not authorize. Make sure you are an administrator on '[ip]'. Learn more at: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_USER_NOT_ADMIN.)
any information on how to upload the site step by step would be cool (im a big noob at this :))

Set up SSL/Certificate for seperate server

I am new to SSL,here I have a question about how to set up SSL/certificate.
Our web site is hosted on server A(Windows server 2003 with IIS6), we also have a WCF web service that is used by the web site to get data from database, and this service is hosted on Server B(Windows server 2003 with IIS6).
So how to setup SSL/Certificate to make sure that the client server communication is encrypted? do I need to apply 2 certificate for each server?
I also have a very fundamental question, say my server's ip address is 192.168.0.5, it has multiple ports for different application, for example 8090, so which one is called domain? 192.168.0.5? or 192.168.0.5.8090?
Thanks
Since both server are running IIS 6, you can just export your certificate as PFX and install it on the other server.
Following sites might be helpful:
Export:
https://support.globalsign.com/customer/portal/articles/1231880-back-up-certificate---internet-information-services-iis-7
http://www.sslshopper.com/move-or-copy-an-ssl-certificate-from-a-windows-server-to-another-windows-server.html
Installation:
https://support.globalsign.com/customer/portal/articles/1290320-install-certificate---internet-information-services-iis-5-6
http://www.sslshopper.com/microsoft-iis-5-and-6-ssl-installation-instructions.html
Hope this helps!