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.

So, we are still attempting to isolate exactly when this file is generated. We are using SQL Server 2008 Express RC (thus not 2005, which apparently can cause the generation). However, we have a remote IT person that periodically backs up our site and redeploys it. I think it's this scenario that causes app_offline's generation.

Anyways, while one of us are working, it's no problem to open up the project and delete this file. However, I'm going to be going back to school quite soon and I don't want to have to get calls at 7am letting me know the site is down and it needs to be fixed immediately.

Here are a couple useful links. I've fairly scoured the web (and stackoverflow) for information, but no one seems to know how to make IIS ignore this file, or delete it upon generation.

Opinions on MSDeploy

http://www.beansoftware.com/ASP.NET-Tutorials/Restart-Stop-Application.aspx

Meanwhile, we will continue attempting to isolate the instances when it is generated.

Thank you

EDIT: Found this: App_Offline in MSBuild Remote Web Deploy

Which includes:

"Now that our app is published we need to delete the app_offline.htm file from the dest web app. The msdeploy.exe command would be:

%msdeploy% -verb:delete -dest:contentPath="{IIS-Path}/app_offline.htm",computerName="...",username="...",password="..." 

This is implemented inside of the DeleteAppOffline target. This target will automatically get executed after the publish because I have included the attribute AfterTargets=”MSDeployPublish”. In that target you can see that I am building up the msdeploy.exe command directly, it looks like the MSDeploy task doesn’t support the delete verb."

But I still don't know where to put this

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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