vote up 417 vote down star
935

What things should a programmer implementing the technical details of a web site address before making the site public? If Jeff Atwood can forget about HttpOnly cookies, sitemaps, and cross-site request forgeries all in the same site, what important thing could I be forgetting as well?

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 little 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, take too long to build, and rank as well with Google as the content supports).

Think of this from the perspective of a developer who's done some work for intranet-type applications in a fairly trusted environment, and is about to have his first shot and putting out a potentially popular site for the entire big bad world wide web.

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.


This question is community wiki, so please feel free to edit that answer to add links to good articles that will help explain or teach each particular point.

flag
show 3 more comments

63 Answers

vote up 1 vote down

Understand how to monitor a site for intrusion and make it easy for the person who manages the site to recover to a known-good state. Even if you aren't going to be managing the site you should educate the site-owner in this regard before handing it over.

Even if your code is bulletproof, the server that the site is hosted on can be compromised (especially in a shared-server environment), so it seems like it's not so much a question of whether your site will be hacked, as when it will happen and how much pain will be involved in cleaning it up.

So you'll want to design with this in mind; e.g., craft your URL scheme such that it is easy to spot malicious requests in the access logs; think carefully before storing page templates in a database; and so forth.

link|flag
show 1 more comment
vote up 8 vote down

When to say "no" to the designer or client, and how to do so gracefully and diplomatically.

link|flag
vote up 1 vote down

If you are going to accept user input, learn input validation. This is the biggest thing that programmers make mistakes on, they accept user input in random location and it allows script kiddies to come along and remote include a file that then gives them full control over your local machine.

"Be lenient in what you accept, but strict in what you output"

However, don't trust any user generated input in any way shape or form. Don't trust it!

link|flag
vote up 1 vote down

HTTP Compression is often overlooked and can drastically speed up a website.

link|flag
vote up 1 vote down
  • how SSL works
  • how PKI works
  • how cookies are used to manage sessions
link|flag
show 1 more comment
vote up 1 vote down

I agree with "The Professor" there's no point in having a beautifully built site that validates correctly and is accessible to all if the content is rubbish. In addition to his comment though I'd add spell checking and proof reading. I find that the majority of tweaks that have to be made after the site has gone live is down to spelling/grammatical issues.

link|flag
show 1 more comment
vote up 1 vote down

Know how to resist session highjacking. Http_only is only one aspect of this, and not necessarily the most likely for some threat models (it applies when people can insert html onto your site).

There are session highjacking attacks which are regarded as remotely executable by NIST, and exploits are in the wild today. Here are some refs:

http://fscked.org/projects/cookiemonster

CVE-2002-1152

link|flag
vote up 1 vote down

Consider your design from your potential users perspectives. How will they use the site? What will benefit them most? What will annoy, frustrate, or keep them from using it? If you're trying to decide on a design element that will benefit you, but not the user, scrap it.

link|flag
show 1 more comment
vote up 3 vote down

Set aside all the technical aspects, skills and security, I would make sure that it would be easy to use and really does the thing the user expect. Human computer interaction is important. Layot and flow is important. Otherwise no one will use it, other that scammers, spammers and robots.

:)

//W

link|flag
vote up 2 vote down

From a systems perspective, document how the application works and the subsystems involved and add instrumentation to the application for the systems in which it will run (e.g. event logs or performace monitor in Windows).

The application has to be run by some support personnel and they need tools to track possible problems that may appear.

link|flag
vote up 24 vote down

Here are a couple thoughts.

First, staging. For most simple sites developers overlook the idea of having one or more test or staging environments available to smoothly implement changes to architecture, code or sweeping content. Once the site is live, you must have a way to make changes in a controlled way so the production users aren't negatively affected. This is most effectively implemented in conjunction with the use of a version control system (cvs, subversion, etc.) and an automated build mechansim (ant, nant, etc.).

Second, backups! This is especially relevant if you have a database back-end serving content or transaction information. Never rely on the hosting provider's nightly tape backups to save you from catastrophe. Make triple-sure you have an appropriate backup and restore strategy mapped out just in case a critical production element gets destroyed (database table, config file, whatever).

link|flag
vote up 60 vote down

Rule number one of security:

Never trust user input.

link|flag
21  
Added to which: Cookies count as user input. – Colonel Sponsz Nov 20 '08 at 14:19
7  
+1 users are evil – Yassir May 8 at 17:56
vote up 3 vote down

WEB STANDARDS:

  • HTML
  • CSS
  • XML
  • JAVASCRIPT

HTTP PROTOCOLS.
UI Design
Web Security
Web Caching
Some web server knowledgement ( apache HTTPD, ISS, Light HTTPD)
LAMP

link|flag
vote up 11 vote down

Well, everyone else has already mentioned most things I thought of - but one thing I always forget is a favicon. Sounds stupid, I know, but I think it's one of those little things that helps to emphasise your brand, and I never seem to remember it. Please check Scott Hanselman's post about how to use it carefully.

I agree with some of the rest too - I think it's important to know as much as possible about your chosen language, so that you can code it with best practices and maintainability in mind. I've come across functions and patterns that I wish I'd known about when I did my first few crappy, amateur projects, as it would have saved me writing some retarded WTF-ey workarounds!

link|flag
vote up 1 vote down
  • Web standards
  • CSS
  • Interface Design

If it's unusable, you have no chance!

link|flag
show 1 more comment
vote up 3 vote down

You should consult the OWASP web site and understand the vulnerabilities listed there. Keep in mind OWASP does not talk about issues like scalability, session state management issues, and browser compatibility. Those areas will need to be understood as well. But I would argue that they certainly are less important than security.

link|flag
vote up -7 vote down

What about languages?
- HTML - JavaScript - PHP/.net/python - Ajax

link|flag
vote up 1 vote down
  • One of the key things is to understand how you are going to debug your system. This means understanding the 'big picture'. So know your environment (O/S, database, framework, networking et al) and at least know where to 'look' if you have ten users each calling with their on issue even if you did not write all that server side code.

  • Often times, good user interface design (error logging with the right amount of detail, log levels, hooks to display some details on demand) will go a long way.

link|flag
vote up 6 vote down

How to build a scalable design in the off chance that the site becomes really popular.

link|flag
show 1 more comment
vote up 5 vote down

How to avoid Cross site request forgeries (xsrf) (this is not cross site scripting (xss))

Now i'll probably be modded down for overuse of parenthesis

link|flag
1  
Nah, programmers are generally fine with lots of parentheses, stackoverflow.com/questions/164432/… :) – Jonik Sep 12 at 13:06
vote up 4 vote down

Good knowledge of HTTP, including caching and expiry headers

link|flag
vote up 22 vote down

In addition to caching

link|flag
show 1 more comment
vote up 79 vote down
  • Never put email addresses in plain text because they will get spammed to death
  • Be ultra paranoid about security.
  • Get it looking correct in Firefox first, then Internet Explorer.
  • Avoid links that say "click here". It ruins a perfectly good SEO opportunity.
  • Understand that you'll spend 20% of the time developing, 80% maintaining, so code it accordingly.
link|flag
2  
"Click here to blah" may be good if you expect many inexperienced users who may not realize where exactly they can click. – LKM Oct 13 '08 at 8:47
5  
+1 for Fox -> IE : you don't make a car that works in the arctic and reverse engineer for city driving – annakata Nov 20 '08 at 14:24
6  
I have my email address on my web site, and my spam filters have been perfectly adequate for the task, except for the backscatter spam which was generated from domains I owned. – David Thornley Dec 31 '08 at 18:22
show 8 more comments
vote up 1 vote down

The most important thing for a web site developer to know is that there really is no such thing as a standard. The standards exist, but are often ignored or are incorrectly implemented.

The only way to know if your pages are going to operate correctly on all web browsers is to try it on every browser you can find: IE, Firefox, Opera, Safari, and Chorme for a start.

So, yes, of course, use standard practices. But then test and remove those features which do not work across all browsers.

link|flag
show 1 more comment
vote up 7 vote down

Ensure that whatever framework/server-side scripting/web server/other you're using doesn't expose error messages directly to the user.

Checking that whatever has been put in place to facilitate the above during development is switched off or reversed. Obviously the preference is to have this stuff properly configured in first place - but it will still occur time and time again.

That's mainly written from a security standpoint, but very much related is the usability issue of ensuring that should errors occur, the user get something that makes sense to them and tries as best possible to get them back to what they were doing.

link|flag
vote up 5 vote down

Cross-browser support, particularly with respect to CSS.

link|flag
vote up 9 vote down

I would think that knowing all you can about your deployment environment will be would rank up there.

IIS, MSSQL or Apache, MySQL, etc? ASP.NET, PHP, etc?

Perhaps this is a no-brainer, but surely someone out there has written code that relies on [insert dependency] only to find out their client's server was missing [aforementioned dependency].

link|flag
vote up 27 vote down

I'll add one:

  • how to do caching
link|flag
vote up 29 vote down
  1. Web standards
  2. Awareness of browsers
  3. Awareness of accessibility
  4. Awareness of usability
link|flag
show 2 more comments
vote up 7 vote down
  • Consider URLs, a URL design with REST in mind could make exposing APIs easier in the future. Definitely much easier to get your URLs right the first time then to change them in the future and deal with the SEO consequences.
  • Read Josh Porter's book Designing for the Social Web.
  • Have some way to accept criticism and suggestions.
  • Know what progressive enhancement an graceful degradation are, JavaScript is NOT a requirement to operate the web and should be treated as such.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.