vote up 416 vote down star
931

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

1 2 3 next
vote up 416 vote down check

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 (take advantage of the Application Compatibility VPC Images), and Opera. Also consider how browsers render your site in different operating systems.
  • 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 and Section508, Mobile development: MobiForge
  • Staging: How to deploy updates without affecting your users. Ed Lucas's answer has some comments on this.
  • Don't display unfriendly errors directly to the user
  • Don't put users' email addresses in plain text as they will get spammed to death
  • Build well-considered limits into your site - This also belongs under Security.
  • Learn how to do progressive enhancement

Security

Performance

  • Implement caching if necessary, understand and use HTTP caching properly
  • Optimize images - don't use a 20KB image for a repeating background
  • Learn how to gzip content
  • Combine/concatenate multiple stylesheets or multiple script files to reduce number of browser connections and improve GZip ability to compress duplications between files
  • Take a look at the Yahoo Exceptional Performance site, lots of great guidelines including improving front-end performance and their YSlow tool. Google page speed is another tool for performance profiling. Both require firebug installed.
  • Use CSS Image Sprites for small related images like toolbars (see the the "minimize http requests" point)
  • Busy web sites should consider splitting components across domains. Specifically...
  • Static content (ie, images, css, javascript, and generally content that doesn't need access to cookies) should go in a separate domain that does not use cookies, because all cookies for a domain and it's subdomains are sent with every request to the domain and it's subdomains.
  • Minimize the total number of http requests required for a browser to render the page.

SEO (Search Engine Optimization)

  • 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
  • Use <link rel="canonical" ... /> when you have multiple urls that point to the same content
  • Use Google Webmaster Tools and Yahoo Site Explorer
  • Install Google Analytics right at the start
  • Know how robots.txt and search engine spiders work
  • Rewrite requests asking for yourdomain.com to www.yourdomain.com to prevent splitting the google ranking between both sites
  • Know that there can be bad behaving spiders out there
  • If you have non-text content look into Google's sitemap extensions for video etc. There is some good information about this in Tim Farley's answer.

Technology

  • Understand HTTP and things like GET, POST, sessions, cookies, and what it means to be "stateless".
  • Write your XHTML/HTML and CSS according to the W3C specifications and make sure they validate. 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.
  • Understand how JavaScript, style sheets, and other resources used by your page are loaded and consider their impact on perceived performance. It may be appropriate in some cases to move scripts to the bottom 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, mobile devices may not work as expected, and google won't run your javascript when indexing the site.
  • 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
  • Consider javascript frameworks (such as jQuery, MooTools, or Prototype), which will hide a lot of the browser differences when using javascript for DOM manipulation

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
  • Make frequent backups! (And make sure those backups are functional) Ed Lucas's answer 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.

link|flag
9  
Then edit it. I didn't write most of this: I'm only maintaining it -- a job which I've inherited because I asked the question, solicited this larger answer specifically, and I'm genuinely interested in seeing what we can come up with. The more contributions the better. – Joel Coehoorn Mar 16 at 1:18
34  
One more note: if you do come back and edit this, try to be respectful of what was written. Don't just remove the parts you disagree with: actually take the time to address the short-comings and provide something better. – Joel Coehoorn Mar 16 at 1:19
1  
To the SEO/"don't use 'click here' links" topic: use "'log in' to post comments" form instead. – erenon Jun 13 at 9:57
show 10 more comments
vote up 9 vote down

How to work with absolute and relative paths.

link|flag
vote up 9 vote down
  • Valid (X)HTML - with the appropriate tags.
  • No broken links (See above about relative links)
link|flag
vote up 24 vote down

It might be a bit outside of the scope, but I'd say that knowing how robots.txt and search engine spiders work is a plus.

link|flag
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
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 27 vote down

I'll add one:

  • how to do caching
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 5 vote down

Cross-browser support, particularly with respect to CSS.

link|flag
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 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 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 at 18:22
show 8 more comments
vote up 22 vote down

In addition to caching

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

Good knowledge of HTTP, including caching and expiry headers

link|flag
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 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 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 -7 vote down

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

link|flag
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 1 vote down
  • Web standards
  • CSS
  • Interface Design

If it's unusable, you have no chance!

link|flag
show 1 more comment
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 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 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
6  
+1 users are evil – Yassir May 8 at 17:56
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 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 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 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 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

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
  • how SSL works
  • how PKI works
  • how cookies are used to manage sessions
link|flag
show 1 more comment
1 2 3 next

Your Answer

Get an OpenID
or

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