1. Set release mode in visual studio for any projects and then compile and deploy DLLs.
2. Configure a 404 page. Set the ID of the error page in /config/umbracosettings.cofig file. The following section need to be modified –
<errors>
<!-- the id of the page that should be shown if the page is not found -->
<!-- <errorPage culture="default">1</errorPage>-->
<!-- <errorPage culture="en-US">200</errorPage>-->
<error404>1</error404>
</errors>
3. Also change the notification section in the /config/umbracosettings.config file. This email address (from address) will be used by Contour as well.
<notifications>
<!-- the email that should be used as from mail when umbraco sends a notification -->
<email>info@barangaroo.com</email>
</notifications>
4. Add google analytics for the site
5. Add google mobile tracking for the site. To add the ga.aspx page in the root, the ga.aspx page need to be added to the following line in the web.config file (appSettings section). <add key="umbracoReservedUrls" value="~/config/splashes/booting.aspx,~/install/default.aspx,~/config/splashes/noNodes.aspx,~/ga.aspx" />
6. Set umbraDebugMode to false in the web.config file (appSettings section)
<add key="umbracoDebugMode" value="true" />
7. Set customerrors mode="RemoteOnly" in web.config file
8. Set debug to false in the web.config file
9. In the system.web/trace section set enabled to false
10. Modify the connection string in web.config file according to the live server credentials
11. To reset the ClientDependency cache, delete the ClientDependency folder from App_Data
12. If there are any form built by Contour package, use the following regex to validate the email.
\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*
13. Change the admin password to something very strong password.
2. Configure a 404 page. Set the ID of the error page in /config/umbracosettings.cofig file. The following section need to be modified –
<errors>
<!-- the id of the page that should be shown if the page is not found -->
<!-- <errorPage culture="default">1</errorPage>-->
<!-- <errorPage culture="en-US">200</errorPage>-->
<error404>1</error404>
</errors>
3. Also change the notification section in the /config/umbracosettings.config file. This email address (from address) will be used by Contour as well.
<notifications>
<!-- the email that should be used as from mail when umbraco sends a notification -->
<email>info@barangaroo.com</email>
</notifications>
4. Add google analytics for the site
5. Add google mobile tracking for the site. To add the ga.aspx page in the root, the ga.aspx page need to be added to the following line in the web.config file (appSettings section). <add key="umbracoReservedUrls" value="~/config/splashes/booting.aspx,~/install/default.aspx,~/config/splashes/noNodes.aspx,~/ga.aspx" />
6. Set umbraDebugMode to false in the web.config file (appSettings section)
<add key="umbracoDebugMode" value="true" />
7. Set customerrors mode="RemoteOnly" in web.config file
8. Set debug to false in the web.config file
9. In the system.web/trace section set enabled to false
10. Modify the connection string in web.config file according to the live server credentials
11. To reset the ClientDependency cache, delete the ClientDependency folder from App_Data
12. If there are any form built by Contour package, use the following regex to validate the email.
\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*
13. Change the admin password to something very strong password.