Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have my main app at c:\inetpub\wwwroot\. I've created a separate application, and put it at c:\inetpub\subapp. I'd like to set it up so that if I visit http://www.mysite.com/subapp, it will run my subapp application.

I went into IIS, right-clicked on Default Web Site, and clicked Add Application. I set the physical path to my subapp, and tested it, but I got an error saying "Invalid application path"

enter image description here

Am I doing something wrong here, am I not adding the application correctly?

share|improve this question
It is probably because the physical path does not exist. Check if it exists. – Shaji Dec 21 '11 at 22:19
Don't worry about test settings. The application will still run anyways. I have a number of running applications where test settings gives me that message. – Gage Mar 19 at 20:08

2 Answers

Select "Connect as..." and select user that is part of "IIS_IUSRS" group.

Then "Test Settings..." again - that should work.

share|improve this answer

Put it in c:\inetpub\wwwroot\subapp\.

In IIS Management Console, right click the Default Web Site node and choose Refresh. You should see your site in a folder beneath there.

You can then right click on it and choose Convert to Application.

share|improve this answer
I tried that, but I still don't see my app in the IIS console. Is there anything else I can do? – Steven Dec 22 '11 at 0:43
Updated my answer ... have you refreshed the listings? – Sir Crispalot Dec 22 '11 at 8:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.