Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>If you are going to deploy within the hour:</p> <ol> <li><p>Make sure the reference to System.Web.Mvc is marked as Copy Local=True in your project. It tends to default to False, and so will not be copied to your bin folder, causing the app to fail when deployed. Review any additional assemblies you may have added to the project for Copy Local=True.</p></li> <li><p>Make sure stack traces aren't shown to end users when an exception occurs in your code. Use the <a href="http://msdn.microsoft.com/en-us/library/h0hfz6fc.aspx" rel="nofollow"><code>&lt;customErrors&gt;</code></a> in web.config to specify your own error page(s).</p></li> <li><p>In your web.config, make sure that the connection strings will work on the server you'll be deploying to.</p></li> <li><p>Is your application writing to disk for any reason? Logging perhaps? Some hosting services will not let your app write to disk -- worth checking ahead of time.</p></li> <li><p>Deploy to a local folder, and sanity-check that published app. Are scripts, stylesheets, images loaded without glitches?</p></li> </ol> <p>If you have a little bit more time on your hands:</p> <ol> <li><p>Review the code for security, XSS considerations: are inputs sanitized? Is user input encoded correctly when rendered in views?</p></li> <li><p>Review the data schema. This may be your last opportunity to modify an empty database. Once you deploy, you can only hope to be gently updating live data, trying to avoid harming existing data and dependencies in application logic.</p></li> <li><p>If you haven't already, make sure to set up a google analytics account. You're going to be curious about how your site is being used, and this is one of the best free tools available. Goog analytics, as well as search engine registrations will require you to place files with funky names in the root 'folder' of your domain name. Verify that your app can serve files from the root folder, or set up a controller+routing to handle those requests.</p></li> </ol>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload