Web Installation

0

I am developing a website in .net c # mvc. currently the web works well, but before putting it in Real I wanted to do an installation test so I have registered a web in the IIS and I have copied the content of all the web that I currently have.

when opening the new web of tests, it does not give errors, it works fine, but the visualization is wrong. It looks like I add in the image.

What is this?

    
asked by IcuScc 26.01.2018 в 14:00
source

1 answer

1

It could be a problem with the permissions of the files, access to folders, routes, etc ...

A look at the error log should be enough to identify the problem, but since you do not put it ...

Generally:

  • check the permissions of the files
  • check folder permissions
  • check the .htaccess file to see if there is a wrong path
  • check the absolute paths in the database to see if it points to a different folder
  • check that the files are inside the folders allowed by the server
  • check the browser console to see the error that comes out
  • check server logs to see the error thrown
  • check the routes in the html, mainly the css, since it does not seem to load the css
answered by 26.01.2018 / 14:18
source