The idea here is that most of us should _already_ know _most_ of what is on this list. But there just might be one or two items you haven't really looked into before, don't fully understand, or maybe never even heard of. **Interface and User Experience** - Be aware that browsers implement standards inconsistently and make sure your site works reasonably well across all major browsers. At a minimum test against a recent gecko engine (Firefox), a Webkit engine (Safari, Chrome, and some mobile browsers), your supported IE browsers, and Opera. - Consider how people might use the site other than from the major browsers: cell phones, screen readers and search engines, for example. — Some accessibility info: [WAI][1] and [Section508][2], Mobile development: [MobiForge][3] - Staging: How to deploy updates without affecting your users. <a href="http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site#73970">Ed Lucas's answer</a> has some comments on this. - Don't display errors directly to the user - Don't put user's email address in plain text as they will get spammed to death - [Build well-considered limits into your site][4] - This also belongs under Security. **Security** - It's a lot to digest but the [OWASP development guide][5] covers Web Site security from top to bottom - Know about [SQL injection][6] and how to prevent it - Never trust user input - <strike>Encrypt</strike> Hash and salt passwords rather than storing them plain-text. - Don't try to come up with your own fancy authentication system: it's such an easy thing to get wrong in subtle and untestable ways and you wouldn't even know it until _after_ you're hacked. - Know the [rules for processing credit cards][7]. See this question as well: <http://stackoverflow.com/questions/51094/payment-processors-what-do-i-need-to-know-if-i-want-to-accept-credit-cards-on-m> - Use [SSL][8]/[HTTPS][9] for login and any pages where sensitive data is entered (like credit card info) - How to resist session hijacking - Avoid cross site scripting (XSS) - Avoid cross site request forgeries (XSRF) - Keep your system(s) up to date with the latest patches - Make sure your database connection information is secured. - Keep yourself informed about the latest attack techniques and vulnerabilities affecting your platform. - [The Google Browser Security Handbook][10] **Performance** - Implement caching if necessary - Optimise images - don't use a 20KB image for a repeating background - Learn how to gzip content - Take a look at the [Yahoo Exceptional Performance][11] site, lots of great guidelines including improving front-end performance and their [YSlow][12] tool. - Use [CSS Image Sprites][13] for small related images like toolbars (see the the "minimize http requests" point) - Busy web sites should consider [splitting components across domains][14]. - Minimize the total number of http requests required for a browser to render the page. **SEO** - Use "search engine friendly" URLS, i.e. use "example.com/pages/45-article-title" instead of "example.com/index.php?page=45" - Don't use links that say "click here". You're wasting an SEO opportunity and it makes things harder for people with screen readers. - Have an XML sitemap - <http://www.google.com/webmasters/> - Install Google Anyalytics right at the start - Know how robots.txt and search engine spiders work - Avoid table-based layout: Google will generally score good semantic/CSS-based html better than an equivalent page with table-based layout. - If you have non-text content look into Google's sitemap extensions for video etc. There is some good information about this in <a href="http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site#167608">Tim Farley's answer</a>. **Technology** - Understand [HTTP][15] and things like GET, POST, sessions, cookies, and what it means to be "stateless". - Write your [XHTML][16]/[HTML][17] and [CSS][18] according to the [W3C specifications][19] and make sure they [validate][20]. The goal here is to avoid browser quirks modes and as a bonus make it much easier to work with non-standard browsers like screen readers and mobile devices. - Understand how JavaScript is processed in the browser. [Move scripts to the bottom][21] of your pages. - Understand how the JavaScript sandbox works, especially if you intend to use iframes. - Be aware that JavaScript can and will be disabled, and that AJAX is therefore an extension not a baseline. Even if most normal users leave it on now, remember that NoScript is becoming more popular and mobile devices may not work as expected. - Learn the difference between 301 and 302 redirects (this is also an SEO issue). - Learn as much as you possibly can about your deployment platform - Consider using a [Reset Style Sheet][22] **Bug fixing** - Understand you'll spend 20% of the time coding and 80% of it maintaining so code accordingly - Set up a good error reporting solution - Have some system for people to contact you with suggestions and criticsm. - Document how the application works for future support staff and people performing maintenance - Get it working in Firefox first, and then Internet Explorer - Make frequent backups! <a href="http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site#73970">Ed Lucas's answer</a> has some advice. Lots of stuff omitted not necessarily because they're not useful answers, but because they're either too detailed, out of scope, or go a bit too far for someone looking to get an overview of the things they should know. If you're one of those people you can read the rest of the answers to get more detailed information about the things mentioned in this list. If I get the time I'll add links to the various answers that contain the things mentioned in this list if the answers go into detail about these things. Please feel free to edit this as well, I probably missed some stuff or made some mistakes. [1]: http://www.w3.org/WAI/ [2]: http://www.section508.gov/ [3]: http://mobiforge.com/ [4]: http://www.codinghorror.com/blog/archives/001228.html [5]: http://www.owasp.org/index.php/Category:OWASP_Guide_Project [6]: http://en.wikipedia.org/wiki/SQL_injection [7]: https://www.pcisecuritystandards.org/ [8]: http://www.mozilla.org/projects/security/pki/nss/ssl/draft302.txt [9]: http://en.wikipedia.org/wiki/Https [10]: http://code.google.com/p/browsersec/wiki/Main [11]: http://developer.yahoo.com/performance/ [12]: http://developer.yahoo.com/yslow/ [13]: http://alistapart.com/articles/sprites [14]: http://developer.yahoo.com/performance/rules.html#split [15]: http://www.ietf.org/rfc/rfc2616.txt [16]: http://www.w3.org/TR/xhtml1/ [17]: http://www.w3.org/TR/REC-html40/ [18]: http://www.w3.org/TR/CSS2/ [19]: http://www.w3.org/TR/ [20]: http://validator.w3.org/ [21]: http://developer.yahoo.net/blog/archives/2007/07/high_performanc_5.html [22]: http://stackoverflow.com/questions/167531/is-it-ok-to-use-a-css-reset-stylesheet