Link to home
Start Free TrialLog in
Avatar of jeremyll
jeremyll

asked on

IIS 7.5 Detailed Error - 500.19 - Internal Server Error

How can I solve this error below?
I'm using Visual Studio Express 2008, Windows 7 64bit

Each time I want to load up http://localhost/nopCommerce/ in my web browser I get the following error message:

Error Summary
HTTP Error 500.19 - Internal Server Error
The requested page cannot be accessed because the related configuration data for the page is invalid.


Detailed Error Information
Module      IIS Web Core
Notification      Unknown
Handler      Not yet determined
Error Code      0x80070003
Config Error      Cannot read configuration file
Config File      \\?\C:\inetpub\wwwroot\CMS TESTING\web.config
Requested URL      http://localhost:80/nopCommerce/default.aspx
Physical Path      
Logon Method      Not yet determined
Logon User      Not yet determined


Config Source

   -1:
    0:


THANKS!
Avatar of Meir Rivkin
Meir Rivkin
Flag of Israel image

does the config error say: "Config Error: Cannot read configuration file due to insufficient permissions" ???
if that the case, IIS_USERS cannot access the web.config and u need to add it in the securty tab of the config file:   1.  In Windows Explorer, locate the web.config file that is associated with the Web site.   2. Right-click the web.config file   3. Click Properties.   4. Click the Security tab, and then click Edit.   5. Click Add.   6. In the Enter the object names to select box, type computername\IIS_IUSRS, click Check Names, and then click OK.      Note Computername is a placeholder for the computer name.   7. Click to select the Read check box, and then click OK.   8. In the Web.config Properties dialog box, click OK.(http://sunnynagi.com/blog/iis-7-5-http-error-500-19-internal-server-error/)
Avatar of jeremyll
jeremyll

ASKER

Thanks sedgewick,

I've tried that, but it looks fine.

There's actually no folder/file called CMS TESTING\web.config when I checked C:\inetpub\wwwroot

>>I've tried that, but it looks fine.

so problem solved?
sorry, problem not solved.

I meant, I went through your points 1-8 and all the settings have already been selected.
ASKER CERTIFIED SOLUTION
Avatar of Meir Rivkin
Meir Rivkin
Flag of Israel image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
It's okay now. I've removed CMS TESTING folder in IIS.

I got lots to learn!
Directed me in the right direction to solve the problem.