I saw an HttpOnly question today, and that had me thinking back to Jeff's CodingHorror post about it, and how it was kinda funny that he had a site up for nearly a month before addressing it. Of course, no one can know _everything_, but it got me wondering: what could _I_ be missing? What other things should _always_ be done before opening a public-facing web site that aren't necessarily enforced by tools? What do you need to know when implementing the site? **What critical piece am I missing that, as a web developer, I might not know already?** Here are some ideas to get the ball rolling, though they don't all need to be security-related. Let's try to keep it language agnostic, too: * HttpOnly cookies * SQL Injection protection * Cross site scripting protection * How to correctly handle authentication/store passwords **Update:** One more thing to keep in mind here. I'm thinking about this from a web developer's perspective, such that someone else is creating the actual design and content for the site. So while usability and content may be more important than the platform, you the programmer have no say in that. What you do need to worry about is that your implementation of the platform is stable, performs well, is secure, and meets any other business goals (like not cost too much or take too long to build). So what simple things could you forget to do that would cause the site to miss any of that? **Also:** I'm looking for something more specific than just a vague "web standards" response. I mean, HTML, javascript, and CSS over HTTP are pretty much a given, especially when I've already specified that you're a professional web developer. So going beyond that, _Which_ standards? In what circumstances, and why? Provide a link to the standard's spec. **I'm looking for someone to compile up the best answers into a single post so I can mark it as _the_ answer. I'd do it myself, but I can't mark my own posts as the answer. The best answer will group responses into 4 categories: Security, Performance, Productivity, and SEO**