I am a Web Designer, not a programmer, specially not an ASP.NET MVC programmer.
At my work there are no programmers anymore. The application was developed by a contracted programmer and the contract has finished. I am the person that will reuse his work for this year (it is about a festival that happens every year). My job is to change the CSS with the objective of keeping the functionality and changing the appereance.
Following best practices, I want to "develop" locally on my computer (Windows 7 Ultimate SP1, IIS 7.5 and Visual Studio Professional 2013) and, after the job is approved, put the application online again.
I tried to follow those steps in these questions (and answers):
How to run ASP.NET C# web application locally?
ASP MVC in IIS 7 results in: HTTP Error 403.14 - Forbidden
I tried this tutorial too, following another answer in another question:
ASP.NET MVC 4 and IIS7: How to Configure/Run ASP.NET MVC4 web application in IIS 7
But I could not get the thing to work. I do not know how to configure IIS to past the various error messages. Some of them are:
403 forbidden
Configuration Error
Line 24: <httpRuntime targetFramework="4.5" />
Line 25: <compilation debug="true" targetFramework="4.5" />
Line 26: <authentication mode="Forms">
Line 27: <forms loginUrl="~/Account/Login" timeout="2880" />
Line 28: </authentication>
In one of the searched answers, Mark Boltuc says to put this on the Web.config file:
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
It did not work either.
The application is in a server running Windows Server 2008 and the database is in another server (HOSTGATOR) and is using MySQL.
Could someone, please show me the steps to solve this?
Thank you, very much.
Edit:
I cannot put an image...
Well, on IIS Manager, I created another site, outside the Default and stop it. My site is running on IIS.
In the Application Pools I created an application with the same name. It is started, the .NET framework version is now v2.0 but I already tried to put it as v4.0 and it did not work. The manage Pipeline is Integrated.