What should a developer know before building a public web site? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-21T19:32:55Z http://stackoverflow.com/feeds/question/72394 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site 413 What should a developer know before building a public web site? Joel Coehoorn 2008-09-16T13:47:53Z 2009-11-12T12:16:56Z <p>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 <a href="http://www.codinghorror.com/blog/archives/001167.html" rel="nofollow">HttpOnly cookies</a>, <a href="http://www.codinghorror.com/blog/archives/001174.html" rel="nofollow">sitemaps</a>, <em>and</em> <a href="http://www.codinghorror.com/blog/archives/001171.html" rel="nofollow">cross-site request forgeries</a> <em>all in the same site</em>, what important thing could I be forgetting as well?</p> <p>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). </p> <p>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.</p> <p><strong>Also:</strong> 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, <em>Which</em> standards? In what circumstances, and why? Provide a link to the standard's spec.</p> <p><hr /></p> <p><strong>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.</strong></p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72415#72415 9 Answer by Andrew Taylor for What should a developer know before building a public web site? Andrew Taylor 2008-09-16T13:50:11Z 2008-09-16T13:50:11Z <p>How to work with absolute and relative paths.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72426#72426 9 Answer by Raithlin for What should a developer know before building a public web site? Raithlin 2008-09-16T13:50:32Z 2008-09-16T13:50:32Z <ul> <li>Valid (X)HTML - with the appropriate tags. </li> <li>No broken links (See above about relative links)</li> </ul> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72436#72436 24 Answer by Twan for What should a developer know before building a public web site? Twan 2008-09-16T13:51:10Z 2008-09-16T15:25:11Z <p>It might be a bit outside of the scope, but I'd say that knowing how <strong><a href="http://www.robotstxt.org/robotstxt.html" rel="nofollow">robots.txt</a></strong> and search engine spiders work is a plus.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72441#72441 7 Answer by Eric DeLabar for What should a developer know before building a public web site? Eric DeLabar 2008-09-16T13:51:37Z 2008-09-16T13:57:23Z <ul> <li>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.</li> <li>Read Josh Porter's book Designing for the Social Web.</li> <li>Have some way to accept criticism and suggestions.</li> <li>Know what progressive enhancement an graceful degradation are, JavaScript is NOT a requirement to operate the web and should be treated as such.</li> </ul> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72468#72468 29 Answer by qui for What should a developer know before building a public web site? qui 2008-09-16T13:52:58Z 2008-09-16T13:52:58Z <ol> <li>Web standards</li> <li>Awareness of browsers</li> <li>Awareness of accessibility</li> <li>Awareness of usability</li> </ol> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72474#72474 27 Answer by Joel Coehoorn for What should a developer know before building a public web site? Joel Coehoorn 2008-09-16T13:53:12Z 2008-09-16T13:53:12Z <p>I'll add one: </p> <ul> <li>how to do caching</li> </ul> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72507#72507 9 Answer by Jordan for What should a developer know before building a public web site? Jordan 2008-09-16T13:55:24Z 2008-09-16T13:55:24Z <p>I would think that knowing all you can about your deployment environment will be would rank up there.</p> <p>IIS, MSSQL or Apache, MySQL, etc? ASP.NET, PHP, etc?</p> <p>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].</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72514#72514 5 Answer by Graeme Perrow for What should a developer know before building a public web site? Graeme Perrow 2008-09-16T13:55:47Z 2008-09-16T13:55:47Z <p>Cross-browser support, particularly with respect to CSS.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72523#72523 7 Answer by Gareth Jenkins for What should a developer know before building a public web site? Gareth Jenkins 2008-09-16T13:56:20Z 2008-09-16T13:56:20Z <p>Ensure that whatever framework/server-side scripting/web server/other you're using doesn't expose error messages directly to the user.</p> <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72558#72558 1 Answer by Mark T for What should a developer know before building a public web site? Mark T 2008-09-16T14:00:06Z 2008-09-16T14:00:06Z <p>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.<P> The <b>only</b> way to know if your pages are going to operate correctly on all web browsers is to <b>try</b> it on every browser you can find: IE, Firefox, Opera, Safari, and Chorme for a start.<P> So, yes, of course, use standard practices. But then <b>test</b> and remove those features which do not work across all browsers.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72744#72744 79 Answer by Aston for What should a developer know before building a public web site? Aston 2008-09-16T14:15:10Z 2008-09-16T14:15:10Z <ul> <li>Never put email addresses in plain text because they will get spammed to death</li> <li>Be ultra paranoid about security.</li> <li>Get it looking correct in Firefox first, <em>then</em> Internet Explorer.</li> <li>Avoid links that say "click here". It ruins a perfectly good SEO opportunity.</li> <li>Understand that you'll spend 20% of the time developing, 80% maintaining, so code it accordingly.</li> </ul> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72892#72892 22 Answer by yoavf for What should a developer know before building a public web site? yoavf 2008-09-16T14:27:16Z 2008-09-16T14:27:16Z <p>In addition to caching </p> <ul> <li>know how to set up and <a href="http://developer.yahoo.com/performance/rules.html#gzip" rel="nofollow"><strong>gzip</strong> content</a>.</li> </ul> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72935#72935 4 Answer by broady for What should a developer know before building a public web site? broady 2008-09-16T14:30:01Z 2008-09-16T14:30:01Z <p>Good knowledge of HTTP, including caching and expiry headers</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72956#72956 5 Answer by Marc Gear for What should a developer know before building a public web site? Marc Gear 2008-09-16T14:32:33Z 2009-05-08T17:09:40Z <p>How to avoid Cross site request forgeries (xsrf) (this is not cross site scripting (xss))</p> <p>Now i'll probably be modded down for overuse of parenthesis</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/73166#73166 6 Answer by Wayne for What should a developer know before building a public web site? Wayne 2008-09-16T14:50:41Z 2008-09-16T14:50:41Z <p>How to build a scalable design in the off chance that the site becomes really popular.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/73324#73324 1 Answer by Jay for What should a developer know before building a public web site? Jay 2008-09-16T15:03:41Z 2008-09-16T15:03:41Z <ul> <li><p>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. </p></li> <li><p>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. </p></li> </ul> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/73379#73379 -7 Answer by Omar Abid for What should a developer know before building a public web site? Omar Abid 2008-09-16T15:09:17Z 2008-09-16T15:09:17Z <p>What about languages?<br /> - HTML - JavaScript - PHP/.net/python - Ajax</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/73413#73413 3 Answer by Johnny Bravado for What should a developer know before building a public web site? Johnny Bravado 2008-09-16T15:13:31Z 2008-09-16T15:13:31Z <p>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. </p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/73714#73714 1 Answer by Mr. Matt for What should a developer know before building a public web site? Mr. Matt 2008-09-16T15:39:40Z 2008-09-16T15:39:40Z <ul> <li>Web standards</li> <li>CSS</li> <li>Interface Design</li> </ul> <p>If it's unusable, you have no chance!</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/73759#73759 11 Answer by thesmallprint for What should a developer know before building a public web site? thesmallprint 2008-09-16T15:44:21Z 2009-09-12T12:50:35Z <p>Well, everyone else has already mentioned most things I thought of - but one thing I always forget is a <strong><a href="http://www.w3.org/2005/10/howto-favicon" rel="nofollow">favicon</a></strong>. 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 <a href="http://www.hanselman.com/blog/FavIconicoCanBeABandwidthHog.aspx" rel="nofollow">carefully</a>.</p> <p>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!</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/73926#73926 3 Answer by Peter GA. for What should a developer know before building a public web site? Peter GA. 2008-09-16T15:59:40Z 2008-12-30T02:40:48Z <p>WEB STANDARDS: </p> <p><UL> <LI>HTML</LI> <LI>CSS</LI> <LI>XML</LI> <LI>JAVASCRIPT</LI></UL></p> <p>HTTP PROTOCOLS. <BR> UI Design <BR> Web Security <BR>Web Caching <BR> Some web server knowledgement ( apache HTTPD, ISS, Light HTTPD) <BR> LAMP</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/73967#73967 60 Answer by Jonny Barnes for What should a developer know before building a public web site? Jonny Barnes 2008-09-16T16:03:12Z 2008-09-16T16:03:12Z <p>Rule number one of security:</p> <p><strong>Never</strong> trust user input.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/73970#73970 24 Answer by Ed Lucas for What should a developer know before building a public web site? Ed Lucas 2008-09-16T16:03:29Z 2008-09-16T16:03:29Z <p>Here are a couple thoughts. </p> <p>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.).</p> <p>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).</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/75344#75344 2 Answer by Alejandro Mezcua for What should a developer know before building a public web site? Alejandro Mezcua 2008-09-16T18:18:19Z 2008-09-16T18:18:19Z <p>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).</p> <p>The application has to be run by some support personnel and they need tools to track possible problems that may appear.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/75636#75636 3 Answer by superwiren for What should a developer know before building a public web site? superwiren 2008-09-16T18:47:11Z 2008-09-16T18:47:11Z <p>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 <em>is</em> important. Layot and flow <em>is</em> important. Otherwise no one will use it, other that scammers, spammers and robots. </p> <p>:)</p> <p>//W</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/75905#75905 1 Answer by VirtuosiMedia for What should a developer know before building a public web site? VirtuosiMedia 2008-09-16T19:17:03Z 2008-09-16T19:17:03Z <p>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. </p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/76376#76376 1 Answer by Purfideas for What should a developer know before building a public web site? Purfideas 2008-09-16T20:08:18Z 2008-09-16T20:08:18Z <p>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 <em>your</em> site).</p> <p>There are session highjacking attacks which are regarded as remotely executable by NIST, and exploits are in the wild today. Here are some refs:</p> <p><a href="http://fscked.org/projects/cookiemonster" rel="nofollow">http://fscked.org/projects/cookiemonster</a></p> <p><a href="http://www.google.com/search?client=safari&amp;rls=en-us&amp;q=CVE-2002-1152&amp;ie=UTF-8&amp;oe=UTF-8" rel="nofollow">CVE-2002-1152</a></p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/82592#82592 1 Answer by Katy for What should a developer know before building a public web site? Katy 2008-09-17T12:30:02Z 2008-09-17T12:30:02Z <p>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.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/86809#86809 1 Answer by ykaganovich for What should a developer know before building a public web site? ykaganovich 2008-09-17T19:39:50Z 2008-09-17T19:39:50Z <ul> <li>how SSL works</li> <li>how PKI works</li> <li>how cookies are used to manage sessions</li> </ul> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/86889#86889 1 Answer by Mike for What should a developer know before building a public web site? Mike 2008-09-17T19:47:27Z 2008-09-17T19:47:27Z <p>HTTP Compression is often overlooked and can drastically speed up a website.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/88148#88148 1 Answer by X-Istence for What should a developer know before building a public web site? X-Istence 2008-09-17T22:00:33Z 2009-08-18T17:59:11Z <p>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.</p> <p>"Be lenient in what you accept, but strict in what you output"</p> <p>However, don't trust any user generated input in any way shape or form. Don't trust it!</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/88303#88303 8 Answer by JoshM for What should a developer know before building a public web site? JoshM 2008-09-17T22:22:36Z 2008-09-17T22:22:36Z <p>When to say "no" to the designer or client, and how to do so gracefully and diplomatically.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/88532#88532 1 Answer by Ben Dunlap for What should a developer know before building a public web site? Ben Dunlap 2008-09-17T23:02:53Z 2008-09-18T16:03:55Z <p>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.</p> <p>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 <em>whether</em> your site will be hacked, as <em>when</em> it will happen and how much pain will be involved in cleaning it up.</p> <p>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.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/91812#91812 1 Answer by emremp for What should a developer know before building a public web site? emremp 2008-09-18T11:44:03Z 2008-09-18T11:44:03Z <p>Site design and development with thinking of localization feature for other languages. </p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/137276#137276 49 Answer by Mauricio Scheffer for What should a developer know before building a public web site? Mauricio Scheffer 2008-09-26T01:33:59Z 2008-09-26T01:33:59Z <ul> <li>Web standards: it's cheaper to aim for standards than testing for every browser available (and in a public website you will see a lot of different browsers/version/OS combinations (30+))</li> <li>SEO-friendly URLs: changing URLs later in the game is quite painful for the developers and the site will most probably take a PageRank hit.</li> <li>Understand HTTP. If you have only worked with ASP.NET webforms, then you probably don't really understand HTTP. I know people that have worked with webforms for years and they don't know the difference between a GET and a POST, let alone cookies or how session works.</li> <li>HTTP Caching: Understand what to cache what NOT to cache.</li> <li>Optimize image weights. It's not cool to have a 20k image for a repeating background...</li> <li>Read and understand yahoo's best practices (<a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">http://developer.yahoo.com/performance/rules.html</a>). Not every rule applies to every website.</li> <li>Use YSlow for guidance, but understand its limitations.</li> <li>Understand how javascript is processed on the browser. If you put tons of external scripts at the beginning of your page, it's gonna take forever to load.</li> <li>Consider cell phone usability: some users will access your site using their native cell phone browser (I'm not talking about iPhones or Opera Mini). If your site is pure ajax, they will probably be out of luck.</li> <li>Learn the difference between 301 and 302 redirects: it's not the same for search engines.</li> <li>Set up google analytics (or any other analytics package) right from the start.</li> </ul> <p>Not specific to public websites, but useful nevertheless:</p> <ul> <li>Server caching: identify and exploit any caching opportunities, it makes a big performance difference. It's often overlooked on non-public websites.</li> <li>Set up a good error reporting solution, with as many details as possible. You will get a lot of errors when you launch, no matter how much you tested, so you better get all the details you can.</li> <li>Set up an Operation Database (see for example <a href="http://ayende.com/Blog/archive/2008/05/13/DevTeach-Home-Grown-Production-System-Monitoring-and-Reports.aspx" rel="nofollow">http://ayende.com/Blog/archive/2008/05/13/DevTeach-Home-Grown-Production-System-Monitoring-and-Reports.aspx</a>) so you can quickly identify bottlenecks.</li> <li>Set up a good deployment strategy. You will probably deploy more often than non-public sites (we deploy daily).</li> <li>Realize that web applications are inherently multi-threaded, you will have lots of visitors (typically much more than in non-public websites), and threads are not unlimited.</li> </ul> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/138805#138805 14 Answer by AJ for What should a developer know before building a public web site? AJ 2008-09-26T11:14:07Z 2008-09-26T11:14:07Z <p>You also have to:</p> <ul> <li>Keep your system up to date with the latest patches. </li> <li>Keep yourself up to date with knowledge of new vulnerabilities affecting your platform, and attack techniques in general. </li> </ul> <p>I follow several security related blogs and podcasts. </p> <ul> <li><a href="http://www.schneier.com/blog/index.rdf" rel="nofollow">Bruce Schneier</a></li> <li><a href="http://www.twit.tv/sn" rel="nofollow">Security Now!</a></li> <li><a href="http://www.theregister.co.uk/security/headlines.atom" rel="nofollow">The Register</a></li> <li><a href="http://www.darkreading.com/rss.asp?f_id=9428" rel="nofollow">Dark Reading</a></li> </ul> <p>In addition, I get email alerts from SANS <a href="https://portal.sans.org/" rel="nofollow">https://portal.sans.org/</a>. (you need to register, but it's a great source). </p> <p>(I'm always interested in learing about other good sources, too). </p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/138860#138860 12 Answer by Kramii for What should a developer know before building a public web site? Kramii 2008-09-26T11:25:44Z 2008-09-26T11:25:44Z <p>If you have any influence on design, please read, "Don't Make Me Think" by Steve Krug. It is an easy read, and will almost certainly make you think...</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/167558#167558 5 Answer by Joel Coehoorn for What should a developer know before building a public web site? Joel Coehoorn 2008-10-03T15:56:00Z 2008-10-03T15:56:00Z <p>Found a new one today:</p> <ul> <li>Reset Style sheets</li> </ul> <p>They style sheets you included as a base-line when starting a project to give you more consistent behavior across different browsers. See this question:<br /> <a href="http://stackoverflow.com/questions/167531/is-it-ok-to-use-a-css-reset-stylesheet">http://stackoverflow.com/questions/167531/is-it-ok-to-use-a-css-reset-stylesheet</a></p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/167608#167608 6 Answer by Tim Farley for What should a developer know before building a public web site? Tim Farley 2008-10-03T16:04:49Z 2008-10-03T16:04:49Z <p>On a public site, make sure you are using an <a href="http://www.sitemaps.org/" rel="nofollow">XML sitemap</a> to help search engine crawlers crawl your content more intelligently. </p> <p>If you have non-HTML content on your site, you should also look into <a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=40318" rel="nofollow">Google's extensions of the sitemap protocol</a> to make sure you are using whatever is appropriate. They have specific extensions for <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=42738" rel="nofollow">News</a>, <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=48162" rel="nofollow">Video</a>, <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=75225" rel="nofollow">Code</a>, <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=34648" rel="nofollow">Mobile-specific</a> content and <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=94555" rel="nofollow">Geospatial</a> content.</p> <p>One thing I learned that was not obvious in the Google help, is that each of these content-specific sitemaps should be a separate file and joined together at the root with a <a href="http://sitemaps.org/protocol.php#index" rel="nofollow">sitemap index file</a>. For some reason Google doesn't like you to mix content in one sitemap. Also, when you use <a href="http://www.google.com/webmasters/tools/" rel="nofollow">Google Webmaster tools</a> to tell Google about your sitemaps, tell it about each of the special sitemaps you have separately and use the drop-down to specify the type. You would think the crawler could use the XML to auto-detect this stuff, but apparently not.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/192627#192627 1 Answer by Ates Goral for What should a developer know before building a public web site? Ates Goral 2008-10-10T18:50:07Z 2008-10-10T18:50:07Z <p>A web developer should know:</p> <ul> <li><a href="http://www.useit.com/alertbox/" rel="nofollow">Jakob Nielsen's Alertbox</a></li> <li>That less is more</li> <li>How to decouple presentation (HTML, CSS) from business logic (JavaScript, backend)</li> </ul> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/195019#195019 36 Answer by thesmallprint for What should a developer know before building a public web site? thesmallprint 2008-10-12T02:46:11Z 2009-11-03T13:25:29Z <p><strong>Security</strong></p> <ul> <li>Filter and validate incoming user input ('amount' does not need to accept alphabetical characters) and escape outgoing user input (a ' in user input, is NOT the same as an SQL '). <br /><strong>Never trust any data given by the user.</strong></li> <li>And the above will help with protecting against SQL injection.</li> <li>Understand SSL </li> <li>Keep your systems up to date with the latest patches.</li> <li>Protect yourself from cross site scripting </li> <li>How to resist session hijacking</li> <li>Find out about HTTPOnly cookies</li> <li>How to handle authentication/permissions</li> <li>Understand PKI (public keys)</li> <li>Keep up to date! This is the most important thing, make sure to follow all the latest information about possible security issues and vulnerabilities that affect your platform. </li> </ul> <p><strong>SEO</strong></p> <ul> <li>Create SEO friendly URLs - example.com/articles/rampaging-bull-tramples-unicorn NOT example.com?article=45</li> <li>Use an XML sitemap so that site engines can crawl your site more intelligently</li> <li>Set up Google Analytics (or another analytics package) from the start</li> <li>Learn the difference between 301 and 302 redirects: it's not the same for search engines.</li> <li>Set up a robots.txt file</li> </ul> <p><strong>Performance</strong></p> <ul> <li>How to cache</li> <li>What <em>not</em> to cache</li> <li>How to gzip</li> <li>Make regular backups. Don't just rely on your hosting provider - have another backup source in case something critical is destroyed (like a database table)</li> <li>Read Yahoo's best practices (<a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">http://developer.yahoo.com/performance/rules.html</a>) for information on improving performance</li> <li>Set up an Operation Database (<a href="http://ayende.com/Blog/archive/2008/05/13/DevTeach-Home-Grown-Production-System-Monitoring-and-Reports.aspx" rel="nofollow">http://ayende.com/Blog/archive/2008/05/13/DevTeach-Home-Grown-Production-System-Monitoring-and-Reports.aspx</a>) to quickly identify bottlenecks.</li> <li>Look into performance monitoring</li> </ul> <p><strong>Productivity</strong></p> <ul> <li>Documentation!</li> <li>Code from the beginning with maintainability in mind</li> <li>Have a good deployment strategy - don't save it to the very end to figure this out.</li> <li>URLs designed with REST in mind could save you a headache in the future. </li> <li>Use patterns like MVC to seperate your application flow from your database logic.</li> <li>Be aware of the many frameworks out there that will speed up your development</li> <li>Use staging and a version control system to deploy updates so that your users won't be affected</li> <li>Set up an error logging system. No matter how well coded your website will have errors when it is released. Don't wait for the user to let you know; be proactive in identifying errors and bugs</li> <li>Have a bug tracker</li> <li>Know your environment. Your OS, language, database. When you need to debug it will be important to understand how these things work at a basic level in the least.</li> </ul> <p><strong>User experience</strong></p> <ul> <li>Be aware of accessibility. This is a legal requirement for some programmers in some jurisdictions. Even if it's not, you should bear it in mind. </li> <li>Never put email addresses in plain text, or they will be spammed to death.</li> <li>Have some method for users to submit their comments and suggestions</li> <li>Catch errors and don't display them to the user; display something they can understand instead</li> <li>Remember that cell phones and other mobile devices with browsers are becoming more common. Sometimes they have very poor javascript support. Will your site look okay on one of these?</li> </ul> <p><strong>Core Web technologies</strong></p> <ul> <li>Understand HTTP, and things like GET, POST, cookies and sessions. </li> <li>How to work with absolute and relative paths</li> <li>Realize that web applications are inherently multi-threaded, you will have lots of visitors (typically much more than in non-public websites), and threads are not unlimited.</li> </ul> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/217496#217496 0 Answer by Tanmoy for What should a developer know before building a public web site? Tanmoy 2008-10-20T04:08:02Z 2008-10-20T04:08:02Z <p>I am new in Web Development and what I faced problem with are</p> <ol> <li>Detail knowledge about JavaScript and Ajax.</li> <li>Security. Specially XSS and CSRF etc.</li> <li>Some knowledge about CSS even if there are dedicated designers for it.</li> <li>Adherence of W3C standards or others.</li> <li>Deployment issues and how to solve them.</li> <li>Browsers and How they work. Same origin policy and why it is important.</li> </ol> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/223391#223391 0 Answer by for What should a developer know before building a public web site? 2008-10-21T20:31:28Z 2008-10-21T20:31:28Z <p>Need to know what is easy to use for public not for an it professional or developer.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/271633#271633 1 Answer by homeworldfan829 for What should a developer know before building a public web site? homeworldfan829 2008-11-07T09:42:09Z 2008-11-07T09:42:09Z <p>how to handle the slashdot effect</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/305381#305381 412 Answer by naeblis for What should a developer know before building a public web site? naeblis 2008-11-20T14:03:04Z 2009-11-04T18:22:24Z <p>The idea here is that most of us should <em>already</em> know <em>most</em> 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.</p> <p><strong>Interface and User Experience</strong></p> <ul> <li>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 (<a href="http://firefox.com/" rel="nofollow">Firefox</a>), a Webkit engine (<a href="http://www.apple.com/safari/" rel="nofollow">Safari</a>, <a href="http://www.google.com/chrome" rel="nofollow">Chrome</a>, and some mobile browsers), your supported IE browsers (take advantage of the <a href="http://www.microsoft.com/Downloads/details.aspx?FamilyID=21eabb90-958f-4b64-b5f1-73d0a413c8ef&amp;displaylang=en" rel="nofollow">Application Compatibility VPC Images</a>), and <a href="http://www.opera.com/" rel="nofollow">Opera</a>. Also consider how browsers render your site in different operating systems.</li> <li>Consider how people might use the site other than from the major browsers: cell phones, screen readers and search engines, for example. &mdash; Some accessibility info: <a href="http://www.w3.org/WAI/" rel="nofollow">WAI</a> and <a href="http://www.section508.gov/" rel="nofollow">Section508</a>, Mobile development: <a href="http://mobiforge.com/" rel="nofollow">MobiForge</a></li> <li>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.</li> <li>Don't display unfriendly errors directly to the user</li> <li>Don't put users' email addresses in plain text as they will get spammed to death</li> <li><a href="http://www.codinghorror.com/blog/archives/001228.html" rel="nofollow">Build well-considered limits into your site</a> - This also belongs under Security.</li> <li>Learn how to do <a href="http://en.wikipedia.org/wiki/Progressive%5Fenhancement" rel="nofollow">progressive enhancement</a></li> </ul> <p><strong>Security</strong></p> <ul> <li>It's a lot to digest but the <a href="http://www.owasp.org/index.php/Category%3AOWASP%5FGuide%5FProject" rel="nofollow">OWASP development guide</a> covers Web Site security from top to bottom</li> <li>Know about <a href="http://en.wikipedia.org/wiki/SQL%5Finjection" rel="nofollow">SQL injection</a> and how to prevent it</li> <li>Never trust user input (cookies count as user input too!)</li> <li><strike>Encrypt</strike> Hash and salt passwords rather than storing them plain-text.</li> <li>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 <em>after</em> you're hacked.</li> <li>Know the <a href="https://www.pcisecuritystandards.org/" rel="nofollow">rules for processing credit cards</a>. See this question as well:<br> <a href="http://stackoverflow.com/questions/51094/payment-processors-what-do-i-need-to-know-if-i-want-to-accept-credit-cards-on-m">http://stackoverflow.com/questions/51094/payment-processors-what-do-i-need-to-know-if-i-want-to-accept-credit-cards-on-m</a></li> <li>Use <a href="http://www.mozilla.org/projects/security/pki/nss/ssl/draft302.txt" rel="nofollow">SSL</a>/<a href="http://en.wikipedia.org/wiki/Https" rel="nofollow">HTTPS</a> for login and any pages where sensitive data is entered (like credit card info)</li> <li>How to resist session hijacking</li> <li>Avoid <a href="http://en.wikipedia.org/wiki/Cross-site%5Fscripting" rel="nofollow">cross site scripting</a> (XSS) </li> <li>Avoid <a href="http://en.wikipedia.org/wiki/Cross-site%5Frequest%5Fforgery" rel="nofollow">cross site request forgeries</a> (XSRF)</li> <li>Keep your system(s) up to date with the latest patches</li> <li>Make sure your database connection information is secured.</li> <li>Keep yourself informed about the latest attack techniques and vulnerabilities affecting your platform.</li> <li>Read <a href="http://code.google.com/p/browsersec/wiki/Main" rel="nofollow">The Google Browser Security Handbook</a> </li> </ul> <p><strong>Performance</strong></p> <ul> <li>Implement caching if necessary, understand and use <a href="http://www.mnot.net/cache%5Fdocs/" rel="nofollow">HTTP caching</a> properly </li> <li>Optimize images - don't use a 20KB image for a repeating background</li> <li>Learn how to <a href="http://developer.yahoo.com/performance/rules.html#gzip" rel="nofollow" title="gzip content">gzip content</a></li> <li>Combine/concatenate multiple stylesheets or multiple script files to reduce number of browser connections and improve GZip ability to compress duplications between files</li> <li>Take a look at the <a href="http://developer.yahoo.com/performance/" rel="nofollow">Yahoo Exceptional Performance</a> site, lots of great guidelines including improving front-end performance and their <a href="http://developer.yahoo.com/yslow/" rel="nofollow">YSlow</a> tool. <a href="http://code.google.com/speed/page-speed/docs/rules%5Fintro.html" rel="nofollow">Google page speed</a> is another tool for performance profiling. Both require <a href="http://getfirebug.com/" rel="nofollow">firebug</a> installed.</li> <li>Use <a href="http://alistapart.com/articles/sprites" rel="nofollow">CSS Image Sprites</a> for small related images like toolbars (see the the "minimize http requests" point)</li> <li>Busy web sites should consider <a href="http://developer.yahoo.com/performance/rules.html#split" rel="nofollow">splitting components across domains</a>. Specifically...</li> <li>Static content (ie, images, css, javascript, and generally content that doesn't need access to cookies) should go in a separate domain <em><a href="http://blog.stackoverflow.com/2009/08/a-few-speed-improvements/" rel="nofollow">that does not use cookies</a></em>, because all cookies for a domain and it's subdomains are sent with every request to the domain and it's subdomains.</li> <li>Minimize the total number of http requests required for a browser to render the page.</li> </ul> <p><strong>SEO (Search Engine Optimization)</strong></p> <ul> <li>Use "search engine friendly" URLS, i.e. use "example.com/pages/45-article-title" instead of "example.com/index.php?page=45" </li> <li>Don't use links that say "click here". You're wasting an SEO opportunity and it makes things harder for people with screen readers.</li> <li>Have an <a href="http://www.sitemaps.org/" rel="nofollow">XML sitemap</a></li> <li>Use <a href="http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html" rel="nofollow"><code>&lt;link rel="canonical" ... /&gt;</code></a> when you have multiple urls that point to the same content</li> <li>Use <a href="http://www.google.com/webmasters/" rel="nofollow">Google Webmaster Tools</a> and <a href="http://siteexplorer.search.yahoo.com/" rel="nofollow">Yahoo Site Explorer</a></li> <li>Install <a href="http://www.google.com/analytics/" rel="nofollow">Google Analytics</a> right at the start</li> <li>Know how <a href="http://en.wikipedia.org/wiki/Robots%5Fexclusion%5Fstandard" rel="nofollow">robots.txt</a> and search engine spiders work</li> <li>Rewrite requests asking for yourdomain.com to www.yourdomain.com to prevent splitting the google ranking between both sites</li> <li>Know that there can be bad behaving spiders out there</li> <li>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>. </li> </ul> <p><strong>Technology</strong></p> <ul> <li>Understand <a href="http://www.ietf.org/rfc/rfc2616.txt" rel="nofollow">HTTP</a> and things like GET, POST, sessions, cookies, and what it means to be "stateless".</li> <li>Write your <a href="http://www.w3.org/TR/xhtml1/" rel="nofollow">XHTML</a>/<a href="http://www.w3.org/TR/REC-html40/" rel="nofollow">HTML</a> and <a href="http://www.w3.org/TR/CSS2/" rel="nofollow">CSS</a> according to the <a href="http://www.w3.org/TR/" rel="nofollow">W3C specifications</a> and make sure they <a href="http://validator.w3.org/" rel="nofollow">validate</a>. 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.</li> <li>Understand how JavaScript is processed in the browser.</li> <li>Understand how JavaScript, style sheets, and other resources used by your page are loaded and consider their impact on <em>perceived</em> performance. It may be appropriate in some cases to <a href="http://developer.yahoo.net/blog/archives/2007/07/high%5Fperformanc%5F5.html" rel="nofollow">move scripts to the bottom</a> of your pages.</li> <li>Understand how the JavaScript sandbox works, especially if you intend to use iframes.</li> <li>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.</li> <li>Learn the <a href="http://www.bigoakinc.com/blog/when-to-use-a-301-vs-302-redirect/" rel="nofollow">difference between 301 and 302 redirects</a> (this is also an SEO issue).</li> <li>Learn as much as you possibly can about your deployment platform</li> <li>Consider using a <a href="http://stackoverflow.com/questions/167531/is-it-ok-to-use-a-css-reset-stylesheet">Reset Style Sheet</a></li> <li>Consider javascript frameworks (such as <a href="http://jquery.com/" rel="nofollow">jQuery</a>, <a href="http://mootools.net/" rel="nofollow">MooTools</a>, or <a href="http://www.prototypejs.org/" rel="nofollow">Prototype</a>), which will hide a lot of the browser differences when using javascript for DOM manipulation </li> </ul> <p><strong>Bug fixing</strong></p> <ul> <li>Understand you'll spend 20% of the time coding and 80% of it maintaining so code accordingly</li> <li>Set up a good error reporting solution</li> <li>Have some system for people to contact you with suggestions and criticsm.</li> <li>Document how the application works for future support staff and people performing maintenance</li> <li>Make frequent backups! (And make sure those backups are functional) <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. </li> </ul> <p>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. </p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/355455#355455 0 Answer by Justin Scott for What should a developer know before building a public web site? Justin Scott 2008-12-10T08:53:47Z 2008-12-10T08:53:47Z <p>Regarding credit cards and debit cards, at least within the United States, be aware of PCI compliance and the various rules and responsibilities that it covers. Accepting credit cards for a small e-commerce application can open a very nasty can of worms if the proper security measures are not in place. It goes way beyond having SSL enabled on the web site. Search for PCI-DSS on your favorite search engine and make sure you, and your clients, understand the regulations that they will need to follow. Other locales have similar rules under different names, but all of the major payment card players are getting serious about securing cardholder data.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/359484#359484 0 Answer by Gogonez for What should a developer know before building a public web site? Gogonez 2008-12-11T14:16:16Z 2008-12-11T14:16:16Z <p>What should a developer know <em>before</em> building a public web site?</p> <p>what about the data ? </p> <ol> <li>Data normalization</li> <li>Design Query structure of the data carefully</li> <li>Optimize it &amp; understand where to chache or not</li> </ol> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/369548#369548 14 Answer by BenAlabaster for What should a developer know before building a public web site? BenAlabaster 2008-12-15T20:09:27Z 2008-12-15T20:22:27Z <p>Aside from basic competence in the base language and the key technologies which might be assumed (although shouldn't be taken for granted):</p> <ul> <li><strong><em>Platform</em></strong> - no good attempting to develop an ASP.NET application for a server that doesn't support .NET, no good attempting to provide a SQL Server database to be hosted on a MySQL Server... etc.</li> <li><strong><em>Deadline</em></strong>/<strong><em>Budget</em></strong> - Does it need to be done by next week and therefore potentially has lots of quick hacks and workarounds vs. coding to strict standards and doing everything the right way.</li> <li><strong><em>Content</em></strong> - who is providing it? has it been vetted for quality and approved for publication? Have all applicable copyrights been checked? etc</li> <li><strong><em>Team/Stakeholders</em></strong> - Who needs to be kept in the loop for development, who will the developer be working with, who do they need to keep happy? etc. Will there be a designer or is the developer the designer too? Don't hire a top notch developer and assume their design skills are all that - most of them are not. I get by and can make something that looks reasonably professional, but I wouldn't consider myself a designer even by a <em>long</em> stretch of the imagination.</li> <li><strong><em>Target Audience</em></strong> - savvy, not-savvy, intranet, internet. Make no assumptions here, there's a great quote that goes "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning."</li> <li><strong><em>Hardware Base</em></strong> - how much performance has/have the host machine(s) got? Do we have to be concerned about limited memory/diskspace/resources? Obviously if it's only got a small amount of memory, then we need to make sure that minimal memory resources are used in the design of our application. Likewise for diskspace etc.</li> <li><strong><em>Platform</em></strong> - overall architectural/network topology</li> <li><strong><em>Maintenance</em></strong> - who will be maintaining this product? If the maintenance crew all have a VB background and haven't the first clue about PHP or C#, don't write it in those languages!! If the maintenance crew is you, then code in whatever you're most comfortable in.</li> </ul> <p>This is all before you even get to a web environment really. Once you get into a web environment you would really expect them to understand (in no particular order):</p> <ul> <li>Stateless interfaces</li> <li>Web protocols (HTTP/HTTPS/FTP) etc</li> <li>JavaScript and/or other relevant client-side coding techniques</li> <li>Various Persistence techniques - Cookies, Sessions, ViewState, ObjectState (and/or any others that relate to the APIs being used)</li> <li>At least a basic understanding of HTTP handlers and how they do their job</li> <li>Page Lifecycle</li> <li>Security in web environments - XSS, SQL Injection, Session hijacking etc etc.</li> </ul> <p>After that:</p> <ul> <li>Competence in the language used to develop the site</li> <li>Knowledge of standards and best practices and an ability to apply them effectively</li> <li>A good understanding of Cross browser techniques and hacks</li> <li>CSS techniques and standards (if the developer is expected to design too)</li> <li>Understanding of various browsers and their idiosynchrosies and workarounds</li> </ul> <p>And then - if your site is data driven</p> <ul> <li>An understanding of the database technologies to be used</li> <li>RDBMS design and performance tuning if you're asking them to design the underlying database. If you've got a DBA for that, then this is not such a major concern.</li> </ul> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/369596#369596 1 Answer by K Man for What should a developer know before building a public web site? K Man 2008-12-15T20:27:57Z 2008-12-15T20:27:57Z <ol> <li><p>Cross Browser Compatibility </p></li> <li><p>SEO </p></li> <li><p>Horizontal /Vertical Scaling</p></li> <li><p>Advantages/ Disadvantages of Caching</p></li> </ol> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/403617#403617 0 Answer by Ant P for What should a developer know before building a public web site? Ant P 2008-12-31T17:51:58Z 2008-12-31T17:51:58Z <p>Duplicate slashes in a path are normally harmless, but <code>&lt;a href="//index.html"&gt;</code> does not mean what you think it means.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/413204#413204 0 Answer by Rob for What should a developer know before building a public web site? Rob 2009-01-05T14:13:10Z 2009-01-05T14:13:10Z <p>Take a look at a good web usability book, e.g. <strong><a href="http://rads.stackoverflow.com/amzn/click/0321344758" rel="nofollow">Don't Make Me Think: A Common-Sense Approach to Web Usability</a></strong>, by Steve Krug.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/468515#468515 1 Answer by Jens Roland for What should a developer know before building a public web site? Jens Roland 2009-01-22T09:30:46Z 2009-01-28T00:36:52Z <p>Most of the essentials have been covered by the top 10 answers, but here are a few of the ones I missed up there:</p> <ul> <li><p>For browser compatibility testing, use browsershots.org (free)</p></li> <li><p>For stress testing, use the command line tool ab (on linux/OSX). It will let you find the 'heavier' pages, so you can do your performance tweaking where it will matter the most (ie. caching!). "A slow page is a DoS attack waiting to happen"</p></li> <li><p>If you, like most, will be using a web host rather than hosting your own web server, spend a couple of weeks (yes, weeks!) on the WebHostingTalk.com forum to get a feel for which hosting providers are currently the best in the lands. That forum is THE one and only gathering place for serious web hosting nerds, and these cats have the dirt on <em>everyone</em>. If you are serious about your web sites, you <em>need</em> to background check your hosting providers on WHT.</p></li> <li><p>Use a remote distributed system for monitoring your uptime (e.g. to determine whether it's time to move to a different hosting provider) - host-tracker.com comes to mind, but there are many others</p></li> <li><p>Do not write your own CAPTCHA. I repeat: Do NOT write your own CAPTCHA!</p></li> </ul> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/864023#864023 0 Answer by ToyChicken for What should a developer know before building a public web site? ToyChicken 2009-05-14T15:25:41Z 2009-05-14T15:25:41Z <p>Begin by designing your page as if HTML was your only tool and JS &amp; CSS didn't exist, and make sure it validates. (This is not an excuse to use tags, I'm talking about making good semantic code here!)</p> <p>Then, add CSS (from an external file), and gently style your work, adding as little extra HTML as possible.</p> <p>Finally, make your JS (I'd use jQuery) enhance the user experience - again adding as little extra markup as possible.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/990376#990376 0 Answer by Arjan van Bentem for What should a developer know before building a public web site? Arjan van Bentem 2009-06-13T09:17:57Z 2009-06-13T09:17:57Z <p>Especially for SEO, but <a href="http://randomcoder.com/articles/jsessionid-considered-harmful" rel="nofollow">for some other reasons</a> as well: <a href="http://stackoverflow.com/questions/689989/any-suggestions-on-how-to-session-proof-a-website/691486#691486">remove</a> session id's from (public) URLs, that might have been added by the web framework for cookie-less browsers, but may not be required for public browsing anyhow.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/1018018#1018018 0 Answer by Pedrom40 for What should a developer know before building a public web site? Pedrom40 2009-06-19T13:41:39Z 2009-06-19T13:41:39Z <p>This may have already been mentioned, but knowing how the client plans on updating the site. If the client has someone who "knows HTML", then prepare for problems. It's best to have a good CMS in place for updates if the client wishes to updated the website themselves, NEVER let them have access to all of your code.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/1089803#1089803 0 Answer by Alex Burr for What should a developer know before building a public web site? Alex Burr 2009-07-07T00:17:40Z 2009-07-07T00:17:40Z <p>Make sure someone in the organization already has the content maintenance, ongoing SEO and marketing plan worked out fully. Because if they haven't, they're going to default to you to provide all of those things (possibly with little compensation).</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/1098396#1098396 0 Answer by the_drow for What should a developer know before building a public web site? the_drow 2009-07-08T14:18:42Z 2009-07-08T14:18:42Z <p>Read about the Principle of least astonishment <a href="http://en.wikipedia.org/wiki/Principle%5Fof%5Fleast%5Fastonishment" rel="nofollow">here</a> and <a href="http://www.oualline.com/style/c08.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/1295575#1295575 0 Answer by desigeek for What should a developer know before building a public web site? desigeek 2009-08-18T18:08:51Z 2009-08-18T18:08:51Z <p>One very important thing for UI Heavy Sites is taking care of <strong>screen resolution</strong>. It can totally make or break the UI experience of your site. Thanks.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/1551398#1551398 1 Answer by Dave Everitt for What should a developer know before building a public web site? Dave Everitt 2009-10-11T18:33:58Z 2009-10-11T18:33:58Z <p>Develop for Gecko and Webkit browsers first, then use <a href="http://www.quirksmode.org/css/condcom.html" rel="nofollow">conditional comments</a> to address IE issues that cannot be fixed by tweaking CSS (e.g. for more specificity, rules that trigger IE's '<a href="http://www.satzansatz.de/cssd/onhavinglayout.html" rel="nofollow">hasLayout</a>', etc.)</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/1675725#1675725 1 Answer by cballou for What should a developer know before building a public web site? cballou 2009-11-04T18:24:58Z 2009-11-04T18:24:58Z <p>Know how to hinder <strong>Denial of Service (DoS)</strong> attacks on user login forms by keeping track of the number of failed logins over a given period of time. In the event you hit a certain threshold above the running average, increase the duration of all recurring login attempts by a particular amount (say 5 sec.).</p> <p>Someone feel free to modify for clarity :)</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/1675743#1675743 0 Answer by Tom for What should a developer know before building a public web site? Tom 2009-11-04T18:29:02Z 2009-11-04T18:29:02Z <p>Nothing. If you're building your first site, just build it. Get dirty, make mistakes and learn. Because after you've built hundreds and lots of advanced tricks are second hand to you, after you've done it all, seen it all, the one thing you'll always need to remember is the one thing you know when you start: you don't know everything. Especially if you're worried about security. Even if you cover all the bases, someone will come up with something new. It's the downside to being one of the Good Guys.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/1702534#1702534 0 Answer by rlb.usa for What should a developer know before building a public web site? rlb.usa 2009-11-09T17:32:06Z 2009-11-09T17:32:06Z <p>The cruel, hard facts:</p> <p>Users spend as much time on your website as an interviewer does reading your resume when submitted in a pile of thousands of others</p> <ul> <li>Users spend very little time on your website: Read, seconds.</li> <li>Users are lazy and they would rather be somewhere else</li> <li>If the user can't find what they are looking for within seconds, they leave</li> <li>If the user cannot identify what the website is all about, they leave</li> <li>If the website does not 'just work', they leave</li> <li>If the website annoys the user or does not appeal aesthetically to him, they leave</li> </ul> <p>Everything about websites and website design revolves around these facts.</p> <ul> <li>Clear Navigation</li> <li>Conciseness</li> <li>Branding strategies</li> <li>Colors, schemes, aesthetics, text placement, text formatting</li> <li>Helpful, not hindering, ajax/javascript</li> <li>Not reinventing the wheel when it comes to website use, navigation, etc</li> </ul> <p>This is just an outline on why it is so important to adhere to standards and read those website design books.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/1721784#1721784 0 Answer by ntze for What should a developer know before building a public web site? ntze 2009-11-12T12:16:56Z 2009-11-12T12:16:56Z <p><strong>Security:</strong></p> <ul> <li>Consider using an Application Firewall such as URLScan it works by blocking specific HTTP requests, URLScan helps prevent potentially harmful requests from being processed by web applications on the server.</li> <li>Disable Directory listing.</li> <li>Consider using a lower privilege identity.</li> <li>Don’t use Blacklists, but use Whitelists instead, teach your application what to accept not what to avoid.</li> <li>If using ASP.NET. Encrypt your connection strings using aspnet_regiis. This tool it’s so easy to use and requires simple steps to both encrypt and decrypt connection’s strings.</li> <li>Pages with sensitive data should not be cached: page content is easily accessed using browser’s history.</li> <li>Validate user inputs in the application, promote the use of Regular Expressions (and be assured that they work the way they are meant to be)</li> <li>Avoid, at all costs, client side validation (e.g. using Ajax or all JavaScript related validation libraries). JavaScript can and will, turned off and so your protections).</li> <li>Do NOT use GET for anything that changes the server state or contains sensitive information. GET requests are logged in the web server access logs. They are also shown in the browser history.</li> <li>DO use POST for every action that changes the server state and reject all non-POST methods. POST prevents unintentional actions, Most search engines won’t crawl POST forms and it also helps prevent duplicate submissions.</li> <li>If using Cookies, mark them as HTTPOnly using System.Net.Cookie. Set the httpOnlyCookies attribute on the authentication cookie. Internet Explorer Service Pack 1 supports this attribute, which prevents client-side script from accessing the cookie from the document.cookie property.</li> <li>Robots.txt files are the first place hackers look at. Use access controls to protect them.</li> <li>When constructing SQL queries, use type safe SQL parameters. AKA Use stored procedures and stored procedures only. Using stored procedures it is always the best approach, from both technical and security point of views.</li> <li>If using SQL Server. Use a least privileges user. Create a SQL Server login for the account. Map the login to a database user in the required database. Place the database user in a database role. Grant the database role limited permissions to only those stored procedures or table your application really needs. By using a database role, you avoid granting permissions directly to the database user. This isolate you from potential damage to the database.</li> <li>Use SSLs were possible, this will encrypt and protect your data while on the wire. Using SSL doesn’t necessary means you are secure. It simply means your data is encrypted while on the go. If using SSL, restrict authentication tickets to HTTPS connections only.</li> </ul> <p><strong>Performance:</strong></p> <ul> <li>Minimize HTTP Requests</li> <li>Add an Expires or a Cache-Control Header</li> <li>Gzip Components</li> <li>Put Stylesheets at the Top</li> <li>Put Scripts at the Bottom</li> <li>Minify JavaScript and CSS</li> <li>Optimize Images</li> </ul>