Slashdot Mirror


Is Internet Explorer 6/7 Support Required Now?

k33l0r writes "Following Google's announcement ending support for Internet Explorer 6, I find myself wondering whether we (Web developers) really need to continue providing support for IE6 and IE7. Especially when creating Web sites intended for technical audiences, wouldn't it be best to end support for obsoleted browsers? Would this not provide additional incentives to upgrade? Recently I and my colleagues had to decide whether it was worth our time to try to support anything before IE8, and in the end we decided to redirect any IE6/7 user-agent to a separate page explaining that the site is not accessible with IE 6 or 7. This was easy once we saw from our analytics that fewer than 5% of visitors to the site were using IE at all. Have you had to make a choice like this? If so, what was your decision and what was the reasoning behind it?"

392 of 512 comments (clear)

  1. Why redirect them? by arndawg · · Score: 5, Insightful

    You could just let IE6 "try its best". And use a big red notice bar at the top with a link explaining it.

    1. Re:Why redirect them? by mwvdlee · · Score: 2, Insightful

      I consider myself a technical user.

      On one of my systems I still use IE6 because (A) my employer requires us to use Sharepoint, and for some "inexplicable" reason Sharepoint only supports a JS HTML editor in IE browsers and (B) because IE7 and IE8 don't allow me to access briefcase folders while browsing the files in those folders at the same time, which I need to do on my laptop.

      I wouldn't have a problem with IE6 support ending, but no support != banning.

      OTOH, how interresting can a site be for a, if it treat browser versions like this. How much could one possibly learn from a zealot?

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    2. Re:Why redirect them? by brentonboy · · Score: 5, Insightful

      Agreed. This is why browser sniffing is bad. Just design it to be standards compliant, and let the browsers that can't follow the standards fail, hopefully gracefully. Blocking IE6 users completely is just pointless.

    3. Re:Why redirect them? by OverZealous.com · · Score: 3, Informative

      For basic websites, I highly recommend Universal IE6 CSS.

      I've decided that I will never design a website that supports IE6, but instead will only server up this rudimentary (if nice-looking) style sheet. As long as your website is standards-based, compliant, and content-oriented, this CSS file works great. You do, however, have to include some of those annoying <!-- [if lt IE 7]>...<![endif]--> tags.

      For web apps, which are more complex, then I use a browser sniff and redirect IE6 users away. I don't care how "bad" or "evil" it is. It's better, to me, for users to know why a page doesn't work, than see a partially loaded page or pile of garbage.

    4. Re:Why redirect them? by Anonymous Coward · · Score: 2, Insightful

      I consider myself a developer.

      THERE IS NO FUCKING EXCUSE for not being able to support multiple browsers. if you're not supporting links, you're doing it wrong (seriously, how the hell are supposed to work blind's web readers if your site is a javascript meatball?)

      now: no need to fix your site every time to have it working with every browser out there.
      USE A CROSSPLATFORM LIBRARY

      http://dean.edwards.name/IE7/
      http://mochikit.com/about.html
      http://www.prototypejs.org/

    5. Re:Why redirect them? by Anonymous Coward · · Score: 1, Insightful

      You could just let IE6 "try its best". And use a big red notice bar at the top with a link explaining it.

      ...And start telling the customer that IE6 support costs extra. Or the other way: drop IE6 and save money!

    6. Re:Why redirect them? by jaq1an · · Score: 1

      I agree. I'm stuck using IE6 at work until the eejits in IT decide to upgrade. I don't think any browser should be blocked. If I wanted I should be able to VIOLA or MOSAIC from wayback when.

    7. Re:Why redirect them? by arndawg · · Score: 1

      have you tried chrome? you don't need to be an admin to install it. It can run from your local settings folder.

    8. Re:Why redirect them? by Anonymous Coward · · Score: 1, Interesting

      Yes, but you can let they know why it doesn't work with a big red message. Redirecting them away (effectively banning them) means you're assuming that you know better than your users. You probably do, but what gives you the right to make their upgrade decision for them? Show them why they're wrong, tell them why they should change, but don't force it on them.

      An anecdote: I was late to this whole firefox party. I used ie5.0 for many, manny years. Way longer than any sane geek. Eventually I got firefox for websites that just plain didn't work in ie5, but I still used ie5 as my primary broswer. It wasn't until the majority of websites I went to became unusable due to ie5's degenerate CSS engine that I gave it up. (Slashdot is particularly hilarious in ie5 these days.)

      The point is that any time I got to a website that had a blanket redirect based on my user-agent, I left that site, never to return. Nobody but nobody was going to *force* me to upgrade, and I suspect this is a common sentiment among old browser users.

      The best way to get users of old, crappy browsers to upgrade is to make pages that don't work right (and let them know why they don't work right). But don't ban them. Banning them will only inspire most of them to give you the finger and keep using their browser of choice out of spite. It will *reduce* the likelyhood that they will upgrade, and will accomplish nothing but pissing them off.

      Like several other people have already said--don't waste time supporting stuff you think is too old, just let the web standards death march leave them behind.

    9. Re:Why redirect them? by Nitewing98 · · Score: 3, Informative

      I agree. If you apply standards that all browsers should support, you'll also be friendly to other browsers like Firefox, Safari, Konqueror, Opera, etc. There's no reason to have to build separate pages and do redirects (or detect browser in PHP and cough up different page code). The whole point of HTML is that it should render in any browser (which includes Lynx, too). As a Mac user, I'm glad to see the web lose its Microsoft-centric view of the world. Firefox (which owes it's history to Netscape) finally put a dent in Microsoft's armor so others could succeed too.

      --

      Nitewing '98

      Everything works...in theory.

    10. Re:Why redirect them? by netJackDaw · · Score: 2, Interesting

      If I had modpoints I would mod parent up. Indeed, do not spend energy on blocking, fail instead...

    11. Re:Why redirect them? by Anonymous Coward · · Score: 1, Interesting

      Bad idea. If GP is under a regime that mandates IE6, they are probably also under held to terms of use that state they are unable to install additional software. That's the situation I'm under (UK.gov).

      I get a little annoyed when sites point-blank refuse to entertain IE6 because of zealotry. I use Firefox / Opera at home and provide Firefox as the default browser on any machines I build in my spare time. I'm not unaware of alternative browsers, just hamstrung by policies.

      I'd go so far as to suggest that a fairly extensive proportion of users still restricted to IE6 are those in large corporates / government bodies where IE6 is "the standard" due to activex kludges or whatever. Whether a developer should support IE6 would therefore be predicated on whether such traffic forms part of your target market.

    12. Re:Why redirect them? by PietjeJantje · · Score: 2, Insightful

      Depends on the audience. For starters, for a webshop, you are absolutely right. They shouldn't even piss away 2% of their customers. If you are not selling, things are different. IMO you shouldn't be held hostage by and pay for those companies who keep using IE6 because they don't want to pay for an upgrade. It is a bit ridiculous that the world is paying zillions in development costs so these companies can avoid it. They are parasites.

    13. Re:Why redirect them? by flimflammer · · Score: 3, Insightful

      It's fairly easy to put a top aligned red warning message that says "Please not: This site is not designed with support for Internet Explorer versions 6 and 7, and may contain errors when viewed."

      Blocking people from viewing your page because they're using a browser you don't agree with really rubs people the wrong way. It shouldn't be your job to force someone to upgrade. More often than not, they will just not bother viewing your page and look elsewhere.

    14. Re:Why redirect them? by purpledinoz · · Score: 4, Funny

      Who still uses IE6? Google should just insult the IE6 users into upgrading: "You are using Internet Explorer 6. This indicates that you are a giant douche. If you no longer want to be a giant douche, please upgrade your browser."

    15. Re:Why redirect them? by Jedi+Alec · · Score: 5, Insightful

      It's even worse than pointless. I'm typing this on IE8, but it identifies itself as 6 to appease some of the dreadful apps used on the intranet. So even though the browser should be perfectly capable of rendering the site, filtering based on browser version will lose yet another set of potential eyeballs.

      --

      People replying to my sig annoy me. That's why I change it all the time.
    16. Re:Why redirect them? by smash · · Score: 1
      Its all about economics. If you want to achieve *blah* webpage design, and know that x% of your users are on browser Y, and X% is acceptable market penetration - then guess what browsers do/don't get supported.

      If there are web developers/tools out there to meet the desired penetration for browser X without needing to bother on ensuring cross platform support, expect browser X to be targeted.

      I'm sure the LAST thing on a corporations mind when launching a new site is "oh, oh, we need to cater to the 0.2% of lynx users!".

      They're far more interested in making the site more functional, shinier, etc. And in our shiny things society, rightly so.

      --
      I run: Windows, OS X, Linux, FreeBSD. Just because you have a hammer, doesn't mean everything is a nail.
    17. Re:Why redirect them? by mike2R · · Score: 1, Insightful

      Agreed. This is why browser sniffing is bad. Just design it to be standards compliant, and let the browsers that can't follow the standards fail, hopefully gracefully. Blocking IE6 users completely is just pointless.

      Don't be ridiculous. Unless it is just a vanity site where you don't care about your users, you support any browser that is popular. This still includes ie6.

      --
      This sig all sigs devours
    18. Re:Why redirect them? by PenquinCoder · · Score: 1

      I agree with this. All of the websites I've helped to design, have been made first and foremost standards compliant. If your browser can't render a properly designed page, then get a better browser. Don't force us to cater to your mishandling of markup.

    19. Re:Why redirect them? by onceuponatime · · Score: 1

      I'm designing a site where I'm carefully choosing the css approachs to make it work on explorer,firefox,chrome and safari. I don't have the details to hand, but currently, I have everything working on all four platforms including heaps of javascript, however unexpectedly the latest issue I have renders correctly on explorer,firebug and safari with Google Chrome being the odd man out.

      Just discovered it last night, so I can't tell you the specifics right now. But it relates to positioning of divs in the presence of floated elements. I think that Google is dropping a div below the level of the highest floated element whereas all other browsers I've tested do it differently.

      I didn't expect chrome to be the odd man out.

    20. Re:Why redirect them? by vtcodger · · Score: 1, Insightful

      ***Agreed. This is why browser sniffing is bad. Just design it to be standards compliant***

      You reckon that the folks who design web sites are even aware that there are standards for HTML? I've never seen much sign of it.

      Other than that, you are 100% correct and will continue to be 98% ignored, because doing things in the usual bizarre, gonzo fashion seems to be ever so much fun.

      Unfortunately, I have no mod points today.

      Well, actually, it wouldn't help if I did have mod points because Slashdot's mod point system is not compatible with Konqueror 3.5.9. I wonder why?

      ***
      Markup Validation Service
      Check the markup (HTML, XHTML, ) of Web documents
      Jump To:

      Validation Output

      Errors found while checking this document as HTML 4.01 Strict!
      Result: 64 Errors, 2 warning(s)
      Address: http://slashdot.org/
      Encoding: iso-8859-1(detect automatically)
      Doctype: HTML 4.01 StrictInline
      Root Element: HTML

      --
      You can't see ANYTHING from a car, You've got to get out of the goddamned contraption and walk...Edward Abbey
    21. Re:Why redirect them? by Bert64 · · Score: 1

      Supporting links isn't really a problem, supporting IE and NS4 is the problem...
      Links will simply ignore features it doesn't support, so if you write your page conforming to HTML specifications it will degrade gracefully when browsers like links or lynx don't support various features.
      The problems occur when you have browsers which claim to support features, when in reality that support is extremely broken. IE and NS4 fall into this category, and make it very difficult to produce a standards compliant page. So you end up with a standard page for mozilla/webkit/opera based browsers, and then a separate effort made to support various versions of ie.
      For any sites i make, i don't make any effort to support ie or other similarly antiquated/broken browsers, but i don't explicitly exclude them either. Some things work, some don't, and some look slightly broken. The content on all of the sites is perfectly readable in lynx however.

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    22. Re:Why redirect them? by Bert64 · · Score: 1

      There are a LOT of sites that do the same thing, only in reverse...The site demands you use IE (or netscape 4 etc) but works just fine after you fake the user agent. One particular site (http://www.raveshack.com - but it appears to be down) used to assume that anything that wasn't ie was netscape 4.x and displayed an insulting and rather disgusting picture of an overflowing toilet full of diarrhea with an insulting message saying how crap netscape 4.x is and what an idiot you are to be running it.

      A lot of sites will also exclude browsers and versions they don't explicitly "support"... For instance, a banking site i use was rejecting firefox 3.6 when i tried yesterday, but today it works. I doubt they had to make any changes other than to add 3.6 to the list of versions since it's rendering will be almost identical to 3.5. And any version of firefox which is branded differently (eg iceweasel or minefield etc) will be rejected.

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    23. Re:Why redirect them? by Bert64 · · Score: 1

      Directing them away will make them think your discriminating against them, and they won't come back because they think their browser is fine and it works on other sites. Also you will turn away people who for whatever reason spoof their user agent.
      Instead, let them see the site but display a big disclaimer indicating your site hasn't been tested with a browser as old as theirs and you offer no guarantee it will work correctly or look as it should, and provide a link to a page that explains the situation. On that site, provide screenshots of how your site *should* look in several different modern browsers, an explanation of the benefits of upgrading to a modern browser and links to several possible browsers they could choose from.

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    24. Re:Why redirect them? by Anonymous Coward · · Score: 1, Interesting

      The moderation system is compatible with Konqueror 4.3.2.

      (But you'll probably lose your +1 when I post something later in the thread.)

    25. Re:Why redirect them? by JamesP · · Score: 2, Insightful

      THERE IS NO FUCKING EXCUSE for not being able to support multiple browsers. if you're not supporting links, you're doing it wrong (seriously, how the hell are supposed to work blind's web readers if your site is a javascript meatball?)

      This is a great rationale, but 'supporting' often means 'layout' and IE6 screws bacis JS as well...

      now: no need to fix your site every time to have it working with every browser out there.
      USE A CROSSPLATFORM LIBRARY

      Erm, no... From my experience there are still issues btw browsers even using these kinds of libraries.

      --
      how long until /. fixes commenting on Chrome?
    26. Re:Why redirect them? by Bert64 · · Score: 1

      Perhaps if some of those people making the decisions find themselves unable to view the sites they want to, they will realise how stupid those decisions were and make efforts to change them. With any luck, this will teach them the dangers of using proprietary apps which are tied to a single platform and they will take the dangers seriously when making any future decisions.
      So long as sites accommodate IE6 it will be considered acceptable to run it, which just continues the headache for everyone involved.

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    27. Re:Why redirect them? by Pieroxy · · Score: 2, Insightful

      Well, this is why I did set up the Internet Explorer Awareness Initiative.

      IE6 is mandatory as it is still in use by more than 5% of our audience. But warning them gently is one option to try and push the users to upgrade !

    28. Re:Why redirect them? by TheLink · · Score: 2, Insightful

      > IMO you shouldn't be held hostage by and pay for those companies who keep using IE6 because they don't want to pay for an upgrade.
      > It is a bit ridiculous that the world is paying zillions in development costs so these companies can avoid it. They are parasites.

      Uh, how are they holding you hostage?

      If you are the one who wants their money or for some other reason want them to use your site and they use IE6, it seems strange to call them parasites.

      You don't care about them just drop support for IE6.

      If your boss cares about them but you don't that's not their problem.

      --
    29. Re:Why redirect them? by mcvos · · Score: 1

      Don't be ridiculous. Unless it is just a vanity site where you don't care about your users, you support any browser that is popular. This still includes ie6.

      IE6 popular? Still used a lot, perhaps, but I doubt it's very loved.

      Personally, I only support IE6 if the customer demands it. Many still do, unfortunately. Even for intranet sites where the customer controls all workplaces that need to access the site.

      I bet we'll get an issue that all the jQuery is too slow in IE6. And I fear the fix is not going to be to use a faster browser instead.

    30. Re:Why redirect them? by Anonymous Coward · · Score: 2, Insightful

      I agree. They should have never included the User Agent string in the protocol. It just leads to people serving different stuff to different browsers, of which insulting banners are a more innocent incarnation. But even those can suck, for various reasons. Before the Chromium-based browsers came out IE6 was the only thing that ran on my computer. Seeing an anti-IE6 banner under those circumstances, especially if the page renders just fine, translates directly into "I won't ever visit this site again." And then there are browser detection bugs. I still see anti-IE6 banners every now and then even though I am not using IE6 any more. And then you get even more fascist banners like "you're not using Firefox, you suck".
      Frankly, people should just code to the standards. And keep the page simple, because that tends to look better on all browsers. (The latter has nothing to do with browser bugs of course.)

    31. Re:Why redirect them? by bytesex · · Score: 1

      For some people, wars never stop.

      --
      Religion is what happens when nature strikes and groupthink goes wrong.
    32. Re:Why redirect them? by phoenix321 · · Score: 1

      If support for these 2% is the reason for a 30% increase in implementation and maintenance, I'd say it is unreasonable to support their ancient browsers unless these 2% bring 30% of the sales volume.

      A traditional supermarket cannot accommodate for a dozen customers at once that cannot read. Since illiterates form maybe 3% of the people, I'd say they're willfully excluding 3% of their customers. The benefits of doing business with them doesn't warrant the expenses incurred.

      And I fully regard using IE6 in the open Internet as being comparable to full, feral illiteracy. An upgrade from IE6 to IE7, IE8 or Firefox can be had from Microsoft / Mozilla Foundation for absolutely no charge and has been for several years now.

      Yes, I know that companies, especially some 100.000-employees-and-up force their employees to use only IE6, whatever the cost or reason behind that decision may be.

      Unless these companies form your most vital customers, it is economically useless to cater for IE6. I'd rather say companies who cannot muster the forces to roll out a *free* browser upgrade probably are crooked somehow anyway.

      Our bars and shops do the same: they don't have a watering place for the remaining customers riding there on horses. Shops in Pennsylvania in reach of thousands of Amish still have, but for a very real reason, not a single digit percentage of customers.

    33. Re:Why redirect them? by oliderid · · Score: 1

      I wish you would be right. We just finished a large extranet for some lobbying organizations. Most of their members are heavy industries. We discovered along the road that around 20% of their members still use Internet Explorer 6 and any update are blocked by their IT department, they have no plans (yet???) to replace their activeX web based services. The only solution? Sniffing browser and creating a "light" version...

      those users can safely surf over the Internet with this browser.(can you imagine...)

      Conclusion: IT departments transferred all the cost of their laziness upon our shoulders. They spent mot of their time hunting down viruses on their intranet.

    34. Re:Why redirect them? by phoenix321 · · Score: 1

      They are parasites. Beneficial, symbiotic parasites, but nevertheless they drain your money:

      Updates to IE6 can be had for absolutely no charge, have been for half a decade now. IE7 from Microsoft, Firefox from the Mozilla Foundation.

      The product upgrade can be had for free, but some companies and users don't want or can not muster the forces, will or funds needed to implement this upgrade. No upgrade in public browser infrastructure for five years is bordering on criminally insane, but just leave it at the cost and effort it takes to upgrade: they are saving on that.

      If we are to publish IE6-compatible websites, WE are incurring costs to implement and test the IE6-portion of the website. We need at least two machines sitting around with a working IE6 installation just to verify the site is working for them. With spare parts, support, maintenance and all that. Our websites need more implementation costs, a more detailed test procedure etc. etc. - and all hell breaks loose if the IE6-implementation specialties somehow break the site for current IE8 and Firefox 3.6 users.

      In other words, WE are expending money, effort and time so a tiny fraction of potential visitors can save on money, time and effort. I call that a parasitic relationship.

    35. Re:Why redirect them? by frankmartt · · Score: 1

      That percentage share has since declined in the face of renewed competition from other web browsers – Mozilla Firefox most of all. Its usage share now sits at approximately 50% to 60% and is trending downward. Microsoft spent over $100 million a year on IE[1] in the late 1990s, with over 1,000 people working on it by 1999.[2] As of 2010[update] IE has been casino spielen attacked numerous times by hackers, malwares or some kind of security flaws such as bugs, therefore some security experts regard it as the most vulnerable browser.

    36. Re:Why redirect them? by phoenix321 · · Score: 1

      How much money would you devote to supporting IE6?

      In the real world, money is a hard constraint.

      Would you rather drop a nice-to-have feature working on IE8 and Firefox (80% of your visitors) to free up some money for implementing and testing with IE6 (2% of your visitors)?

      If you've got a shop or saloon, do you put a water trough in front of the entrance for the few customers riding horses?

    37. Re:Why redirect them? by phoenix321 · · Score: 1

      Any "regime" that mandates IE6 is crooked, no matter what valid reason they pretend of having.

      Free upgrades can be had for half a freaking decade and no matter how large the organization is or whatever large and expensive intranet apps they have that require IE6, mandatory use of IE6 is a strong "organization smell".

      A company, organization or regime that uses IE6 on the outside world tells us one of several possible stories:

      a) we are too broke to implement a tiny change within 5 years = we will milk you for every cent of rebate

      b) we are too slow to get a small change done within 5 years = we will take years to decide for your product, we will never follow any upgrades and instead force you to have support for deprecated products for decades to come.

      c) we are uncontrollably huge = dealing with us will be completely unpredictable and random and we will blame you if anything goes wrong because of that

      d) we don't care about IT security = your data will probably be hacked, stolen and leaked to the North Korean government. When we are hacked, we will blame your software.

      e) We don't want employees to use IE6 on the intranet and Firefox on the outside Internet as a reasonable compromise = We don't make any compromises, expect us to fight for every cent and every clause in the contract.

      f) We never had the idea to install IE6 and Firefox in parallel or we don't think our employees can handle two parallel browser = we are stupid as hell. Expect us to demand for several man-years of training at no extra charge. We will also blame your company that your product isn't intuitive enough when (not if) we mess up.

      Do you want to deal with a companies sending this sign?

      And worse:
      Do you want your company to send these signs?

    38. Re:Why redirect them? by Florian+Weimer · · Score: 2, Informative

      THERE IS NO FUCKING EXCUSE for not being able to support multiple browsers. if you're not supporting links, you're doing it wrong (seriously, how the hell are supposed to work blind's web readers if your site is a javascript meatball?)

      IE 6 has unique CSS layout issue, both bugs and less tolerant reactions to dodgy things in your CSS. There are some standard/recommended web design practices which tend to cause IE 6 rendering failures. And if you're unlikely, the failures are of such a kind that it makes part of the web site unusable. And even with templating and uniform page layout, such bugs tend to show only on specific pages, so you really need to do full tests with IE 6.

      Links support is easier in comparison, except that some text-mode browsers do not support <button> (but I think that was w3m).

      In the end, you need to listen what your users want. If the sporadic IE 6 layout issue is fine with them, don't test on IE 6.

    39. Re:Why redirect them? by netsharc · · Score: 1

      Reminds me of a great anecdote from Opera, the other great browser maker. For some reason they also have a blog and gallery hosting services, and they needed to get more servers. So they asked a few big server-selling hardware companies to make their bids. Testing one test server from one of those companies involved logging into a web interface, so one higher-up loaded up the web interface URL, and since this is Opera, of course they used their in-house browser... which the web interface promptly rejected with a "This browser is not supported" message.

      Anyway, GHz and MB/s are cheap and fast nowadays, I wonder what's preventing people from downloading and installing Firefox/Firefox Portable, and for website makers to offer such links...

      --
      What time is it/will be over there? Check with my iPhone app!
    40. Re:Why redirect them? by pstorry · · Score: 3, Insightful

      Who says that the problem is the organisations running IE6?

      Most of them would move off it to IE7 if they could. Really they would. It's not much more (or less) difficult than any other large application - test it, package it, drop it to machines. That's an established and controlled cycle.

      The problem is not that they don't want to. The problem is that the enterprise software segment has been very shortsighted.

      SAP, PeopleSoft, Seibel. ERP, Human Resources, CRM systems.

      Things that organisations put in which are strategic, in a way which deserves block capitals that I'm not quite willing to put it in. But trust me, these things are signed off at board level and cost a truckload of money, so there's a management investment in getting them working at all costs - otherwise they'd have to admit that they were wrong!

      And once in, they become very hard to remove. Stuff like PeopleSoft is often tied to processes like leave booking, expense claims and payroll, for example.

      Upgrading these systems is not a trivial task. It's one that, even if it's a simple and smooth process, has huge risks. Risks that run towards lost days of business, inability to produce corporate accounts, or handle staffing changes and expense claims. So these systems are upgraded at a glacial pace, with the process being rigorously controlled and methodically run.

      Guess which systems a company buys that would require IE6?

      I'm sure that they all have versions out now that support IE7 and higher. But the companies running these systems are often one or two versions behind, and have real incentives to avoid change. Incentives that don't even factor in the client web browser's name and version.

      And don't forget that these systems are not cheap. The upgrade software bill will be huge, before you even start any work. Another reason to delay, especially once management remembers how expensive and painful it was tweaking and customising these systems to match their organisation's workflows and requirements. Do that again? At huge cost? Barely two years after we last suffered through that? NO WAY!

      And so this is how it starts. You can then add the fact that developers then have a standard platform of just one browser, and you soon find any in-house development is tested on just one browser. Which compounds the problem.

      It started with enterprise software. It's continued by in-house developers. It has nothing to do with the merits of the client in any way.

      And good luck not dealing with such organisations. This, sadly, is the state of pretty much all large organisations...

      I'm not defending them, by the way. I'm just trying to help you understand why large organisations are stuck in this rut.

    41. Re:Why redirect them? by pbhj · · Score: 1

      How much money would you devote to supporting IE6?

      As little as possible.

      In the UK we have the disability discrimination act (DDA) which means that any business must make appropriate effort (depending on size, income, etc.) to accommodate the disabled. This means supporting braille and audio browsers (JAWS, etc.) for nearly every business. Simply test in IE6 to see if informational content can be viewed at all and use a minimal stylesheet to provide the text - that actually doesn't take long and on the whole you'd just be sending the same version as you'd put to a screenreader.

      Smaller SMEs that absolutely can't afford an extra hour of dev time are excused IMO.

    42. Re:Why redirect them? by Gordonjcp · · Score: 2, Insightful

      Updates to IE6 can be had for absolutely no charge, have been for half a decade now. IE7 from Microsoft, Firefox from the Mozilla Foundation.

      The software may be available at no cost, but upgrading to IE7 or Firefox could be an extremely expensive business. A lot of companies have web apps and intranet pages that do not render correctly in anything other than IE6. Who pays to update all of that?

    43. Re:Why redirect them? by Tumbleweed · · Score: 1

      IE 6 has unique CSS layout issue, both bugs and less tolerant reactions to dodgy things in your CSS. There are some standard/recommended web design practices which tend to cause IE 6 rendering failures.

      Not that I'm recommending using or supporting IE6, but I've found that if you use a strict DTD, most of the major layout issues in IE6 go away magically. The box model is calculated correctly, for instance, and that, for me, was the biggie, as I don't have to wrap things in divs just to be able to specify widths *and* use margin/padding/borders. What a pain in the butt that used to be.

      Sure is _stupid_ to have to wrap form elements inside div/p tags, though. *sigh*

    44. Re:Why redirect them? by Talderas · · Score: 2, Interesting

      I have one user who is still on a Windows 2000 platform. Last I knew Win2000 didn't support IE7 (and I assume IE8 by extension). He's been bitching about "certain" websites not working properly, which I am about 99% certain is because a lot of websites just aren't bothering to support IE6. I told him to use Firefox, he bitched about that, I threw my hands up in disgust and left him to rot. Then he installed Firefox and bitched about Firefox not doing what IE does.

      Some people are beyond redemption.

      --
      "Lack of speed can be overcome. In the worst case by patience." --Znork
    45. Re:Why redirect them? by that+this+is+not+und · · Score: 2, Informative

      An upgrade from IE6 to IE7, IE8 or Firefox can be had from Microsoft / Mozilla Foundation

      I agree with you regarding Mozilla. However, there are those of us who refuse to ever give Microsoft another cent, who are still using Windows 2000 for our 'doze boxes. I never intend to use a legal or illegal copy of XP or any of the other drek they have published. I'm just waiting for them to die instead. So I cannot 'upgrade' from Internet Explorer 6. It would not be a free 'upgrade.'

      I use SeaMonkey on NetBSD mostly instead, of course, so the point is moot.

    46. Re:Why redirect them? by tehcyder · · Score: 1

      Would you rather drop a nice-to-have feature working on IE8 and Firefox (80% of your visitors) to free up some money for implementing and testing with IE6 (2% of your visitors)?

      Your web site should still be functional for people using IE6, Netscape 3, Lynx or whatever. Otherwise you end up with monstrosities like Flash-only navigation.
      Just call me old-fashioned.

      --
      To have a right to do a thing is not at all the same as to be right in doing it
    47. Re:Why redirect them? by mike2R · · Score: 1

      I do see your point - I'm an ecommerce guy so the websites tend to be pretty simple, and the consequences of cutting off a percentage of visitors from being able to complete an order is obviously a percentage of sales.

      We get over 2% IE6 on our biggest site, and less than 30% of our traffic is Windows (Mac focussed site) so I imagine that your average ecommerce site probably gets well over 5% IE6 traffic* - failing to support IE6 == 5% drop in sales. It would have to be a fairly snazy feature that you want to implement that would be worth that..

      *Thinking about those numbers a bit more, I expect most of our Windows traffic is from Mac owners surfing from Windows at work, and corporate environments are going to be the biggest IE6 holdouts, so I'm probably overestimating the figures for an average site.

      --
      This sig all sigs devours
    48. Re:Why redirect them? by Gr8Apes · · Score: 2, Insightful

      They drank the koolaid, and the piper's come a calling. Shortcuts inevitably wind up costing you sooner or later, and that's what web sites created solely for IE6 are.

      --
      The cesspool just got a check and balance.
    49. Re:Why redirect them? by SQLGuru · · Score: 1

      I'd love for it to be that simple. The internal tools are "easy" to deal with -- upgrade and submit a trouble ticket that I/T has to work free overtime to fix. The problem are the vendor apps/tools that aren't compatible. Even if you are a large company, if the vendor doesn't put a focus on it (or worse yet is even still around) you are stuck waiting for them to do the upgrade. I've got apps that I have to deal with that still require the MS Java runtime and aren't compatible with the Java (err Oracle) runtime.

      Sure, you say open source would prevent this, but keep in mind: business weenies and pointy-hair bosses are swayed by salesmen with free pens, not by some web-site that says "take this software, please".....

    50. Re:Why redirect them? by SQLGuru · · Score: 2, Insightful

      You can always use a portable version of FF (http://portableapps.com/apps/internet/firefox_portable). No install rights required. And you can use the I/T sanctioned browser for sites that require IE6. Best of both worlds.

    51. Re:Why redirect them? by raphael75 · · Score: 1

      Is it possible to use the User Agent Switcher addon for Firefox and trick your employer's site into thinking you're using ie6?

    52. Re:Why redirect them? by Silvrmane · · Score: 1

      They are parasites in this way: Rather than them spend the time and money to upgrade the infrastructure they use that relies on "features" or "quirks" of IE6, they choose not to expend those resources. This just causes everyone else to spend that time and money to support their broken browser. The time and money spent by others to keep their websites usable by this trainwreck of a browser would have been better spent elsewhere. They are making others waste resources for their benefit. Pretty much the definition of a parasite.

      Where I work, we spend 4-5 days developing the primary website. We have to avoid doing anything "fancy" or "efficient" with our coding, keeping it as plain jane as we can. Then we have to spend another day or so "fixing" the perfectly reasonable code, css, and graphics to work with IE 6. That's a couple of days we are not spending on the next site.

      I have seriously been considering some kind of redirection (at worst) or some other kind of gentle reminder to encourage IE6 users to upgrade. Remember that if you are not using IE6 you are likely a few years behind on patching your windows system overall.

      I am personally of the opinion that coddling IE6 users in this fashion gives them no incentive to upgrade - there is no pressure at all. This is holding the internet back, frankly, and at some point I'm going to just start redirecting IE6 users to an appropriate page where they can upgrade to IE7, IE8, or better yet, a standards compliant browser like Firefox, Chrome, Safari, or Opera. Stuff that was written to require ActiveX controls was broken to start with.

    53. Re:Why redirect them? by NeoSkandranon · · Score: 1

      So a storefront should, by extension, just be stacks of items sorted alphabetically on plain shelves?

      --
      If you can't see the value in jet powered ants you should turn in your nerd card. - Dunbal (464142)
    54. Re:Why redirect them? by d'fim · · Score: 1

      Must be nice to be able to blame your vendors. The problem where I work isn't vendors -- they already have new versions that support all the latest goodies. The problem is that my company won't pay for those new versions no matter how many free pens the salesdroids give us.

      --
      Adherence to the truth is a form of disloyalty.
    55. Re:Why redirect them? by NeoSkandranon · · Score: 1

      The difficulty is in acting alone. If IE6 support was widely dropped in that manner, then it would become obvious to most people that the nature of the problem is with their software, not the rest of the internet.

      --
      If you can't see the value in jet powered ants you should turn in your nerd card. - Dunbal (464142)
    56. Re:Why redirect them? by Draek · · Score: 1

      "Popular" is subjective. I even consider Opera to be such, but there's no inherent contradiction in those that don't consider IE6 to be worth caring for.

      --
      No problem is insoluble in all conceivable circumstances.
    57. Re:Why redirect them? by eclectus · · Score: 1

      Put your test machines in a VM already. That way you can use the same hw to test multiple different OS/browser combinations. That will eliminate the HW cost. You still have the time for testing.

      And if possible, enlist a couple of those who use IE6 (or can't switch away) and make them a deal - you will continue to support IE 6 if they will help test the site for you.

      --
      This signature is a waste of 42 characters
    58. Re:Why redirect them? by fractalus · · Score: 2, Interesting

      If only it were that simple. Users (a) aren't always aware that they're using an outdated browser and (b) will therefore simply blame your site rather than their browser. Unless you tell them explicitly their browser is at fault, they will not know.

      --
      People are never as simple as their stereotypes. This applies equally to Christians, Muslims, and Emacs-lovers.
    59. Re:Why redirect them? by mwvdlee · · Score: 1

      If a 30% increase in implementation & maintenance can only be justified by atleast a 30% sales volume, you're not making any profit anyway and you'll be out of business soon anyway.

      Generally, you make profit when income > cost. More specifically, you'll need atleast income > website-implementation-&-maintenance-cost to be profitable.

      Most businesses spend most of the "cost" part of the equation on manufacturing, distribution, personel, facilities, tax, utilities, advertising, etc. A 30% increase in website coding cost (which is a generously high percentage given the task) wouldn't be a big part of the cost.

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    60. Re:Why redirect them? by FlyingBishop · · Score: 1

      I just put "Your browser is unsupported. Upgrade to one of these fine alternatives: " in an element with css opacity:0; Older versions of FF, as well as all IE browsers and older webkits/Operas don't support opacity, so it filters out just about everyone I don't care about.

      Of course, it filters out IE8, so it's not really good for production use.

    61. Re:Why redirect them? by Z00L00K · · Score: 1

      Skip the red bar, if there is something in your W3C-compliant code that doesn't render correctly then the user has to live with it.

      There are so many sites out there today that do have a crappy design anyway so IE glitches won't make a difference.

      --
      If builders built buildings the way programmers wrote programs, then the first woodpecker would destroy civilization.
    62. Re:Why redirect them? by mwvdlee · · Score: 1

      How does Lynx degrade JavaScript, Flash and video?

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    63. Re:Why redirect them? by kiwimate · · Score: 1

      In other words, WE are expending money, effort and time so a tiny fraction of potential visitors can save on money, time and effort. I call that a parasitic relationship.

      I call it a business decision. Someone made the decision to continue supporting IE6 browsers. It's either due to some kind of regulatory requirement or because it was deemed worthwhile for whatever reason (e.g. economically profitable, or politically necessary).

      I suppose it's possible that the opposite is true; no-one actively decided to stop supporting IE6, it's just something you've always done. In such a situation, I'd think you would go to your manager and explain the situation (hopefully in a slightly calmer fashion than this rant) and then let the higher-ups make the decision.

    64. Re:Why redirect them? by mwvdlee · · Score: 1

      Haven't tried it with that yet, but a fake user agent in Opera doesn't fool it either. Sharepoint probably uses some IE-specific javascript for it, which is harder to fool.

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    65. Re:Why redirect them? by tixxit · · Score: 1

      Some places are even worse than 5%. IE6 represents almost 20% of our traffic (it makes sense, given our user base), so dropping IE6 support is a big no-no. That sad, I know the day is coming where this number will drop below 5%, especially with even MS seeming to want users to switch. I will still try to support IE6 to some degree, but I won't be wasting too much time on it.

    66. Re:Why redirect them? by socsoc · · Score: 1

      Chrome is based on WebKit so it's unusual that Chrome is treating your code differently than Safari.

    67. Re:Why redirect them? by Creepy · · Score: 1

      I don't know about the JS editor, but have you tried IE7 or IE8 compatibility view with sharepoint briefcases? I seem to recall my wife had the same issue and that got her around it. Go to the page you want and you should see an icon that looks like a ripped piece of paper after the URL or use the tools menu compatibility view and add the url. You may need to reload the page (F5) afterward.

      As for IE6, I have to use it at work - it is the lowest common denominator browser we support. I also use Firefox 3.0 even though it nags me continuously about updating (until recently, Firefox 2.0.14 as well, but we dropped that support recently). We also support Safari, but not Opera or Chrome - both work quite well, however (some of us like to use our product in unsupported browsers - I'm in chrome right now, for instance, and I have my test stuff up in another tab). Until recently, some parts of our product worked in IE6 only. Most of our software works on IE6+, Firefox 3+, Safari 3+, Chrome (unsupported), Opera (unsupported), Konqueror (unsupported), but we do have issues with any SVG viewer other than Adobe (which Adobe doesn't even support anymore). I've heard Webkit is getting close - a couple more bugfixes and we can support Safari. Firefox has a ways to go yet, and built-in IE support is non-existent. I've heard the google SVG plugin thing for IE also is missing features we need.

    68. Re:Why redirect them? by phoenix321 · · Score: 1

      Using Windows 2000 because you don't want to give Microsoft another dime is ridiculous unless you're really really strapped for cash.

      Since I guess you're not using the same machine you bought 10 years ago, the marginal cost of upgrading the OS along with the hardware is very tiny.

      Linux and BSDs are offering more functionality than Windows 2000, with the good feeling of being truly free as in speech. Use Windows XP, Windows 7 or use Linux. Make up your mind, don't stay behind.

    69. Re:Why redirect them? by Millennium · · Score: 1

      This. Writing to the standards is going to hork IE browsers if you try doing anything more complex than was popular in 1997 or so. Best to at least let the use know why your page -and likely many others they're viewing- look so strange. There's no need to be rude about it, but seriously: there is little to no legitimate need for anyone to be using IE6 at this point. It has held back the Web long enough.

    70. Re:Why redirect them? by b4k3d+b34nz · · Score: 1

      I'm pretty sure GP didn't mean "popular" in the beauty pageant sense, and was talking about usage stats. IE6 still has 20-30% penetration in the wild, according to our non-IT distributed website system analytics.

      --
      Grammar Lesson: you're is a contraction of "you are"; your means you possess something; yore means days gone by.
    71. Re:Why redirect them? by Random+BedHead+Ed · · Score: 1

      They drank the koolaid, and the piper's come a calling. Shortcuts inevitably wind up costing you sooner or later, and that's what web sites created solely for IE6 are.

      Yeah, sooner or ... nine years later.

      Seriously, there's no excuse for IT departments in businesses of any size to enforce IE6 in 2010. It's not like there hasn't been time to test modern browsers, upgrade web apps, and roll out newer software. Let me say it again: Nine Effin' Years. I understand that keeping user desktops cutting edge can't be an IT department's priority. But ... NINE YEARS isn't a few steps behind the cutting edge. It's technology for a different era.

      Of course I can't blame businesses that design websites for supporting IE6, since they have to maximize sales by supporting as many customers as they can. But the actual companies using IE6 deserve serious criticism. Nine years! Those of us not selling products on the web should go out of our way to make fun of them. Here, let's start in this post:

      Hey IE6 users, do you think President Bush will ever get interested in foreign policy, or will he stick to domestic issues like his recent 2001 tax cuts? Boy, it's quick and easy to get through airport security these days, isn't it? Glad we're not in any wars! You dick.

    72. Re:Why redirect them? by phoenix321 · · Score: 1

      You're right concerning the 30%-30% calculation: in a decently operating company, 30% more website costs are only a blink in the eye compared to a 30% increase in sales.

      Nevertheless, any company has to ask itself, if this is money well spent. Sound companies don't waste money even if they are a small fraction of the expenditures, since that is the primary driver of expenditures slowly eating into the bottom line.

      So a redesign of a large corporate website may cost a 100,000 bucks. Getting the new website compatible with IE6 would cost another 2,000 bucks (2 man-days), incurring higher complexity (=higher chance of bugs) and slower rollout (=more testcases).

      In a well-managed company, the project manager has to justify that cost, complexity and time increase - and decide if to
      - postpone the launch date,
      - skip some other feature or graphic,
      - save on some other cost factor

      Skipping IE6 compatibility would surely not cost much, not overrun the time frame by a noticeable time - but in the real world, IE6 compatibility costs website design and features when comparing and counting dollar for dollar.

    73. Re:Why redirect them? by matzahboy · · Score: 1

      Just design it to be standards compliant, and let the browsers that can't follow the standards fail, hopefully gracefully.

      But what is a standard? Is it what some organization like Acid3 decides? Or is it what most browsers support? The reason that IE6 didn't fall for lack of standards was because it was the standards. IE6, the dominant browser for quite a while, was the most standard browser in existence because it was the dominant browser.

    74. Re:Why redirect them? by matzahboy · · Score: 1

      There are many people who cannot upgrade (i.e. people from big companies who do not have admin privileges on their computers).

    75. Re:Why redirect them? by GameboyRMH · · Score: 4, Interesting

      I (primarily) developed and currently support an international business site that gets 18% IE6 visitors. Cutting off IE6 visitors would make a tangible difference in the millions of dollars - the competiton is stiff and finding a nonfunctional website would cause the customer to go directly to someone else. IE6 support was basically an afterthought - I didn't go out of my way to support it but I made sure the site's still usable, even if it doesn't look quite right. I did have to make some changes to the code vs. not testing with IE6 at all, but I didn't have to do any dirty hacks, change the site's appearance or sacrifice any features in the process.

      So let's say it took me 10% longer to make sure the site's still accessible with IE6, which cost the company somewhere between "peanuts" and "precisely dick" and didn't affect any other users. Would cutting off almost 1 in 5 users be a good business decision?

      --
      "When information is power, privacy is freedom" - Jah-Wren Ryel
    76. Re:Why redirect them? by Jesselnz · · Score: 1

      My school refuses to upgrade from IE6, and as a result a lot of us have been running portable Firefox from usb flash drives. So what does the brilliant administration do? They actively put measures in place to prevent us from running anything except IE; now they have the systems set up to instantly kill your session if any window has the word "Mozilla", "Firefox", "Iceweasel", or "Chrome" in the window title (I guess they're not aware of the Firesomething extension).

    77. Re:Why redirect them? by PietjeJantje · · Score: 1

      It all depends on your situation and how big your shop is. Obviously, if it is big and makes 10 million a year, that translates to hundreds of thousands of dollars for IE6 customers. If it "only" takes 50K to make it work for IE6, you know what to do. Likewise, for small shops it might not be worth it.

    78. Re:Why redirect them? by xdroop · · Score: 1

      My doucheness is inflicted on my by my giant douche corporation, you insensitive clod!

      --
      you should read everything on the internet as if it had "but I'm probably talking out of my ass" appended to it.
    79. Re:Why redirect them? by DesertBlade · · Score: 1

      A machine can be a virtual machine. It is another environment that needs to be managed and tested. And there is a hit in testing, a relative large on. You have 6 major browsers (IE7, IE8, Safari, Opera, Firefox 3.5, Chrome), adding more just increases the testing time. Most of those are standards compliant, except for IE. I have websites that look different on IE7 and IE8.

      --
      Half of writing history is hiding the truth.
    80. Re:Why redirect them? by CastrTroy · · Score: 1

      But that's the point. In the end, is it cheaper for every web developer in the world to spend time and money supporting old browser, or is it cheaper for the few organizations who still use IE to upgrade. I would say that it much cheaper over all for the companies that do use IE 6 to upgrade, then for all the other companies go on supporting IE6 for the next 10 years.

      --

      Anthropic principle: We see the universe the way it is because if it were different we would not be here to see it.
    81. Re:Why redirect them? by Ltap · · Score: 1

      I do not blame users. I think that if you checked IPs versus user agents, you'd find most IE6 users are corporate drones.

      If you want to lay the blame at anyone's door, go for the bad interactions between IT departments and management in companies. Companies generally employ the worst of IT and pay them cheaply, so they have no incentive to work overtime or do anything other than basic maintenance. Most workstations are just imaged, and the IT drones very seldom change the image for fear of screwing something up, because if they do they will be labelled as incompetent. As a result, companies try to be in some kind of temporal stasis, where they'll never update or change anything for years.

      --
      Yet Another Tech Blog
      (but so much more, including game and movie reviews)
      http://yanteb.peasantoid.org
    82. Re:Why redirect them? by centuren · · Score: 1

      Depends on the audience.

      This was always the key question when it came to supporting browsers we considered either peripheral or a pain in the arse, but in a slightly different way. As developers we didn't want to deal with IE specific quirks, and our bosses would always prefer that time/money not be spent, as it always cost extra in one way or another.

      So the answer is, does the client want the browser supported? If you ask a client, he or she will say yes (why wouldn't they want ALL browsers supported, after all). Many could be talked out of it though, for reasons like time and cost (and security). The only clients that really insisted on IE6 were the ones running it, and more often then not we helped them upgrade to IE7/8 and then they weren't so concerned.

      I remember when I recommended we drop Safari support from our largest project, due to it's AJAX quirks being so extremely unpredictable. The client was a Windows sort of businessman, and agreed without resistance (I suspect Safari support may have been more my company's idea, since we all worked on Macs). The problems we were having couldn't be predicted in coding, as it was early in Safari's time, and before our development was finished, the Safari bugs were corrected through Apple's refinement of Safari (and our project worked perfectly in Safari).

      That's a bit of a tangent, to get more to the point, as soon as IE7 was out of beta and was being pushed through Windows update, we switched from IE6 to IE7 on our generic browser support list. There were/are still lots of people using IE6, but as a LAMP webshop, that wasn't really relevant to us. Our clients didn't come to us for work that might require IE6. They understood that 6 is less than 7, and 1 less than 8, and made the connection when we used terms like "out of date" or phrases like "Microsoft expects people to upgrade, why shouldn't we?". Moreover, when presented with the choice of paying for more project hours versus not supporting an "ancient" browser, they chose the latter. We didn't hide that people use IE6, but they don't NEED to accommodate them, when upgrading to a modern browser is so easy. They each had their target audiences, and were confident enough that they would manage with the chunk of Internet users that are able to use browsers other than the one that came pre-installed years ago.

    83. Re:Why redirect them? by antdude · · Score: 1

      Old Windows (98, ME, and 2000). Companies who use special softwares that rely on IE6 too. :(

      --
      Ant(Dude) @ Quality Foraged Links (AQFL.net) & The Ant Farm (antfarm.ma.cx / antfarm.home.dhs.org).
    84. Re:Why redirect them? by centuren · · Score: 1

      Updates to IE6 can be had for absolutely no charge, have been for half a decade now. IE7 from Microsoft, Firefox from the Mozilla Foundation.

      The software may be available at no cost, but upgrading to IE7 or Firefox could be an extremely expensive business. A lot of companies have web apps and intranet pages that do not render correctly in anything other than IE6. Who pays to update all of that?

      True, true, but my webshop company picked technologies that avoid that, both in the internal sense as well as the sense that those companies who have screwed themselves with IE6 lock-in don't come to us (or at least, they look at webshops that work with Microsoft's technologies first).

      Our customers are happy with a website that renders / works properly in all the major, modern browsers. They don't see the sense in spending their money to subsidize a demographic of users who choose to continue to use an old browser.

    85. Re:Why redirect them? by gobbo · · Score: 1

      Who still uses IE6?

      I know you're trying to be funny, but very few of the not-very-many IE6 users do so voluntarily. Three main types of IE6 surfers:

      group 1: corporate drones chained to an intranet app by an IT department that is underfunded or underdeveloped... many of them shouldn't be surfing your site anyway, even on their lunch break, because 'the workplace is not a democracy'

      group 2: hapless technophobes who don't have a nerd nephew to replace their winME install with something modern, and since they don't know any better, they just keep browsin' -- and pretending this computer thing is an appliance, the way it was marketed to them

      group 3: total douches who mess with the user agent for fun or actually like IE6... or like me, run it in a VM for testing purposes, then browse with it just for kicks

    86. Re:Why redirect them? by sjames · · Score: 1

      So rather than redirect them or banning them outright, just put a banner in big bold red letters "Your browser is woefully out of date. The world has passed it by. This site looks fine in IE8, Firefox, and many many others, consider using one of them."

    87. Re:Why redirect them? by sjames · · Score: 1

      There's nothing at all stopping them from installing Firefox alongside IE6 and reserving the latter for use with the gold plated relics.

    88. Re:Why redirect them? by skelly33 · · Score: 1

      One of my customers has 25,000 employees on campuses distributed across 30 countries on 5 continents. They have twenty spoken languages and a massive networked business management web-based software solution that cost millions to customize and deploy, upon which multi-billion dollar business (not to mention all those employees and their families) depends for stability every day of every week. The notion that IE6 breaks (on some asinine Web 2.0, AJAXy, worthless social networking widget which is not useful in ANY business context) is reason enough to justify even consider putting forth the effort and expense to update is woefully out of touch with reality.

    89. Re:Why redirect them? by gregmac · · Score: 1

      I bet we'll get an issue that all the jQuery is too slow in IE6. And I fear the fix is not going to be to use a faster browser instead.

      That's like getting an issue saying ANY app is too slow, reported by a user running a Pentium III 900mHz with 128MB of RAM. They'll probably argue that their computer was fast when they bought it back in 2001, and they still had the equivalent of your app, and it was fast. Why is it slow now?

      --
      Speak before you think
    90. Re:Why redirect them? by gregmac · · Score: 1

      Careful - it sounds like you're suggesting a user is considered disabled because they are running IE6..

      --
      Speak before you think
    91. Re:Why redirect them? by mini+me · · Score: 1

      We give IE6 users too much credit. By virtue of using IE6, the user is telling you that they have no interest in computer usability or design. What makes web developers believe that IE6 users will give any care about the experience of the website? The truth is if the site looks funny and half of the functionality is broken in IE6, nobody except the ones commissioning the site will notice.

    92. Re:Why redirect them? by IdolizingStewie · · Score: 1

      I can't speak for anyone else, but I've tried that and it doesn't work when I'm at work or VPN'ed in. Only works when it's not running through the corporate servers. It will depend on your IT department, of course, but it's not a guaranteed fix.

    93. Re:Why redirect them? by mcvos · · Score: 1

      Exactly. Of course we could make an app that works fine in IE6, but it'd be uglier and slower and not do quite as much Ajax in the background. Now a single click on a checkbox can lead to a cascade of updates as we automatically recalculate values and show the result in the grand total in the sidebar. We could also make an explicit "recalculate" button and have the user explicitly submit stuff.

      Wouldn't require as much jQuery, run faster in IE6, but is also a lot more painful to use for people with better browsers.

      In the end, the question is: how much do you want technology to hold you back?

    94. Re:Why redirect them? by gstoddart · · Score: 1

      Users (a) aren't always aware that they're using an outdated browser and (b) will therefore simply blame your site rather than their browser. Unless you tell them explicitly their browser is at fault, they will not know.

      My rule of thumb is that if an earthquake (or power outage ;-) occurs at the same time the user presses a button on your software, that it was your fault.

      Many users simply don't really understand the different roles of the components of their computer -- and when one goes wrong, the one they meant to be using was clearly the culprit.

      Sadly, the now famous power outage story I linked to isn't really that far from what I've actually seen in the real world. To some users, the computer will always be a completely unknowable device which operates on magic. I can absolutely see a lot of users not understanding what is meant by an out of date browser or how to fix it.

      Cheers

      --
      Lost at C:>. Found at C.
    95. Re:Why redirect them? by KlomDark · · Score: 1

      Get an IT Dept to ban Slashdot? ROFL!

    96. Re:Why redirect them? by phoenix321 · · Score: 1

      Virtual machines are the only solution of course, they cost less money than metal, but still something. But the time required to maintain and test all that legacy stuff is much more expensive.

      We had no more testers available that would help us test the site in IE6, so we dropped it entirely and our staff couldn't be happier.

      Those that still use IE6 claimed they had not time to test it and some were even slightly offended that we dared to think about discontinuing support for a nine year old ugly and non-standards-compliant browser.

      Since IE6 became "old stuff", an entire generation of good dogs was born, living and passed away before our eyes. I think IE6 is worth a lot less of our care and I it's misery will end soon so it can finally go back to The Source.

    97. Re:Why redirect them? by ajlisows · · Score: 1

      I think if you are running Windows 2000, you are stuck on IE 6, right?

      Just a thought. I still see posts here ranting and raving about Windows 2000 being the be all end all of Windows software and how they'll never upgrade to XP, Vista, or Windows 7 because Windows 2000 is fine.

    98. Re:Why redirect them? by ConceptJunkie · · Score: 1

      One of the biggest mistakes ever made on the Web was Netscape's initial looseness in rendering bad HTML, which Microsoft followed with IE. Because bad code was allowed at first, it was implicitly encouraged and ultimately made things much worse for us in the long run and we still pay for it 20 years later. Of course, Microsoft trying to hijack the standards, and being very careless with their implementations, made things that much worse.

      But I think if people had been more strict from the start we'd be better off today.

      Of course all this is moot. IE6 still roams the countryside in tattered rags moaning for "BRAINS!"

      --
      You are in a maze of twisty little passages, all alike.
    99. Re:Why redirect them? by gstoddart · · Score: 1

      Who still uses IE6?

      Last I checked, it was the standard for the entire government of Canada.

      Many large organizations move to new versions of software at extremely slow pace -- often because they already have a bunch of legacy apps that are certified to work with that version, and explicitly say they don't work with the new version. Sometimes, there isn't a newer version of the software, and will never be -- so if it's an important app they can't afford/don't want to upgrade, they're hosed.

      I don't think you understand just how much of a factor the IT departments of organizations can conspire to keep them running old versions, or the large number of reasons why it's not always possible to upgrade.

      Cheers

      --
      Lost at C:>. Found at C.
    100. Re:Why redirect them? by Tritoch · · Score: 1

      OK, so I bit and checked out your site, and I have to point out that the pop-up seems to be taking the wrong approach. End users don't care what kind of pains web developers have to go through to create the site they're browsing and make it compatible with their ancient browser, all they care about is that the web developer is delivering the information they need to them. Also, telling the user that you as the developer (and therefore face of whatever organization you represent) are "lacking patience, time and motivation" to support their browser tells them that you don't care about them, which is obviously a huge turn-off and likely to drive them away permanently, not encourage them to upgrade.

    101. Re:Why redirect them? by SQLGuru · · Score: 1

      That's most likely a proxy configuration issue (you should match the settings in IE). Unless they actually check user agents on requests and block all non-sanctioned ones.....which I haven't really heard of people doing, but I suppose they could.

    102. Re:Why redirect them? by mwvdlee · · Score: 1

      Great!
      Now how are you going to convince them that they should upgrade so they are compatible with your site?
      And how are you going to convince all your competitors to drop support for IE6?

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    103. Re:Why redirect them? by phoenix321 · · Score: 2, Insightful

      It is woefully out of touch with reality to
      - use IE6 on public Internet, ever. No matter how many proxy condoms you wear, you will be infected.

      - use a nine year old browser with so many serious flaws for mission critical purposes

      - not even think about free, better, safer, faster alternatives.

      That your customer has 25000 employees in 30 countries is impressive, but being large is no excuse for lagging NINE YEARS behind the outside world. Being a multi-billion dollar business should yield them enough resources to not stagnate.

      When you get too large to move anywhere at all, not even at a snails pace, you starve to death sooner or later. And 25.000 employees is a rather small international corporation, there are much larger ones and they can still move, although changing direction becomes pretty hard.

      I bet the 25.000 employee-corp
      - has put all them in a shared intranet,
      - put up an MS Exchange or similar groupware across all these departments across the globe
      - cobbled up an IT landscape of Franksteinian beauty just to have all clients, all servers, all machines in one domain, similar installations and under identical policies.
      - they have an IT-infrastructure department directly reporting to the CEO himself, which no dependent company can ever override for whatever reason.
      - they trust the client computer halfway across the globe more than any random notebook on dial-up in Nigeria, because they are considered INSIDE the organization.

      Different browsers in one machine don't prey on each other, they can coexist. A Firefox installation does not get an IE6 instance to be "unstable" just by sharing the same hard drive. "Stability" is just an excuse for "we don't want to do anything", which bites back when the technological gap between "yours" and "current outside world" becomes too large.

      Deploying updates in a timely fashion is the lifeblood of an IT department. Updating from Vista to Windows 7 is a fluid motion of medium risk. Updating from Windows 2000 to Windows 7 or Linux or whatever becomes a serious and risky undertaking.

      No one would use outdated trucks or CNC lathes or or ore smelters or whatever for nine years after they became deprecated just because of "stability".

      If "stability" is the reason for a company to stand still, it's time to update the resumes.

    104. Re:Why redirect them? by mwvdlee · · Score: 1

      Agreed.

      Funny thing is, a couple of years ago I was testing several Javascript HTML editors and they all worked fine on any browser except IE6 (IE7 didn't exist yet), and now I find Sharepoint only lets you use the HTML editor on IE; the one browser that didn't work with them... it made me chuckle at first, then it made me sad.

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    105. Re:Why redirect them? by phoenix321 · · Score: 1

      A nice graphic, helpful illustration or professional editing is the features I meant.

      Flash-only sites are a pain, I admit.

      Usually, the budget and time frame are set rather hard and are less than generous, so implementing IE6 support for layout and all that will take away resources that would otherwise go into honing design, layout and wording.

      We could make our website functional for Lynx 0.9b, IE4, even Netscape 1.0 if we wanted, but that is going to eat up resources we desperately need to present the site as professional as possible for the majority of the clients.

      The royalties / search costs for a single stock image are around one man-hour. Even if making the site compatible with Lynx would be done in that one man-hour, we would still be one man-hour short in selecting a nice stock image / producing a nice company shot / selecting a nice stock art from Creative Commons image pools.

      Investing time and money for diminishing returns is unwise, no matter how large the company and how small the money used. It's still not put to good use.

    106. Re:Why redirect them? by phoenix321 · · Score: 1

      You mean, they aren't?

      They're just using a "standards-challenged browser", right? :)

    107. Re:Why redirect them? by phoenix321 · · Score: 1

      Yep, then make the site available for disabled. That is a good cause, morally and legally (and therefore financially) sound.

      It will have the side-effect of being usable in Lynx, which is good.

      But that doesn't excuse for not dropping support of IE6, since that even takes away resources from properly verifying the site by a truly blind computer user, which is essential for knowing the navigation really works.

      Blind users cannot upgrade their eyes, IE6 users can upgrade their browsers, nuff said.

    108. Re:Why redirect them? by phoenix321 · · Score: 1

      I know his reasons for abstaining from Microsoft products. I don't share them, but I can honestly understand what he's doing and why.

      Keeping a Zombie-class Windows alive is against the Geneva convention and a waste of time.

      Testing public sites with it is also useless, since Joe Public doesn't have a Win2K anymore.

      Abstain from Windows entirely or keep one recent spare handy. And an iMac as well, since people are increasingly using them.

      Keeping an old Win2k serves nothing. It doesn't save costs, it costs nerves.

    109. Re:Why redirect them? by thetoadwarrior · · Score: 1

      My employer also happens to use Sharepoint (luckily I don't have to use it), it's not even the latest version and it works fine in IE7. What sort of ancient version are you running and why doesn't your company upgrade like I'm sure MS would love for you to do?

      Could it be that your company doesn't make that much money because it uses old horrid software and can't keep up with the times and therefore is just waiting to die off?

      Sites should block IE6. Fuck 'em. If it's so important for your job to keep IE6 then stay on your shitty intranet apps and quit ruining the internet for the rest of us.

    110. Re:Why redirect them? by phoenix321 · · Score: 1

      If you stopped upgrading for a whole NINE YEARS, you have nurtured a trivial nuisance into a 500lbs gorilla on steroids.

      Sooner or later you will need to upgrade. You can do it soon for chump change found behind the water cooler or you can postpone it for nine years and setup a multi-million dollar project then. Your choice.

      A stitch in time saves nine.

    111. Re:Why redirect them? by phoenix321 · · Score: 1

      I have seen these organizations, and I pity anyone who has to work closely with IT there.

      Updating the browser is not a big deal, they just need to burst the stasis bubble they like to float in.

      Updating now costs only a fraction of updating nine years later. The CEOs just don't see that or are concerned of THIS quarter's earnings only, I don't know.

      Updating from IE6 to IE7 on a single machine is hardly a challenge for even a 12-year old. Updating the whole company at once, altogether, from IE6 to IE8 is a multi-million dollar undertaking.

      I don't know why corporations like that incredibly tight monoculture among their IT. They work across half the globe, their cafeterias are completely different, their people are completely different, but their IT has to be identical and move in a synchronous fashion, no single laptop shall be different from all other laptops from Europe to Japan.

      A centrally-planned economy seems to be a good idea on paper, it looks so rational and so smart to keep synergies and buying-power in large quantities together. But a configuration mistake configuration will then will halt all the clients in the entire company for a day.

      Not to mention the complete and utter breakdown of this centrally planned monoculture, if two corporations should decide to merge - which they invariably do, and did, several times over in the nine years IE 6 is deprecated now.

      What for?

    112. Re:Why redirect them? by mwvdlee · · Score: 1

      The problem isn't that it doesn't work with IE7, heck it works with IE8 just fine. The problem is that I can't install IE7 or 8 without losing some Windows functionality; i.e. the briefcase. Or rather; simultaneous access to files in the briefcase from both a IE and any other application.

      From your last sentences though, it seems you are still in school, having no grasp of the reality outside your parents' basement.

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    113. Re:Why redirect them? by thetoadwarrior · · Score: 1

      No I'm well aware but I'm also lucky my company's website has seen a continual drop in IE6 users since 2007, going from nearly 80% to under 20%. Because of that we're allowed more freedom. As long as everyone can purchase products that's their main concern. Side projects don't need to be too concerned with IE6.

      I just realise that the time spent on making sure things work in IE6 could be better spent on doing something productive. IE6 will generally be used by tight wad companies and pirates. These people aren't exactly the ones most likely to spend money so I don't think money should be spent on catering to them.

      This isn't even factoring in the fact these people typically run insecure machines and help contribute to all sorts of problems on the internet.

      IE6 is an expensive disaster we should be aiming to get rid of from this world.

    114. Re:Why redirect them? by SanityInAnarchy · · Score: 1

      Group 1 is the worrying one, because not a lot can be done about them. However, it would be worth at least encouraging these companies to test with newer versions of IE in a compatibility mode, or even keeping IE6 around only as IETab for their corporate intranet.

      Group 2 is exactly the group which needs a cluebat, which is why we need more websites to at least start urging users to upgrade, if not outright blocking older browsers. Aside from harming the Web, their IE6 is likely full of holes (especially with WinME in a default configuration), so they'll be part of several botnets.

      Group 3 kind of deserve that "your'e a douche" message.

      --
      Don't thank God, thank a doctor!
    115. Re:Why redirect them? by sremick · · Score: 1

      It costs money to run a business. It costs money to run a school/college/university/whatever campus.

      Things cost money. Things eventually need to be fixed/replaced, which costs money. Managing this and planning for future inevitible costs are part of running a business/whatever.

      Anyone who sold the soul of a 25K-employee multi-billion-dollar business on lock-in with a specific version of a technology that most people knew even 9 years ago would be a bad idea, shouldn't have a job. And a multi-billion-dollar business should know that even things that cost several million dollars need to be replaced sometimes. Otherwise instead of the Venetian and the Bellagio we'd still be dealing with a crumbling and patched The Sands and The Dunes.

      http://en.wikipedia.org/wiki/Dunes_(hotel_and_casino)

      A local college here builds a new multi-million-dollar building every few years. In the process, some older multi-million-dollar building is demolished to make room.

      Committing to technology means jumping on the train. The train moves, and so must you. Even 9 years ago it would've been no mystery that computers would continue to evolve, Windows would continue to evolve, and it should've been assumed that IE6 would've been depreciated and no longer supported even BEFORE 2010. Just because Microsoft keeps the vegetable of a browser on life-support doesn't mean companies should pretend it's still alive and that it'll be around in 2020 too.

      Or did they think they'd just run Windows 2000 forever, and eternally be able to buy licenses for it as their computers died and needed to be replaced, and that there'd be Win2K drivers for their decade-newer hardware?

      Some people need to lose their jobs in every instance where IE6 is still required, else the business needs to die from natural selection. Either way, I have no sympathy.

    116. Re:Why redirect them? by ross.w · · Score: 1

      If I only got nine years out of an ore smelter or a CNC lathe I'd be sorely disappointed.

      That type of stuff gets replaced when it wears out, not because there's a newer shinier alternative.

      Most mechanical equipment is specified for a design life of twenty years. The first railcars originally bought for the Sydney Rail network were only replaced after 70 years of service.

      and yes, IAAME

      --
      If my call is important, why am I talking to a recording?
    117. Re:Why redirect them? by MikeFM · · Score: 1

      Unfortunately around 20% of our revenue also comes from users using IE6. And since most of our business is from first time visitors there is not a real chance to educate visitors. I wouldn't say it takes us 10% longer to add IE6 support though. I'd say that it takes an average of 200% longer to support IE6/7/8 than it does to support Firefox, Safari, Chrome, and Opera together and that it limits what we can do.

      --
      At what price learning? At what cost wisdom? The price is a man's peace of mind, and the cost is his life.
    118. Re:Why redirect them? by jonadab · · Score: 1

      There's support and then there's support and then there's support.

      As a web developer, I have four tiers of support (if you count non-support as the bottom tier):

      The first tier is my primary target, the browser I use myself and recommend to people who ask me what browser is good. I don't implement anything that doesn't work right on this browser. The standard here is, on this browser the site should be exactly the way I want it. Currently this is Firefox 3.x.

      The second tier is mostly inhabited by other browsers that I consider to be reasonably good and have convenient access to for testing. For example, the latest Opera falls into this category.

      Any significant changes I make get tested in the tier-two browsers to make sure they're okay, and if they goof anything up, including minor layout glitches (within reason; I'm not going to worry about a border width being off by a pixel or something), I look into it and see if there's anything I can do to make it better. However, sometimes I go ahead and implement new things (like, say, @font-face) before all of these browsers support them, as long as they degrade gracefully. The standard here is, the site should look like it was intended to render the way it does render. No obvious glitches.

      The latest version of the single most popular browser (currently, IE8) generally falls into tier two whether it's any good or not, and whether it's convenient for me to test with it or not. I'd prefer to put IE in tier three, because it doesn't run on my OS, but it's too popular for that, so I use rdesktop to test with it. (However, when all development on IE6 had totally stopped for several years, I did eventually drop it to tier three, even though IE7 wasn't out yet. Because IE6 was ancient and terrible, and I really needed alpha-channel transparency to do what I wanted, and every other major browser had supported it since the nineties, and I was tired of waiting.)

      Links, since you mention it, also basically falls into the second tier, for the most part, but there are some things I just don't try to make it do, because of its inherent limitations. For example, I don't try to make photo galleries look good in Links, because that would just be silly. You get alt text, of course, but it might just say "[photo]" for every single image in the gallery, because why are you using Links to look at a photo gallery in the first place? No, I'm not going to type a long description of every single photo. If you simply *must* use something terminal-based to look at image galleries, you can always use wget to slurp them all down and compile some image preview software against aalib or something. Whatever floats your boat, but don't ask me to put in a lot of extra effort for it. I *do* check links for things like the ability to display the whole width of the page (i.e., stuff's not getting lost off the right edge) at eighty columns.

      The third tier is inhabited by browsers that I only test in occasionally, usually because I don't have convenient access to them. Somewhat out-of-date (but not extremely ancient) versions of the major browsers fall here (e.g., Firefox 1.x), and also niche browsers like Konqueror, and also browsers that aren't available for my preferred OS (e.g., Safari). I try to at least get someone (or a service like browsershots) to send me screenshots occasionally, and if somebody reports a problem I'll see what I can do. My standard for these browsers is somewhat lower than for tier two. If stuff doesn't look quite right (e.g., the ugly background IE6 puts behind transparent png images), I don't really care. Upgrade or put up with it, your choice. However, if there's a problem that significantly interferes with the ability of the user to actually read the site, I definitely want to know about that and fix it.

      The fourth tier is stuff I refuse to support at all. Extremely ancient browsers from the days of yore (IE4, old AOL browsers from before they acquired Netscape, etc), bizarrely obscure browsers ("hey, I'm

      --
      Cut that out, or I will ship you to Norilsk in a box.
    119. Re:Why redirect them? by jonadab · · Score: 1

      > IE6 is mandatory as it is still in use by more than 5% of our audience.

      Some level of support for it might be mandatory, but I don't think it's necessary for absolutely every aspect of the site to be every bit as good in IE6 as it is in modern browsers. Let people have *some* incentive to finally upgrade.

      Personally, I have IE6 in my third-tier of support, which means the site should actually be usable, but it's okay if it looks a little wrong. For instance, I go ahead and use transparent png images, knowing full well that IE6 will put an ugly background behind them. If you don't like the ugly gray rectangles, you could always upgrade to a browser that's less than eight years old.

      --
      Cut that out, or I will ship you to Norilsk in a box.
    120. Re:Why redirect them? by jonadab · · Score: 1

      > A lot of companies have web apps and intranet pages that do not render
      > correctly in anything other than IE6. Who pays to update all of that?

      This is easy. You put a link on the desktop labeled "Corporate Intranet" (or whatever you call the thing, which points to IE, which has your intranet thingy set as its start page. You put another link on the desktop that says "Browse the Internet" and points to a modern web browser (something less than five years old), which has something else for its start page (perhaps the public website, or Google, whatever).

      For bonus points, you set the security settings in IE6 so it can *only* be used on the intranet, because using it on the public internet is an unnecessary risk.

      --
      Cut that out, or I will ship you to Norilsk in a box.
    121. Re:Why redirect them? by jonadab · · Score: 1

      > I made sure the site's still usable, even if it doesn't look quite right.

      That's how I handle IE6 as well. I go ahead and use transparent png images, knowing full well that IE6 is going to put gray rectangles behind them. Users who don't like gray rectangles can jolly well upgrade. But if there's a problem that makes the site unusable or illegible in IE6, I definitely want to know about that and fix it. I think this is a reasonable level of support for a nine-year-old browser.

      But I *don't* think it would be reasonable to impose on your design the kinds of limitations you would have to impose to get the site to look the same in IE6 as it does in a modern browser. (This is what some people mean when they say "support IE6".) That would mean you couldn't use any feature less than ten years old, and your site would feel very dated. I'm opposed to that.

      --
      Cut that out, or I will ship you to Norilsk in a box.
    122. Re:Why redirect them? by omfgnosis · · Score: 1

      Well, if your client-side code is good, it should perform as well with all the bells and whistles in WebKit and Gecko as it does without in Trident.

    123. Re:Why redirect them? by Macgrrl · · Score: 1

      I am currently browsing this thread on a work computer using IE6 - the corporate mandated and only available SOE browser. I made passing comment once to ITS about installing FireFox or IE8 and the response was unambiguously negative.

      --
      Sara
      Designer, Gamer, Macgrrl in an XP World
    124. Re:Why redirect them? by Fastball · · Score: 1

      Also, telling the user that you as the developer (and therefore face of whatever organization you represent) are "lacking patience, time and motivation" to support their browser tells them that you don't care about them, which is obviously a huge turn-off and likely to drive them away permanently, not encourage them to upgrade.

      You cannot expect developers to waste time to support edge cases like this. Because while it isn't hard per se to test and get a site functioning across all browsers, it can take considerable time. Even the smallest quirks can take days to iron out. It's a huge source of frustration.

      It isn't ideal to shun folks using a shitty browser, but at what point does the pendulum swing the other way? I don't see how pissing away man hours to support IE6 is going to compel those users to upgrade.

      As I see it, we do care about these folks, because if we can finally drop support for a dated, incapable browser, then we can finally focus on delivering solid browsing experiences quicker and more effectively.

      It's a thin line. Nobody wants to wall off visitors from their content, but at some point, the folks who can't be bothered to switch to free, widely available alternatives should be left behind.

    125. Re:Why redirect them? by omfgnosis · · Score: 1

      It's especially strange to find such a radical difference between Safari and Chrome, both of which use WebKit. They are on different release cycles so some differences in rendering are to be expected. But nothing that substantial... unless they've corrected an existing bug, and you've come to expect the bug's behavior.

    126. Re:Why redirect them? by omfgnosis · · Score: 1

      Perhaps if some of those people making the decisions find themselves unable to view the sites they want to, they will realise how stupid those decisions were and make efforts to change them. With any luck, this will teach them the dangers of using proprietary apps which are tied to a single platform and they will take the dangers seriously when making any future decisions.

      I'm not holding my breath. Considering how many people—many of whom are apparently web developers—can't understand the difference between treating IE 6 as a second-class browser on the one hand and the apparently infamous "this site best viewed in [insert browser]" wars of yore on the other, I suspect your site will get more blame than the browser.

      That is, until the sites making this choice reach some kind of critical mass.

      This is why there's so much conflict over this issue among web developers. We want eggs and we haven't got a chicken.

    127. Re:Why redirect them? by onceuponatime · · Score: 1

      What I have is a div that contains a table in the middle if the page (content area). And that has a column of floated items down rhe left, to rhe left of the content area (menu area).

      Inside the content is a table. This gets pushed to below the bottom of the floated section. It only does this to a table. A normal div is positioned at the top of the content area as with alll other browsers. What's more is that if I put a tall enough div preceding the table (in this case 40 pixels is enough) it pulls the table back up. In my opinion if the div containing the table is not affected by non overlapping floated sections to the left of it. Block elements inside that should also nit be affected.

      It's complex css so I don't have a minimal version yet.

    128. Re:Why redirect them? by Eil · · Score: 1

      It's not that simple. For 99% of web development, even if you follow the specifications to the letter, you'll find that your markup/code just plain doesn't work at all on IE6 and most of the time IE7 as well. Graceful degradation is a myth for anything but static content.

      But I do agree that actively blocking users via their User Agent string is dumb. Any good web developer writes code according to standards and then makes exceptions for popular browsers with known bugs or incomplete implementations. Or they risk locking out 20%-30% of their potential audience.

    129. Re:Why redirect them? by alan_dershowitz · · Score: 1

      Past initial development (coding to standards,) sometimes up to another 30% is needed to get one of the sites I work on working correctly in IE without breaking all or some of the other major browsers. Those development costs are the fault of Microsoft. Microsoft is the parasite, not the companies that simply want us to support whatever browser has the most users and then the browser changes on them in a few years. Imagine if the web development world could bill Microsoft directly for the extra costs associated with supporting their crap browsers.

    130. Re:Why redirect them? by Pieroxy · · Score: 1

      This is my take on it. And it is why you can customize the text inside the popup to whatever you like. The point is to let the message through. The wording is up to the site owner.

    131. Re:Why redirect them? by religious+freak · · Score: 1

      If people replying to your sig annoy you, wouldn't constantly changing it only illicit more responses, since there's constantly new verbiage to respond to? People used to comment on my sig all the time, but now that it's been around for a couple years, it's fairly rare to get a response.

      (yes, irony intended :)

      --
      If you can read this... 01110101 01110010 00100000 01100001 00100000 01100111 01100101 01100101 01101011
    132. Re:Why redirect them? by skelly33 · · Score: 1

      I'm not going to argue with any of that except to say this: neither my company, nor any other I've ever worked for, would be willing to turn away big business on "grounds of principle" that they are IT-paralyzed by an inadequate continuity plan. So long as vendors on some level are willing to cater to their customers' deficiencies, their clout will help them stay the course, and all your idealistic ranting will be rendered ineffectual.

      Yes, some day it will bite them in the ass, and some day it will cost them more to clean up the damage reactively than it would have cost to competently manage things proactively. But because upper management in the corporate world is often short-sighted with respect to controlling the costs of doing business especially when they see an "if it ain't broke, don't fix it" aspect to their working environment, what I described is a reality that just will not go away. Putting the soap box aside, neither I, nor my company, as just one of thousands of vendors working with this customer will ever be able to say something to the customer that alters their momentum. Sometimes if you're hungry for business, you have to do whatever it takes.

    133. Re:Why redirect them? by Gr8Apes · · Score: 1

      Updating from Vista to Windows 7 is a fluid motion of medium risk. Updating from Windows 2000 to Windows 7 or Linux or whatever becomes a serious and risky undertaking.

      That a funny statement, as there are virtually no Vista->Win7 updates. It's mostly XP->W7, and that only because XP has been EOL'd.

      XP is actually still better than W7 in many ways, fewer resources, faster, lighter. W7 claims to be more secure but it really isn't. If you run XP with everything turned off and all non MS software for anything going out to the internet, you'll be better off than W7 w/ IE 8.

      --
      The cesspool just got a check and balance.
    134. Re:Why redirect them? by phoenix321 · · Score: 1

      A company that waits nine years between major upgrade rounds hopefully has the people with the skills and experience on retainer somewhere.

      Nine years, half a generation of employees marched through them, changed positions, were promoted, left for other jobs, founded their own companies, left for a few months for their babies and all that.

      The Internet Explorer 6 they are using is probably older than the very building they're sitting in, at least older than the most recent renovation. (I hope)

      An upgrade every three years establishes a process that can be followed. An upgrade every nine years is re-inventing the wheel.

    135. Re:Why redirect them? by Acaeris · · Score: 1

      Unless you are specifically testing font variation between Apple's font renderer and Google's, there isn't a reason to test both Safari and Chrome. By all means keep them both around but they use the same renderer. Unless a major bug turns up in a specfic version of WebKit or you are using features not widely available, they should render the same.

    136. Re:Why redirect them? by Acaeris · · Score: 1

      I wish I had mod points today. I've been designing website for a company where >50% of their customer base use IE6 yet all I've ever needed is a blank HTML template setup for IE6 and a CSS reset file. With those two bits ready in the skeleton of every website we have had to do minimal testing in IE6 and only ever had 1 IE6 only bug which was caused by incorrect use of the 'button' element instead of an 'input[type=button]' element.

    137. Re:Why redirect them? by Pieroxy · · Score: 1

      Font variation can give weird things at times. Plus, if they use the same rendering engine (which is not true, it is customized at least in Apple's case) they use different versions.

  2. Easy Answer by Tehrasha · · Score: 2, Interesting
    Wouldn't it be best to end support for obsoleted browsers?

    How well do your current pages support Lynx?
    Does that answer the question?

    And how much code is there that is IE6 specific that IE7/8 isnt compatible with?

    1. Re:Easy Answer by Fri13 · · Score: 3, Insightful

      How well does page support standards and is it designed that blind people can run it trough voice syntetisator or Lynx to read it with the "blind keyboard".

      I would not like that any page is designed for specific browser at all. Was it FF, Opera, Safari, IE etc.

    2. Re:Easy Answer by mugurel · · Score: 1

      Wouldn't it be best to end support for obsoleted browsers?

      How well do your current pages support Lynx? Does that answer the question?

      No, it doesn't answer the question: http://en.wikipedia.org/wiki/Is-ought_problem

    3. Re:Easy Answer by Bert64 · · Score: 3, Informative

      Standards compliant pages support lynx pretty well, lynx will simply ignore things it doesn't support and render the alt-tags instead of images etc. So long as you chose sensible names for the alt tags the textual page content is perfectly viewable. I use lynx quite often and find it great for getting to information quickly on well designed sites, without being distracted by any of the fancy graphics.
      IE6 doesn't degrade gracefully, it doesn't ignore unsupported features like lynx does, it tries to render them and botches the job totally.

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    4. Re:Easy Answer by cheesewire · · Score: 2, Informative

      How well do your current pages support Lynx? Does that answer the question?

      And how much code is there that is IE6 specific that IE7/8 isnt compatible with?

      It's not so much a case of code not being compatible with IE6, it's more that IE6 botches layout.

      You can create a perfectly accessible, standards compliant site (that looks just fine in Lynx), but in IE6 will have broken backgrounds, weirdly positioned bits, overlaps of boxes etc.—in short a site that looks terrible to the user. The developer, who would like users to perceive their site as looking nice, rather than a broken mess, then has to spend time (sometimes a lot of time) trying to pin down special site-specific IE6 fixes (that sometimes aren't standards compliant) to make IE display the site the same as all the other browsers manage to.

    5. Re:Easy Answer by IntlHarvester · · Score: 1

      And how much code is there that is IE6 specific that IE7/8 isnt compatible with?

      There used to be entire sites full of IE6 "hacks" which exploited bugs in the CSS engine to workaround other bugs. Pretty much all of these blow up in in IE7/8. Between the bugs and the workarounds, one can almost be certain that a moderately complex CSS2 site targeting IE6 will not run unmodified on 7/8.

      IE6 also does not "gracefully degrade" - huge chunks of layout will simply disappear under certain conditions.

      --
      Business. Numbers. Money. People. Computer World.
    6. Re:Easy Answer by sjames · · Score: 3, Informative

      Lynx isn't obsolete, it's last stable release was July 5th 2009. It is still in active development.

      IE6 has a zillion quirks in it such that the easiest approach is often to have one website for IE6 and another for everything else.

    7. Re:Easy Answer by thetoadwarrior · · Score: 1

      Not that much really but you get a load of incompetent IT admins and generally poorly run companies insisting that there is a whole world of old software out there that needs IE6.

      Funny how no software needs IE4 or 5. It only needs IE6 which comes with XP. Of course you can get IE7 for free unless of course your pirated version doesn't pass WGA and quite frankly I think that's the biggest reason someone or some company would still be on IE6. I personally don't think we should waste time and money supporting thieves.

  3. Depends on who you cater to by ResQuad · · Score: 5, Insightful

    Depends on your clients. If you're talking about a mostly technical crowd? No, probably don't need IE6. If you're talking about a site for corporate users, yea, you need IE6. There are many major companies out there still running IE6 on XP. It sucks, they should all switch to Firefox (Or Chrome, or Opera, or anything but IE), but unfortunately most don't have a choice in the matter. Oh and if you're trying to sell people something, then most likely yet again.

    Of course it all depends on what your usage stats/analytic say. Personally, I've not supported IE6 for a long time, but then on most of my sites Firefox is more than 50% of the market.

    1. Re:Depends on who you cater to by h4rm0ny · · Score: 1


      I try to support IE6 on a "moderate effort" basis. I'll fix major problems (if there are any) and I'll try to make it fail gracefully as others have said. Basically, if I do a site, I want it to reach people, that's my aim and I don't let my browser snobbery make me forget that. But having said that, this guy says less than 5% of his visitors are using IE at all. So I don't know what site he's running but it's clearly not an average demographic. So yes, he might as well disregard it other than putting up a note on the site itself, perhaps. For the rest of us, we carry on as usual trying to cater to our visitors. This is basically just another piece of Slashdot rabble rousing - it's hardly a real Ask Slashdot" where someone actually needs advice on something.

      --

      Aide-toi, le Ciel t'aidera - Jeanne D'Arc.
    2. Re:Depends on who you cater to by studpuppy · · Score: 1
      My company has 1 specific application out of 100+ (provided by a 3rd party vendor, not built internally) that is causing us to maintain IE6 as the corporate standard.

      And since you can't have both IE6 and IE8 installed at the same time on the same machine without jumping through hoops (and apparently it's too difficult a learning curve for IT to support Firefox for some 99% of the apps while relegating IE6 only for use with this one application in question), we're stuck with IE6 as a corporate standard.

      Which also means we can't get off XP easily either. Bleah all around.

      --

      Ya ever wonder if Slashdot had been a Facebook app, whether anyone would have used it?

      --
      The last time I wrote code, it was Morse
    3. Re:Depends on who you cater to by imakemusic · · Score: 1

      Absolutely this. I'm the webmaster for a town planning consultancy. The company deals with a lot of councils around the UK most of which use IE so the stats are as follows:

      IE8: 25%
      IE7: 20%
      IE6: 12%
      IE total: 57%
      Firefox: 15%

      Now compare this to another site that I run for a local (trendy graffiti-type) art gallery/shop:

      IE8: 16%
      IE7: 12%
      IE6: 5%
      IE total: 33%
      Firefox: 40%

      I've taken the time to make sure that they both work in IE6-8, Firefox, Safari, Chrome and Opera because the site's are simple enough and don't contain much JavaScript but the point is that dropping IE6 support from the gallery site would have less of an impact than dropping it from the planners site.

      --
      Brain surgery - it's not rocket science!
    4. Re:Depends on who you cater to by Bert64 · · Score: 1

      The one positive from this whole mess, is that you should be able to use this as evidence of why being tied to a proprietary system is bad. Even Microsoft strongly recommend that you upgrade from IE6 these days.
      Use this as a lesson going forward, any new apps you procure must comply with standards rather than being tied to a proprietary client. Make it a requirement on any companies you buy from, if your company is relatively large (and 100+ apps suggests it is) then vendors will fall over themselves to comply with your demands and if other companies do the same pretty soon standards compliant will become the norm and everyone will be much better off.

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    5. Re:Depends on who you cater to by microbox · · Score: 1

      It sucks, they should all switch to Firefox (Or Chrome, or Opera, or anything but IE), but unfortunately most don't have a choice in the matter.

      Of course they have choice, however, their IT departments would prefer to externalize the costs of upgrading from IE6. These are people who have no idea what the overall cost of this decision is -- and probably have to deal with IE6-only intranets that were designed by "developers" who sneered at supporting firefox.

      --

      Like all pain, suffering is a signal that something isn't right
    6. Re:Depends on who you cater to by josecanuc · · Score: 2, Interesting

      I work with web applications that cater to technical academics (engineering professors and graduate students). One of my apps uses a relatively simple CSS layout that just happens to hide a big block of entry fields when viewed in IE6. I didn't think it would cause a problem, but it causes me to get so many emails from grad students in China who notice the problem.

      I thought I would take care of it by putting up a blocking notice for IE6 users that says something like "IE 6 is not supported, please use a different web browser such as IE 7, IE 8, Safari, Firefox, or Opera".

      But it just changed the question from the IE 6 users -> "The page says IE 6 isn't supported, what do I do?"

      When I helpfully explain by repeating the note in the warning, some do try another browser with success and report back, others say they cannot.

      Chinese Slashdotters: Is IE 6 mandated in some Universities?

    7. Re:Depends on who you cater to by FateXtreme · · Score: 1

      I agree. I run a couple webservers and one of my bigest clients caters to the everyday consumer only. Between Firefox 3.0.X and IE6, it adds up to 25% of my visitors. Not exactly chump change.

    8. Re:Depends on who you cater to by denis-The-menace · · Score: 2, Interesting

      Setup a Citrix box (or equivalent) for running IE6 and use whatever transparent technology to make it seamless for the users of that ONE web app.

      You can then move on, free from the security issues still lurking in IE6. You are also free to upgrade to Windows 7 without using the Virtual XP feature which would double the number of windows PCs you'd need to patch.

      --
      Obama's legacy: (N)othing (S)ecure (A)nywhere and (T)error (S)imulation (A)dministration
    9. Re:Depends on who you cater to by Temujin_12 · · Score: 1

      The "but [insert mega corporation name here] requires IE 6 for internal tools" excuse is now nothing more than an excuse and is not sound a business decision. The official EOL for IE 6 is July of this year. Any company that has tools that that they wish to run on a browser supported by its vendor (to say nothing of security issues) should have either already created a new version that supports newer browsers or should be actively developing one.

      A corporate app that requires an EOL'ed browser is either not important enough to the company for them to invest in basic ongoing maintenance or is so poorly written/understood that nobody dares to touch it.

      --
      Faith is a willingness to accept something w/o complete proof and to act on it. Reason allows you to correct that faith.
    10. Re:Depends on who you cater to by mikechant · · Score: 1

      The official EOL for IE 6 is July of this year.

      No, you've misunderstood the table.
      E.g. Look at the entry for "Internet Explorer 6 on Windows XP Home Edition Service Pack 3".
      The "support ended date" says "Not Applicable, see note".
      The note says "Support ends 24 months after the next service pack releases or at the end of the product's support lifecycle, whichever comes first."
      What this means in effect is that IE6 support ends in *2014* when XP support ends.
      MS has also stated this explicitly on a number of occasions.

  4. IE8 not yet authorized by IT by Raystonn · · Score: 1

    IE8 is still fairly new. My workplace hasn't yet authorized its use, as some of the web applications used in our business do not work properly with it. Thus, we are all stuck with IE7 for the time being. My recommendation is to support the last two major versions of each browser. There are very good reasons why users may not yet be able to use the latest version.

    1. Re:IE8 not yet authorized by IT by deniable · · Score: 1

      Please tell that to Oracle. I've only been allowed to use IE7 to access my payslips since July. At least they fixed the broken redirect loop when logging in with Firefox 3. They also dropped the requirement for that horrid POS, jInitiator.

    2. Re:IE8 not yet authorized by IT by jonwil · · Score: 1

      I have yet to see any bank here in Australia that restricts you to IE or to Windows.
      Mine actually mentions both Linux AND Firefox in their "system requirements for online banking" list.
      And I have no problems using it with SeaMonkey.

      If your bank refuses to work with something other than IE, complain loudly to your bank about it. If that doesn't work, switch banks.

    3. Re:IE8 not yet authorized by IT by NeoSkandranon · · Score: 1

      My bank (State level credit union) and both of my credit card providers (one large, one relatively small) work beautifully in firefox

      --
      If you can't see the value in jet powered ants you should turn in your nerd card. - Dunbal (464142)
    4. Re:IE8 not yet authorized by IT by socsoc · · Score: 1

      It's not new, it's nearly a year old. I've rolled it out company-wide with the proper adjustments to webapps, and admittedly we're in between smb and enterprise, but that is just lazy.

    5. Re:IE8 not yet authorized by IT by deniable · · Score: 1

      Mine does. I use Firefox and it works fine. My original comment was about my employer's HR/Finance systems and not my bank. The bank may be a pack of lying scum, but their web interface isn't bad.

    6. Re:IE8 not yet authorized by IT by deniable · · Score: 1

      It's usually not the internally developed/maintained web apps, but the proprietary apps from big-name vendors. Hell, OWA for Exchange and the other MS stuff works better with non-IE browsers than a lot of them.

  5. 6% of users on IE6 by edibobb · · Score: 1

    I'm seeing about 12% of IE users (6% of all users) on IE6. Almost none on IE5 and below. I would say dump IE5, but make IE6 usable at a minimum.

  6. No more support by Rizz · · Score: 2, Interesting

    All of my sites now use browser detection for Firefox 2.* and IE versions prior to 8 and sends the user to a page giving them download options. It'd be nice if more people did the same.

    1. Re:No more support by Anonymous Coward · · Score: 1, Informative

      No it would be nice if sites didn't even look at the (optional) user-agent header and just supported standards (particularly html + css) rather than specific browsers.

    2. Re:No more support by Rizz · · Score: 3, Insightful

      I should have clarified. My sites are all now built for HTML5 and every attempt is made to stay standards-compliant.

      While users with older browsers are redirected, the entire site (short of the few pages with directions) use those standards and are still visible selects the ``I know my browser was made in the 1800s but I still want to see your site'' link.

      It's code and pages that I wrote one and just copy into new sites. *That's* what I wish more people would do. We could all gently urge those who either don't know or don't care and perhaps make the web a better place, one user at a time.

    3. Re:No more support by shutdown+-p+now · · Score: 1, Flamebait

      My sites are all now built for HTML5 ...

      So you build your sites to a draft standard, a work in progress that will change over time, and support for which still varies among browsers (and no, I'm not speaking of IE here)? Good job!

    4. Re:No more support by pbhj · · Score: 1

      > My sites are all now built for HTML5 and every attempt is made to stay standards-compliant.

      HTML5 is not yet a standard, it's not even a Recommendation yet it is still being drafted. Strictly speaking your sites are not standards compliant.

    5. Re:No more support by Foolicious · · Score: 1

      This isn't flaimbait, you freaking putz of a "moderator".

      --
      Please don't use "umm" or "err" or "erm".
    6. Re:No more support by socsoc · · Score: 2, Insightful

      Let's say I'm running a version of OSX that the best it can do is FF2 and now you are automatically sending me to a page telling me how I'm an idiot or how my IT staff should have bought me a new computer or why your website should cast judgment on policy decisions to stay on IE6 at a corporate level.

      I don't care that there is a link to return, you obstructed my navigation of your website and I'll likely never return (especially with an insulting reference to the 1800s). Fine for your blog, not so hot for a business when you could have just put a div at the top of the page displaying a warning. *That's* what I wish more people would do. It's a gentle way. Redirecting isn't gentle, unless you're a cowboy and have warped views of gentle.

    7. Re:No more support by Malc · · Score: 1

      Why would you block somebody? That's nasty behaviour by you. It's highly irritating when web developers do that. Especially they also tend to make mistakes with their sniffing... the number of times I've been blocked for using a newer version of a browser, or something on the Mac, that they were too stupid to consider. If they've got IE6, display a warning, but let them try to at least proceed. They'll know what to do if things fail, but they might also succeed. Why be an arsehole about it?

    8. Re:No more support by bakawolf · · Score: 1

      Now lets pretend that you need them more than they need you, kinda gotta go there now, 'eh? Time for some supported hardware!

    9. Re:No more support by socsoc · · Score: 1

      That's a nice idea, but the majority of websites need visitors more than the visitors need the website.

    10. Re:No more support by SanityInAnarchy · · Score: 1

      How, exactly, does it vary? It seems way more consistent than CSS has been -- again, outside of IE.

      It's also not far off. According to their FAQ:

      It is estimated by the editor that HTML5 will reach the W3C Candidate Recommendation stage during 2012.

      If you believe the W3C's official line, it'll be later this year.

      So not flamebait, maybe, but definitely FUD.

      --
      Don't thank God, thank a doctor!
    11. Re:No more support by shutdown+-p+now · · Score: 1

      How, exactly, does it vary?

      See this and this.

      It seems way more consistent than CSS has been

      Are you talking about CSS 2 or CSS 3 here?

  7. Not needed by BhaKi · · Score: 5, Insightful

    Actually, no browser should be explicitly/directly supported. Only standards need to be supported. The browsers and their makers should be forced to comply.

    --
    The largest prime factor of my UID is 263267.
    1. Re:Not needed by mwvdlee · · Score: 5, Insightful

      And you'll tell your visitors to browse your site with the W3C Validator?

      I'm sorry to inform you that most people that might browse your site exist in a realm called "reality", you should visit it some time.

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    2. Re:Not needed by Antony-Kyre · · Score: 1

      But if someone bundles, I mean, releases a popular browser to the world, in which it breaks the standards, what then?

    3. Re:Not needed by stimpleton · · Score: 2, Insightful

      The browsers and their makers should be forced to comply.

      And ship'em to gulags if they don't?

      --

      In post Patriot Act America, the library books scan you.
    4. Re:Not needed by headLITE · · Score: 4, Funny

      Actually, that might work.

    5. Re:Not needed by Eivind · · Score: 4, Insightful

      Agreed. But it's still a good thing to code to the standard, because it's also real that a site is easier to maintain the less browser-spesific hacks it employs.

      It also matters what kinda functionality is lost in older browsers. If the site don't work at all with IE6, and 10% of the visitors use that, then that's definitely bad. If (to take a random example) border-radius isn't supported by IE-6, so those 10% visiting with that browser, get square corners rather than rounded ones, that may well be acceptable. (especially since supporting round corners in ie-6 means using fugly badly-maintainable hacks)

    6. Re:Not needed by BhaKi · · Score: 1

      Slashdot's code was written in perl probably before HTML4 came. Given perl's notoriously difficult maintainability, the coders would have been reluctant to adapt to HTML4.

      --
      The largest prime factor of my UID is 263267.
    7. Re:Not needed by StripedCow · · Score: 1

      This would be true in a perfect world.

      A somewhat more realistic motto would be: support only browsers which have a built-in update mechanism.

      That would help prevent disasters like IE6 to happen again.

      --
      If Pandora's box is destined to be opened, *I* want to be the one to open it.
    8. Re:Not needed by weicco · · Score: 3, Insightful

      Yes, that and my personal opinion is that web sites should have less (X)HTML/CSS/Javascript masturbation. I don't care about the fancy outlook. Content is everything.

      --
      You don't know what you don't know.
    9. Re:Not needed by kegon · · Score: 1

      And you'll tell your visitors to browse your site with the W3C Validator?

      I browse my site with the validator. If there are no errors then I know that it will be rendered for visitors as I see it. I don't care for "pixel perfect" rendering, HTML wasn't designed to do that. If you want pixel perfect then there is another, more suitable format: PNG.

      Adding a redirect is like saying "Sorry, your real world browser is too dumb for viewing my site" when the majority of authors want to say "Please come and view my interesting content".

    10. Re:Not needed by vtcodger · · Score: 1

      ***This very page on ask.slashdot.org/comments faisl W3C Markup Validation Service with 23 errors, 5 warnings comparing it to HTML 4.01 Transitional. More failures if you move to strict as well. ...
      Slashdot's code was written in perl probably before HTML4 came. Given perl's notoriously difficult maintainability, the coders would have been reluctant to adapt to HTML4.***

      No problem with that. But if that's really the case, why does the DOCTYPE on the web page say ?

      I very much doubt that "HTML4.01 Strict" compliance was ever an objective of the Slashdot designers at any point.

      Shouldn't pick on Slashdot actually. I can't recall any major website that I've fed to the W3C validator that was actually standards compliant. At least Slashdot works pretty well with most browsers.

      --
      You can't see ANYTHING from a car, You've got to get out of the goddamned contraption and walk...Edward Abbey
    11. Re:Not needed by Eivind · · Score: 1

      True to some degree, but I don't think we disagree. Thing is, the standard-way of doing things tend to be a lot LESS crap-full than the hacks typically used to make stuff work in obsolete browsers.

      Say the rounded boxes ?

      standard way ? Make a single div, containing the content, give it a id, say 'leftmenu' and in the css you set leftmenu to have 'border-radius 10px'

      Simple, standards-compliant, lynx-friendly, no-extra-downloads, works just FINE for browsers that don't do CSS.

      The hacky way ? What people typically do now, to support ie-6 ?

      Make a table, with 9 cells in it. Put the content in the middle-cell. Put gif-images depicting rounded corners in the corner-cells. Set cellspacing, cellpadding to 0.

      A huge fucking mess, 5-6 extra gif-images to download. Looks like TOTAL crap in Lynx. fugly !

    12. Re:Not needed by xaxa · · Score: 1

      I'd love for us to back to the simpler forms of HTML. So I could actually *get* the information I want, rather than always *waiting* for it while all the pop-up, drop-down, roll-over, fade-in, fade-out dancing monkeys Flash-based crap downloads and executes.

      The organisation I work for exists partly to do scientific research, and partly so people can visit and see our collections of stuff (so we're a bit like a museum).

      Much of the scientific data is available online. It used to be available in more-or-less plain HTML with a simple stylesheet to change table borders and fonts, and a small logo at the top of the page. The general visitor information pages were similar, as they dated from about 2000.

      Both parts of the website have been updated, and now the front page is 1MB rather than 10kB and full of graphics. That's fine, most people in this country have broadband. However, updating the scientific data pages has unsurprisingly pissed off several scientists, who don't want "pretty" crap all over their pages, especially as it takes up 25% of the area.

      I suspect some of the more IT-literate scientists have adjusted their browser to block bits of the page, but it's not going to be good. If I get time, I'll make a custom stylesheet which keeps the formatting on the text, but hides all the corporate crap (big logo, nav bar, footer, etc) and unnecessary background images.

    13. Re:Not needed by tepples · · Score: 1

      OK, so I make a page, and it validates, and it looks good in the most recent version of Firefox and Chrome. But customers report that in Internet Explorer 6, the layout is broken and next to unreadable, with boxes overlapping each other, pushing each other off the side, etc. Now what do I do?

    14. Re:Not needed by tepples · · Score: 1

      Content is everything.

      That's fine if you want only to read, not to create.

    15. Re:Not needed by uncledrax · · Score: 1

      In Soviet Russia, compatibility browses you?

      --
      ----- The internet has given everyone the ability to have their voice heard equally as loud.. even if they shouldn't be
    16. Re:Not needed by gravis777 · · Score: 1

      I agree. Unless you are doing some weird coding, your site should be viewable with the majority of browsers out there.

      That being said, most people still running IE6 and IE7 either don't know how to upgrade or, more likely, can't upgrade. Many corporations (mine included) blocks the installation of IE8 because it hasn't been properly tested yet. And up until three weeks ago, Firefox was blocked. On our XP x64 boxes, people are still on IE6 (don't ask me why, I just support the stuff). And guess what? We are a tech company! So the original poster's argument that any tech person who visits their site can simply "update their browser" clearly does not take corporate regulations into account, or how slow corporations are to upgrade. Shoot, most corporations are still on XP. IE7 shipped with Vista, and Windows 7 shipped with IE8. By your argument, software developers should stop supporting both XP and Vista and support only Windows 7.

      Nah, don't write special code for IE6, just let it try to render it. And if YOUR site is standard complient, chances are, IE6 will render most (maybe not all) of your stuff just fine. And agree with the other posts that state to just stick a banner on the page stating that your browser is old and may not render the page correctly.

    17. Re:Not needed by tepples · · Score: 1

      If they try to install the browser, they can't because their accounts lack administrator privileges. If they try to run the version that is supposed to be able to run without being installed, they can't because of the Software Restriction Policy that the administrator has put into place.

    18. Re:Not needed by mwvdlee · · Score: 1

      What if, in the meantime, they found out your competitors' websites DO render readably in their browser and you lose a customer because of it?

      And what about the 99.9% of visitors that DON'T e-mail you asking for your "support"?

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    19. Re:Not needed by Oligonicella · · Score: 2, Insightful

      Flippantly, how many buggy whips are in your collection?

      Seriously, Google Maps would be a bitch to use that way. I use a site frequently that displays a raft of photos to select from. These are categorized by some feature. Again, it would be a bitch to pop up forty-eight different pics in order to select the one I want.

    20. Re:Not needed by that+this+is+not+und · · Score: 1

      You probably spent too much time making it 'look good' and should concentrate on presentation that gracefully folds back to reveal the page's content. Are the overlapping boxes decoration, or is it more content?

      The layout can't be 'broken' if the layout isn't part of the content. Why are you leveraging the layout to be part of the content? Does it need to be?

      These questions need to be asked at a very basic level. Many people fancy themselves as 'designers' when they should focus on delivering the information that their clients want instead.

    21. Re:Not needed by that+this+is+not+und · · Score: 1, Troll

      Somebody needs to bust out the teeth of a whole lot of the self-styled 'web designers' out there.

      I mean, really. You're NOT a designer. You're not a programmer. You're not an engineer.

      My mom was a Church Secretary for many years. She typed the bulletin every week, and the newsletter every month onto stencils. For the mimeograph machine to print.

      That's what you're doing, web 'designers.' Deal with it. You're an information delivery clerk. Get outta the way of the information.

    22. Re:Not needed by tepples · · Score: 1

      Are the overlapping boxes decoration, or is it more content?

      Content, as opposed to malcontent?

      A lot of pages consist of a header, a vertical navigation strip floated on one side, a body text box floated on the other side, and a footer on the bottom. And IE 6 screws up floats incredibly often.

    23. Re:Not needed by Beezlebub33 · · Score: 1

      Are the overlapping boxes decoration, or is it more content?

      Content, as opposed to malcontent?

      No, content as in the data or information in the page, as opposed to the semantics or decorations.

      The fact that RMS doesn't like the word because it doesn't fit his philosophy doesn't make it incorrect, or not a term of art; it just means that RMS is a fanatic.

      --
      The more people I meet, the better I like my dog.
    24. Re:Not needed by Blackmjck · · Score: 1

      The border-radius example is definitely a good one when you consider that NO version of IE natively supports it or any of its variants. But, truth be told, why bother? As long as your corners are squared throughout the site as a whole (and thus fit together nicely), not having IE support for them isn't so bad. I've rarely had too much trouble convincing clients that little quirks like that don't have to be made exactly the same across every browser (mostly by pointing out that they'll be adding significantly to their bill if they want me pulling the hours it will take to code a hack that fits).

      And may god have mercy on your soul if they demand Netscape 3 support.

      The thought of trying to do Netscape support leaves me trembling in the fetal position. Thanks for that image.

    25. Re:Not needed by thetoadwarrior · · Score: 1

      He's right. If people would code to standards we wouldn't have a handful of people stuck with awful apps that work best in IE6. There is no good reason not to develop with standards.

      Some web companies just lack integrity and the balls to stand up for what's right because they aren't good enough to be in that position.

    26. Re:Not needed by kegon · · Score: 1

      They are going to be support nightmares because they are locked into ancient systems that haven't been updated. They may even be very tech savvy but they are not allowed to do what needs to be done. This will result in endless email requests to change things to try to work around their needlessly poor set up.

      If your product is truly awesome then people are not going to be put off by using their crappy IE6 that they know full well is rubbish.

    27. Re:Not needed by kegon · · Score: 1

      You've very conveniently woven your argument so that your requirements have become "Must support IE6". It sounds to me very much like you're preferring style over content; believe me anyone can write a web page that will be supported in all browsers, validates and doesn't have to have potentially overlapping text

      Content, as opposed to malcontent?

      I prefer to use a real dictionary when I don't understand words.

    28. Re:Not needed by mwvdlee · · Score: 1

      This thread is driving me insane.

      Why do so many of the Slashdot readers think 99% of the computer users (and product buyers) know how crappy IE6 is, know that they're even using version 6 of IE or in fact are even aware that what they use to look at the internet is called a browser, the one they're using is named IE and there are others out there just like it?
      They're not.

      And ever since the invention of marketing and advertising, the quality of a product has become an increasingly marginal part of the success of a product. People very rarely choose the best product; they choose the product they are told to believe is best.

      And quite frankly, if you're website downright refuses to display readably on IE6, that tells me a lot about the level of quality and support of whatever crap you're trying to peddle. Does your product only work well on a clean Swahilian Vista Home Server install too?

      You just continue supporting the exact W3C specifications regardless of whether any browser actually supports and and I'll just continue selling products that actually work.

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    29. Re:Not needed by omfgnosis · · Score: 1

      I think you're going about this all wrong.

      If browser vendors adhered strictly to existing standards—that is, if they didn't innovate and push for standardization of their innovations—there would be nothing to standardize. Standards boards are *not* the place where that innovation should be happening. That's why XHTML2 was a failure. That's why ECMAScript 4 was a failure.

      Apart from the video and audio tags, scarcely anything in HTML5 is not derived from existing implementations and consolidation thereof. That is the job of a standard.

      Apple and Mozilla (and to a lesser extent, Google and Opera, who do less innovation in this area) are doing the right thing; they're building the web platform, and opening it up to be interoperable. One without the other is useless. IE's history is heavy on building, and weak on interoperability. This often gets condensed to "IE non-standard blah blah blah" but it's just not as simple as that.

      I'd pick nits about a few of your more specific points, but I feel the broader point is more important.

    30. Re:Not needed by kegon · · Score: 1

      know that they're even using version 6 of IE or in fact are even aware that what they use to look at the internet is called a browser,

      You're so wrong.

      Joe and Jane Wintard may not have a clue how to use their PC or know what their browser is called, but their 11 year old nephew Davey does. Whenever their "webs" stop working they ask him to call around and fix it for them. And any superdumb home user eventually wants to install some "cool" software they found because they saw it was free. One way or another they are heading to Windows Update and it won't be long before they get IE8 pushed at them. Such brain dead users aren't going to go to your competitor's website because they found yours already and, how do they find that there is a competitive service ? That is beyond them, they will stick to what they know.

      The absolute majority of IE6 users are organisations where the IT or management has decreed updates too dangerous. They know IE6 sucks because even the dumbest user called up IT services to ask them to fix their unreadable webs. You are pandering to people who already know their browser sucks but their bosses are too cheap to fix it.

      People very rarely choose the best product; they choose the product they are told to believe is best.

      Are you joking ? People make the best decision they can. Not everyone is sucking up infomercials and believing every word they hear.

      Does your product only work well on a clean Swahilian Vista Home Server install too?

      If your website is designed for independent, interoperable standards then there is a far better chance of it working on any configuration in any locale. However, seeing as you spend all your time trying to conform to very specific products I doubt your site is viewable in any browser outside your supported range.

      You just continue supporting the exact W3C specifications regardless of whether any browser actually supports and and I'll just continue selling products that actually work.

      Exactly, you should be supporting the standards and not the browsers, that's why we have standards. No, I will continue working on writing universal HTML while you are writing hacky functions so that known broken legacy browsers will show all that useless chrome and hoopla on your website.

    31. Re:Not needed by DaVince21 · · Score: 1

      And you'll tell your visitors to browse your site with the W3C Validator?

      Sure, though my validator is called Google Chrome.

      --
      I am not devoid of humor.
  8. Yes and No by Kickboy12 · · Score: 2, Interesting

    At my web development company we officially stopped testing our sites on IE6 last year. However, we do still test sites in IE6 when we know the client is specifically using that browser (so they don't complain). However, IE7 is still pretty common among XP users, so we still have to test all sites on IE7 and IE8.

    Though as far as we're concerned, IE6 is dead.

    1. Re:Yes and No by mwvdlee · · Score: 5, Insightful

      My stats indicate more visitor use IE6 than Opera (all versions combined) or Safari (all versions combined).

      If IE6 is dead, then so are both Opera and Safari.

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    2. Re:Yes and No by jaymz2k4 · · Score: 1

      Opera & Safari have the advantage that a site that is working "properly" in Firefox or IE7 is more than likely going to run just fine on those two as well, if IE6 did that too the whole discussion would be moot.

      --
      jaymz
    3. Re:Yes and No by wvmarle · · Score: 1

      If it works in FF then I will bet it works fine in Opera and Safari (you may want to test to make sure, but that should not be necessary). I don't know of FF specific behaviour, and Opera and Safari are too small to do anything but follow standards.

      IE however is a different animal. That one has it's own standard and way of doing things. And how IE works is even version-dependent. Messy at best.

      Thanks to IE my web site is designed using tables. I don't have IE, couldn't test it, and the CSS to do it nicely failed in IE so badly that while it worked great in FF and Safari, IE got a blank page. Then I went back to tables... a bitch to change things (I barely do this, static design) but at least it just works.

    4. Re:Yes and No by Junior+J.+Junior+III · · Score: 1

      My stats indicate more visitor use IE6 than Opera (all versions combined) or Safari (all versions combined).

      If IE6 is dead, then so are both Opera and Safari.

      IE6 is "dead" because it can't render modern pages without great amounts of assistance from a sympathetic web developer.

      Safari and Opera might have less markeshare than IE6, but don't have near as many problems rendering modern web pages, and don't put a burden on web developers to make web sites that will work with them. Ergo, they are not dead.

      --
      You see? You see? Your stupid minds! Stupid! Stupid!
    5. Re:Yes and No by Anonymous Coward · · Score: 1, Informative

      then you should also know that spam bots use browser strings of ..... yes, usually some IE version and usually IE6 because it pretty ensures that the website will not attempt to try fancy things with this outdated piece of crap (AKA browser).

      Learn to read your logs!

    6. Re:Yes and No by llamalicious · · Score: 1

      You have to look past the numbers, it isn't a matter of being "dead", it's a matter of weighing the cost of supporting IE6 specific code against an increasingly small number of users.

      Even though your stats indicate Opera and Safari are in the same percentile for your site, they'll render standards compliant content without HTML/CSS/JS specifically written for either one.

      If any of my sites had less than 10% of IE6 traffic, I'd stop supporting it officially for them. In reality, most of our B2B sites have > 50% of users on IE6 -- we'll be stuck with it for some time. Hopefully Google's impetus to kill support for IE6 can help sway corporate decisions more than Microsoft's own declaration of obsolescence.

    7. Re:Yes and No by FooAtWFU · · Score: 1
      My company has just reached the point where the developers have permission to break IE6 on the fancy-new drag-n-drop customizable-homepage-layout for our application and other similar features. For new features like that, IE7+ is fine going forward.

      We're in the tens-of-thousands to millions-of-dollars off-the-shelf software segment, for what that's worth.

      --
      The World Wide Web is dying. Soon, we shall have only the Internet.
    8. Re:Yes and No by ArAgost · · Score: 1

      The fact is that you don't need to “support” Opera or Safari, since it pretty much works as expected.

    9. Re:Yes and No by sjames · · Score: 1

      The difference is Safari and Opera work fine without doing anything special.

    10. Re:Yes and No by Just+Some+Guy · · Score: 1

      My stats indicate more visitor use IE6 than Opera (all versions combined) or Safari (all versions combined).

      My stats indicate more visitors use mostly-standards-compliant (all versions combined) than don't. Since Opera, Safari, and IE8 (mostly) are in the former category, we support them.

      --
      Dewey, what part of this looks like authorities should be involved?
    11. Re:Yes and No by mwvdlee · · Score: 1

      Well, it's not a particular good indicator of website quality in general, but my employer's Sharepoint website looks and behaves slightly different in all browsers I tested; IE6 and latest Firefox, Opera, Chrome and Safari (on Windows).
      So it IS possible to f**k-up a website badly enough that no two browsers render it identically.

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    12. Re:Yes and No by thetoadwarrior · · Score: 1

      I think IE7 should be supported for now. Some people go overboard on what should be done but really we need to get IE6 to go away. IE7 isn't great but it's a damn sight better than IE6.

    13. Re:Yes and No by thetoadwarrior · · Score: 1

      Safari uses webkit so that's Chrome, Konquer, iPhone and many others. Webkit's userbase isn't that small.

      The nice thing is that generally if it works in Firefox is will work in everything except IE. If you aim for Firefox and Webkit then you've more or less supported Opera already and where that's not strictly true, unless the client asks for it, don't worry about it too much because as you say Opera isn't that popular. But again coding to standards will do wonders for supporting all those browsers.

  9. IE6 outdated. by Tukz · · Score: 4, Informative

    We're a web company, making different kind of websites for different kind of people. Which means we make anything from small "Mr and Mrs Smith My Pink Pony" kind of sites, to web shops with 5k+ transactions per day.

    We recently (within the last year or so) put a note on our contracts, stating we don't support IE6 anymore, unless the customer is actually paying extra for making the appropiate changes. It was just too much a hassle to manage all the hacks and workarounds all the time.

    So basically, we state we only support the latest generation of browsers, included IE7 since the migration to IE8 isn't complete yet. A lot of people still on IE7.
    And IE7 isn't TOO bad, the work arounds is mainly CSS, the rest is worked out by MooTools, Prototype, etc.

    --
    - Don't do what I do, it's probably not healthy nor safe. -
    1. Re:IE6 outdated. by ElVee · · Score: 2, Informative

      I work for a passenger airline, and a big part of my job is making the migration from IE6 to IE8 happen smoothly. It's going slow as molasses, to be honest. With 50k+ workstations scattered all around the globe and many thousands of apps to test and remediate, the transition to IE8 isn't going to happen as fast as we, our suppliers and our customers want it to happen.

      Honestly, I'd love nothing more than to be free of that craptastic piece of shit browser, but the reality of keeping the planes in the air gets in the way. Plus, there's this annoying shortage of freely available money, so we can't just throw buckets of green at the problem like we used to. We have to pay for remediation as the budget allows.

      We've had a few vendors come to us and say "We're not going to support your browser anymore, we don't like coding for it". Our usual response is "We're not going to support giving you any more money, we don't like paying you for it". They grumble, whine and cry, but 9 times out of 10, they cave. Being able to say that we're a major customer is a big thing to some vendors. Some even point it out on their website. Partner airlines are often required to buy a given product just because we use it and it's compatible with our way of doing things. Losing us as a customer means they stand to lose all these other airlines as customers when we choose a replacement vendor.

      We've had a (very) few purists walk away from the money. As annoying as that is, I have to respect these few vendors that stick to their guns. Then again, replacement vendors willing to prostitute themselves by doing IE6 'hacking' are cheap and plentiful.

      --
      - Pithy comment goes here.
    2. Re:IE6 outdated. by GreyWolf3000 · · Score: 1

      I'd agree with that assessment of IE7/8 not being *too* bad, except for three things:

      1. If IE supported display: table/table-cell/etc., layout would be much simpler. No more overflow:hidden/float:left nonsense.

      2. inline-block support is shoddy. You have to set display: inline on block level elements, and trigger hasLayout to get it to work. Not to mention, you can't set a background image containing text and push the inner text out of the box with text-indent. This is huge for designers that use fonts like Gotham for their buttons.

      3. border-radius. OMG... give me border-radius please.

      --
      Slashdot: Where people pretend to be twice as smart as they really are by behaving like children.
  10. sometimes users don't control their machines by Anonymous Coward · · Score: 2, Informative

    I worked for a federal agency and just this past summer we were finally upgraded to IE 7 - a lot of places where security is tight the IT people can be overly cautious when upgrading software, meaning employees could be years behind. If your site is something I need to access (technical documentation, etc) I'd be pretty annoyed when it wasn't my fault I couldn't access it because I'm not allowed to update my own machine.

    1. Re:sometimes users don't control their machines by soundguy · · Score: 3, Insightful

      If "security was tight", IE would not be allowed at all.

      --
      Nothing worthwhile ever happens before noon
    2. Re:sometimes users don't control their machines by LingNoi · · Score: 1

      I'd be pretty annoyed when it wasn't my fault I couldn't access it because I'm not allowed to update my own machine.

      Which would put pressure on to admins to fix it...

    3. Re:sometimes users don't control their machines by QuestorTapes · · Score: 3, Insightful

      What's tight at these locations is compliance auditing more than security.

      In many environments, these compliance requirements have the force of law, and it can be a long up-hill battles to change a poor, "hack" compliance regulation, such as "Use Internet Explorer 6 with these settings and patches", to an effective one (use a browser that supports the following security...).

      Since the ostensible purpose of compliance is security, many people mix the two concepts.

    4. Re:sometimes users don't control their machines by Bert64 · · Score: 1

      A lot of these "overly cautious" security people are actually being extremely detrimental to security...
      They prefer to stick to what they know, even when that is known to be far less secure than something else they could switch to.
      Also consider the various accreditation schemes, getting your product accredited is a costly and time consuming process, so quite often you will find that only old versions are accredited and new versions are not (and might not ever be)...

      People erroneously think the accredited version is more secure when in fact it isn't and may well have known flaws that people could exploit. You end up with extremely ridiculous situations where a lot of effort is expended to work around the known flaws, additional software is purchased to try and mitigate the known flaws (and by having additional software there you increase the attack surface anyway), and time/money is even expended cleaning up the mess from worm/virus infections with such infections being considered an acceptable cost of doing business.

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    5. Re:sometimes users don't control their machines by MoHaG · · Score: 1

      There is (or at least used to be when I last checked) no group policy support for Firefox. (And probably Opera / Safari / Chrome) Users saving passwords on a potentially insecure system can be a much larger security risk than a insecure browser, especially if they can't install anything because of their profile.

      In some places IT hates it when users can play around with settings (probably because of more support issues, etc)...

      The risk of IE is also quite low if it is run in a limited profile (if the user has admin access, they would probably ignore the policy and upgrade IE / install something else because of all the broken sites when using IE6)

    6. Re:sometimes users don't control their machines by thetoadwarrior · · Score: 1

      Yeah they're so secure that they use one of the most insecure browsers. Genius.

  11. Simple answer: no. by eparker05 · · Score: 1

    Pages directed at 'technical audiences' often are composed of vanilla HTML and/or links to PDF files. There are of course exceptions to this, but a large proportion of the pages you described would easily support every modern browser.

    For the exceptions to this, I think that there comes a point where it does not make sense to continue support for legacy systems. Now seems to be a good time to end support for old versions of IE, since this recent security fiasco that has put greater attention on upgrading to more secure browsers.

    1. Re:Simple answer: no. by mwvdlee · · Score: 1

      You mean this recent security fiasco was on the frontpage in all the newspapers?

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
  12. Corporations. by jedrek · · Score: 3, Interesting

    That's what it comes down to: corporations. There are still too many 10,000+ employee corporations out there that run Windows XP with the Flash 7 plug-in and IE6. You have to support that or there is no client.

    1. Re:Corporations. by Cragen · · Score: 1

      Indeed, much of the Department of Defense, a fairly large employer in some sectors, just moved to IE7 last year.

    2. Re:Corporations. by Bert64 · · Score: 1

      I'm sure all the evil blackhat hackers will be delighted to support users of such old software...

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    3. Re:Corporations. by netsavior · · Score: 1

      250k employees here, we migrated to [b]IE7[/b] from IE6 LAST WEEK.

    4. Re:Corporations. by that+this+is+not+und · · Score: 1

      If they can get past the firewall. And then there's the fact that for some of these organizations, there are vigorous active enforcement agencies to take care of said 'blackhat hackers.' Really, you don't want to casually hack around in a DOD network. Stick to messing up those PHP-based game sites, kiddies.

    5. Re:Corporations. by socsoc · · Score: 1

      Even more reason to stop developing with Flash.

    6. Re:Corporations. by aug24 · · Score: 1

      Yeah, but very few corps actually want/care about their workers visiting anything but the intranet.

      So fuck em, let em surf from home on IE8/FF/Ch/Op/whatever-the-fuck.

      J.

      --
      You're only jealous cos the little penguins are talking to me.
    7. Re:Corporations. by jedrek · · Score: 1

      Except that their marketing departments run that combination and if they can't see it and sign off, there's no point in doing it.

  13. Re:95% Beats 5% by timmarhy · · Score: 2, Insightful
    because your stats are pulled from your arse, a significant number of organisations still use ie 6/7. not only that but users don't exist so you can dictate their needs to them, you exist to provide a service.

    your thinking is the typical fail thinking that persists here on /. that technology sets the agenda not the customer.

    --
    If you mod me down, I will become more powerful than you can imagine....
  14. I'm posting this from IE6. HELP! by mykos · · Score: 4, Interesting

    My employer hasn't switched from IE6. Does anyone have tips on how to convince them to move to IE8? We have exactly zero software which requires IE6; in fact, some of our software doesn't work properly with it.

  15. Measure it... by dacut · · Score: 3, Interesting

    ... as you've done. What percentage of those IE users are still running IE6/7? Then ask yourself, "Am I willing to lose X% of my visitors to save Y% of coding effort?"

    For any typical website which depends on traffic for revenue, I'd say you'd have to be nuts to cut support for IE 6/7; thats about 35% of the visitors to your site. The fact that only 5% (and not 62%) of your visitors use IE at all, however, indicates that you're not running a typical site (or there's an error in your metrics collection).

    1. Re:Measure it... by whencanistop · · Score: 1

      The large Government UK website that I work on still has 12%+ on IE6 (plus another 24% on IE7), so it is impossible to say that we're not going to support IE6 any more. However being business facing, we are probably seeing a slightly larger percentage of those. Interestingly IE8 has about 35% share - so users are moving over to the new browsers, albeit slowly.

      The bigger issue might be caused by corporations holding on to IE6 (as someone above has mentioned). In house we still have IE6 as the standard because our CMS/finance systems won't work in IE7 or IE8 and the cost of upgrading it to work in those browsers is larger than the negative impact of forcing everyone to use IE6 in the company. The downside is that we have lots of other systems that are faltering because they don't work in IE6 and I have to go against company policy of telling everyone to use Firefox or Chrome. Then again, the wider company policy is not to use IE6, so they're already breaking their own rules.

      Just out of interest the company's 2% rule (although I reckon it should be a 1% rule, but that's an argument for another time) says that we have to support these browsers: IE 6.0, 7.0 and 8.0; Firefox 3.0, 3.5 and 3.6; Chrome 3.0 and 4.0; Safari 4.

    2. Re:Measure it... by JasterBobaMereel · · Score: 1

      If it is only a small percentage that are using IE6 (or IE) then you should warn them and then make the page work at least minimally

      The same goes for other "minority" browsers ... make sure it is usable, if only in a minimal fashion ...

      --
      Puteulanus fenestra mortis
  16. Standards Compliant by jadin · · Score: 4, Interesting

    I (attempt) to keep my websites standards compliant. If it works in your browser, great. If not, not my problem. I'm not jumping through hoops to help support companies actively ignoring agreed upon standards.

    However, I'm also not financially dependent on my websites...

  17. Took you this long? by iamapizza · · Score: 1, Flamebait

    "Following Google's announcement ending support for Internet Explorer 6, I find myself wondering whether we (Web developers) really need to continue providing support for IE6 and IE7..."

    What a shame. It took a move by a large company like Google to get you to wonder about supporting IE 6, rather than reaching this conclusion through your own experience and common sense. Of course, this shame is also a blessing, as I'm hoping that it will get others like you to question the same, and hopefully companies will all follow suit.

    --
    Always proofread carefully to see if you any words out.
    1. Re:Took you this long? by icebraining · · Score: 1

      No, the thing is that now that major companies like Google are letting it go, upgrades are much more probable. No one will care if their employees can't access some random website, but if they can't access an important Google service, that will real pressure.

  18. It's not always by choice... by xlsior · · Score: 1

    Especially when creating Web sites intended for technical audiences, wouldn't it be best to end support for obsoleted browsers?

    I'd think that most 'technical audiences' would already be running a non-obsolete browser if they had any say in the matter...
    Not everyone has the option of installing/running alternate browsers (think: locked down corporate PC's, etc.)

    *Especially* with technical audiences, there's a larger than average chance that you'd lock these people out completely by preventing them to use an older browser. It's more likely that grandma doesn't realize that her browser is ancient than it would be for your typical techie...

  19. Obsolete? by Antony-Kyre · · Score: 2, Funny

    Come on. Some people still love IE6. Moreover, I believe IE5.5 is still used by some people.

    Well, that's my assumption based on the phrase "These versions include Internet Explorer 5.01 Service Pack 4 on Microsoft Windows 2000 Service 4" mentioned in http://www.microsoft.com/technet/security/advisory/980088.mspx , but perhaps that's bad logic.

    1. Re:Obsolete? by Antony-Kyre · · Score: 1

      I don't know which is worse. My original comment was moderated funny, when I was serious about the thing about people loving IE6, or that sites are being developted specifically for IE5.5.

      I can understand websites phasing out support for older browsers, despite the love of the older browsers. (Who knows when IE6 users will be left in the dust when it comes to YouTube?) But, for how long should websites pander to the past? Or, do I misunderstand?

      Although, I do admit, simplicity is nice, and there is no need to over complicate things.

  20. our stats make it a no brainer by stimpleton · · Score: 1

    Have you had to make a choice like this Yes we have made a choice. And that choice is to maintain support.

    We are an agricultural company at cutting edge DNA profiling for the beef breeds industry. Despite this our clients are farmers. IE 6 runs at 60% of browser share for us.

    Sorry, but its a fact of life.

    --

    In post Patriot Act America, the library books scan you.
    1. Re:our stats make it a no brainer by socsoc · · Score: 1

      We are an agricultural company at cutting edge DNA profiling for the beef breeds industry. Despite this our clients are farmers.

      I would expect nothing else. Who else would your clients be besides farmers and ranchers? Arborists?

  21. Wish we could :-/ by SplatMan_DK · · Score: 5, Insightful

    Get rid if IE6? Boy I wish we could. But we can't.

    Our 4-man startup software company targets medium sized corporate customers (250-2500 seats) and they are still using lots of old computers with IE6. There are many reasons but a few of the most noticable ones are:

    1.) a ton of old Line-of-Business applications still uses IE6 for presentation.
    2.) a surprisingly large amount of corporate software uses embedded IE6 components in their GUI.

    Most of these corporations have installed newer browsers on their machines (some of them even installed non-MS browsers) but IE6 is still there - under the surface - because critical business applications are still depending on it.

    All those Line-of-Business applications are extremely hard to remove. They often solve critical business needs so nobody wants to throw them away. They work and "do the things they were built to do". And since they just work there is no budget to replace them with somerhing else. The people who created them have left the company years ago so nobody really knows exactly how and why they are implemented.

    But everbody knows this about their old LOB apps: they neeed IE6, they still work as intended, nobody can tell how to make an alternate solution, and there is no budget to analyze or re-implement them (and why would anybody want to - right?).

    I imagine this is quite common for many corporations around the world and not just in my region.

    - Jesper
       

    --
    My security clearance is so high I have to kill myself if I remember I have it...
    1. Re:Wish we could :-/ by gtall · · Score: 1

      If no one in an organization understands how some home grown widget works any longer, I should think one could make a case for that widget being replaced by a modern widget that conforms to internet standards so that the next upgrade won't break it and leave them screwed.

    2. Re:Wish we could :-/ by david.given · · Score: 3, Interesting

      I've been on the other end of this: I got sent out to work with a Korean customer on-site. They wouldn't allow our machine to be connected to their LAN without installing some security software (name and shame: Waterwall).

      The installation goes halfway through and fails obscurely. Three hours of debugging later they finally realise that I have IE8, but Waterwall only works on IE6 or IE7.

      So I try to install IE7. I can't, because IE8 is installed. I try to uninstall IE8. I can't, because our sysadmin is, like, competent, and had set up the laptop with a DVD image with IE8 slipstreamed into it.

      I eventually had to borrow an XP disk from the customer and reinstall Windows. Then I installed Microsoft Security Essentials and removed the virus that was on their XP disk.

      The real joke? Waterwall blocks web access, enforces encryption on USB keys and recordable media, etc. (It's intended to stop 'information leakage'.) The internet? Wide open. ssh worked fine...

    3. Re:Wish we could :-/ by jonwil · · Score: 1

      I have a number of apps on my system that embed the IE rendering engine (through the IE ActiveX control and the IE COM interfaces). All of these seem to support IE8 just fine for the things they do.

      But I can see that there might be apps out there embedding the IE rendering engine where either the app or the content its displaying via the IE widget will not function with the IE7 or IE8 rendering engine.

    4. Re:Wish we could :-/ by NeoSkandranon · · Score: 1

      Why would I devote man hours to fixing something that isn't broken [right now] when those developers could be doing billable work?

      (Is the question most management will ask you upon suggesting that)

      --
      If you can't see the value in jet powered ants you should turn in your nerd card. - Dunbal (464142)
    5. Re:Wish we could :-/ by NeoSkandranon · · Score: 1

      I used to deal with medicaid billing; while this has (for my locality) moved to web based in the last several years, before THAT, the submission application was a EDS-created java monstrosity that would, as far as I could ever tell, only run in IE6 (and barely run there)

      This was a thing which, barring filling out the paperwork by hand and mailing it in, you had to use to bill anything to medicaid. Now granted, this isn't exactly corporate but it was issued by the state and was the only way to interface with them electronically.

      Also, EDS is no minor player, so I wouldn't doubt if most of their projects of that sort had similar performance.

      --
      If you can't see the value in jet powered ants you should turn in your nerd card. - Dunbal (464142)
    6. Re:Wish we could :-/ by gtall · · Score: 1

      Because then you can schedule the redo at your leisure rather than having to do it under the gun. Transitioning to a new system isn't done lightly and stopping it in midstream because your MS infected widget is coughing up a hairball is expensive.

    7. Re:Wish we could :-/ by that+this+is+not+und · · Score: 1

      I hope you didn't jeopardize your employer's business relationship with a client (apparently an important client if they sent someone as important as YOU there) by using SSH on their wires for anything trivial.

    8. Re:Wish we could :-/ by Anonymous Coward · · Score: 1, Insightful

      but IE6 is still there - under the surface - because critical business applications are still depending on it.

      That's fine, but there is no reason that they have to use an application ( IE6) to explore outside their intranet.

    9. Re:Wish we could :-/ by david.given · · Score: 1

      Nah, I'm more professional than that --- I discovered that it worked, went and asked permission, and then used it to download all the development tools that had been preloaded onto the laptop but had now been erased, while we were waiting for their beaurocracy to enable my account.

      All in all it took about a week and a half of my very expensive time (mostly hotel costs) just to get into a position where I could start to get my job done. Hurrah for security.

  22. The whole premise is faulty by istartedi · · Score: 1, Insightful

    The stuff I really want on the web would work fine with Netscape Navigator 3.x and the correct plugins.

    Do us all a favor and get rid of CSS, XHTML, and all the other alphabeet soup. Oh, and stop using target _blank. I've held out quite a while, but I think I'm finally going to install one of those script/tag-stripping proxies just so I can get rid of target _blank.

    I wanna new window, I'll click right-click and chose "open in new window". That's what it's there for. Oh, and how's that back button compatability thing working out? No? Still not there? Wankers.

    Oh, and "get off my lawn".

    --
    For all intensive purposes, "whom" is no longer a word. That begs the question, "who cares"?
    1. Re:The whole premise is faulty by Terrasque · · Score: 1

      The stuff I really want on the web would work fine with Netscape Navigator 3.x and the correct plugins.

      Do us all a favor and get rid of CSS, XHTML, and all the other alphabeet soup. Oh, and stop using target _blank. I've held out quite a while, but I think I'm finally going to install one of those script/tag-stripping proxies just so I can get rid of target _blank.

      I wanna new window, I'll click right-click and chose "open in new window". That's what it's there for. Oh, and how's that back button compatability thing working out? No? Still not there? Wankers.

      Oh, and "get off my lawn".

      I didn't even know caves had lawns. Oh well, learn something new every day I guess..

      --
      It's The Golden Rule: "He who has the gold makes the rules."
  23. Hell no! by Hurricane78 · · Score: 5, Interesting

    Remember: The only thing you can achieve by supporting those “browsers”, is to be an enabler. Basically the only reason those people still use IE, is because they can. And the only reason they still can, is because you still code for IE 6/7. And the only reason you do that, is because people still use them.
    Do you see the circular logic here?
    Someone has to break the cycle. And you can bet your ass that it won’t be the users. It’s your job. It’s mine. After all we’re the experts for a reason.
    Don’t be an ass. Be nice. Don’t push them. Pull them. Coming from IE6 to a full-featured modern browser with HTML5-enabled sites, is freakn’ great! It’s like opening the box of your shiny new electronics device (or whatever you like) and playing with it all day long. Get that feeling across! And you will see them getting dragged in in the euphoria, switching in the blink of an eye.
    People don’t change anything if they think they don’t have to. It’s called efficiency. But sometimes it’s bad. E.g. when there is a lack of information.

    So if you think that they should switch, then just code close to the standards. If they want to use their site, it takes them five minutes to install a recent browser, and they know it for years.

    Still supporting IE 6/7 is similar to acting like those EA managers, who would never dare to do something innovative, edgy, fresh or even slightly offending, to get a target group as big as possible... and then ending up with a shitty target group because the result of your work is bland, average, plastic-fantastic, non-innovative, boring shit that nobody hates but that also nobody loves.

    --
    Any sufficiently advanced intelligence is indistinguishable from stupidity.
    1. Re:Hell no! by jonaskoelker · · Score: 1

      playing with it all day long.

      Something I'm sure at least a few slashdotters are familiar with ;-)

    2. Re:Hell no! by am+2k · · Score: 2, Insightful

      Still supporting IE 6/7 is similar to acting like those EA managers, who would never dare to do something innovative, edgy, fresh or even slightly offending, to get a target group as big as possible...

      How do you explain something like Mirror's Edge then?

    3. Re:Hell no! by microbox · · Score: 1

      Do you see the circular logic here?

      Yes, and sysadmins take advantage of that -- handcuffing developers to make their life simpler.

      --

      Like all pain, suffering is a signal that something isn't right
    4. Re:Hell no! by tehSpork · · Score: 1

      How do you explain something like Mirror's Edge then?

      I love how people keep trotting this out as an example of how EA is not really as "boring" and formulaic as the community makes them out to be. That is the exception, not the rule. And they're making another one, so really EA just gained another formula to churn through every so-often.

    5. Re:Hell no! by that+this+is+not+und · · Score: 1

      Someone has to break the cycle. And you can bet your ass that it won't be the users. It's your job. It's mine. After all we're the experts for a reason.

      Err, fuck you. You're the data janitor. Your job is to store and organize and present the information. It's other people in the organization's job to create and use the information. You're a flipping high tech file clerk. Nobody cares that you're advocating the latest new Rolodex. Nobody fricking cares that there's a cool new DayPlanner out. We know, we know. Your red stapler is really really cool. And you're leading edge.

  24. Re:I'm posting this from IE6. HELP! by nicknamenotavailable · · Score: 1

    My employer hasn't switched from IE6.

    It's OK, your new employer might use IE8.

    (my employer doesn't know I have a netbook here, I get to use Firefox :)

  25. Re:I'm posting this from IE6. HELP! by Hurricane78 · · Score: 3, Interesting

    I’ll be an example to you:

    I left my well-payed day-job because my boss (who was a very powerful player on the net) wouldn’t let go of IE6. (I had to write webapps for that piece of shit.)

    I’m happy and would I have the choice, I’d do the exact same thing again. Just earlier. ^^

    --
    Any sufficiently advanced intelligence is indistinguishable from stupidity.
  26. Code for standards. by miffo.swe · · Score: 1

    Let the users sort the rest out. Be very upfront with why things break in IE.

    --
    HTTP/1.1 400
  27. Popular sites should tell users by BhaKi · · Score: 1

    to revisit with a real browser. If GMail, FaceBook, Twitter all give a "the browser you are using is not standards-compliant" message, then the browser-maker will change his stance.

    --
    The largest prime factor of my UID is 263267.
    1. Re:Popular sites should tell users by uncledrax · · Score: 1

      The only thing you listed that I'd care about would be gmail. .and even then I use Firefox for most of the time, so in practice isn't a non-issue.

      What functionality does Twitter really provide that can't be done in even HTML3.2 syntax? Sure there's the wizz-bang of a live feed in Facebook using AJAX and other things to emulate your browser into a thick-client, but what's there that NEEDS to be there if I wasn't using IE9 or Firefox 4 or Opera 151 ? Sure the drag-and-drop in GMail for sorting is cool.. but I'm sorry, it's a nice UI feature; it's not required for the site (note, I feel differently about Google Docs, I think you sorta needa those UI features to make the app usable)

      I mean seriously. It's not like they are using the BLINK tag even!

      For people that -need- to reach their audience, build a lowest-common-denominator page, and just redirect people there. Put a nice !discreet! note somewhere suggesting they can get increased usability from one of several 'maximum compatibility' browsers, but they are not required.

      I guess I'm being cranky with my old age, but I think there's to much damn javascript anyway.. and my 20 year-old-gripes about it not even being remotely like Java still hold credence dammit!

      --
      ----- The internet has given everyone the ability to have their voice heard equally as loud.. even if they shouldn't be
    2. Re:Popular sites should tell users by Antony-Kyre · · Score: 1

      Generally, simplicity should be the key to any site. Just because computers are getting faster, doesn't mean we need to do unnecessary stuff to sites. When something works, it works. No need to over complicate matters.

      With that being said, there are times when more complex things are nice. But, yeah, having two versions would be best. Some sites do this, offering a "lite" and full version, and yes, I chose that spelling for a reason.

  28. Why not use Win 98?? by SittingUnderBridge · · Score: 1

    Then you can use your old ass browser and be happy. But seriously I'm always using the latest RC of whatever (no brand war bullshit) it is I use, doesn't matter if it OS or browser. Get with the times or become a dinosaur and everyone will forget about you. One of my local suppliers just upgraded from DOS (I shit you not) don't know what version to XP and at least now I don't have to put up with them rebooting 3 different POS terminals before they can actually bill something out to the company account. Waiting 20 minutes for an invoice is not acceptable I'm a contractor I don't get paid by the hour while 20 year old machines churn away wasting my time.

    --
    Poop stinks and so do you=:)
    1. Re:Why not use Win 98?? by Just+Brew+It! · · Score: 1

      Win98's a pretty extreme example, though people like that do exist. But you've apparently taken things to the opposite end of the spectrum -- anyone who values stability doesn't run "latest RC" versions of anything.

  29. Again, not needed by BhaKi · · Score: 1

    They'll just quit the fray once enough number of people respect standards.

    --
    The largest prime factor of my UID is 263267.
  30. I hear ya, but no by dmomo · · Score: 1

    I'd love to ditch IE6. But where I work, it's not reasonable. Even if only 5% of our users are running it, quitting support for IE6 would mean tens of thousands of dollars a month. I think some sites have the clout to try and force the users to upgrade, but not us. They can simply go somewhere else.

    There will definitely come a time when the cost of supporting those users will be less than the revenue they bring in. Soon, but not quite yet. So, I'm still spending the 11th hour before roll-out pathetically debugging some hard to get at IE Glitch.

    At least our policy has gone from "IE6 must be pixel perfect" to "it just can't look like ass, at least where the site doesn't already". And for certain behind the scenes features (analytics, content tests) we do not have to support it.

    I would argue that for more technical sites (ours is not from the point of view or the browser) ie6 will certainly hinder progress and is likely a liability. I don't mention ie7 here because, for the most part, it's okay. It works. At least for our sites.

  31. Our visitors use it... by Fotograf · · Score: 2, Interesting

    our visitors still come 30% with IE6 so: decision is yours: do you want that that 1/3 of your possible customers cannot view the page properly

    --
    God's gift to chicks
  32. It's not your decision by obarthelemy · · Score: 1

    As a developer, you need to do what the bosses ask of you. You may argue a bit about it at the beginning, especially if you can back your argument up (vulnerabilities, extra costs, missing features...), but once the choice is made you've got to suck it up.

    My brother works for one of those infamous IE6-bound large corps. It hurts them quite badly (to the point where most users have installed firefox on the side and try and use it whenever it works), but they've got so much specific stuff (activeX controls, .NET, just plian web stuff) invested in IE6 that switching would be a multimillion-dollar proposition. They're reluctant to even start phasing it out for new developments, since that would mean supporting 2 browsers instead of just the one.

    Now, if you're your own boss and got a choice, you need to think carefully about who your users are, how willing they'll be to change browsers just for you...

    --
    The Cloud - because you don't care if your apps and data are up in the air.
  33. Don't paint them both with the same brush by 93+Escort+Wagon · · Score: 1

    IE 6 is about a decade old, while IE 7 just came out three years or so ago - why are you lumping them together? I'm not fond of IE 7, but from a coding point of view it's far less broken than IE 6.

    On a related note, I suggest you shouldn't plan on writing pages that require HTML 5 canvas support for a while yet.

    C'mon, I've ranted about IE as much as anyone - but seriously, are you going to hold Firefox or Webkit up to the same standards? Heck, Webkit seems to be pushing the envelope the hardest... so maybe you need to deny access to anyone who's not using a bleeding-edge Chrome or Safari build.

    --
    #DeleteChrome
  34. An updateIE bar by zefciu · · Score: 1

    You could alternatively use a widget from http://ie6update.com/ it's quite a smartass idea. However it's meant for ie6 only, which really is obsolete now. I believe that IE 7 should still be supported. But it's your business and money.

  35. Re:I'm posting this from IE6. HELP! by LingNoi · · Score: 1

    Set your boss's default homepage to http://www.crashie.com/

  36. Dropping IE6 may make sense, but not IE7. by Just+Brew+It! · · Score: 1

    There are very few situations where it would make sense for an end user to continue using IE6. The only one that occurs to me off the top of my head is if you're in the unenviable position of being stuck on Win2K, and relying on mission-critical Intranet applications which absolutely require IE. Even in this case, Firefox can be installed alongside IE6 (and would be a much safer choice for accessing the public Internet anyway). Given these factors, I think dropping IE6 support for a public web site (in the sense of no longer continuing to test changes to the site against IE6) is reasonable.

    Dropping support for IE7 seems rather premature to me though; it still has a sizable installed base. Furthermore, its CSS implementation -- while still not perfect -- is much less broken than IE6's, so it requires less effort to ensure that pages render correctly in IE7.

  37. Squeeze Them by chill · · Score: 1

    Don't explicitly break IE6/7, just don't kill yourself to making your site 100% compatible.

    Use IE6NoMore

    As for corporate sites...I haven't seen much of an issue, honestly. The last few big corps I've worked with that still use IE6 also have Firefox installed. Yes, their desktop machines come with 2 browsers and IE6 is used almost explicitly with a couple of legacy apps that rely on ActiveX.

    --
    Learning HOW to think is more important than learning WHAT to think.
  38. Could the real geeks please stand up? by redGiraffe · · Score: 2, Interesting

    What happened to the tried and tested option of ignoring the browsers you don't want to support; web1.0 was built on these sound principles. When we could not access the site due to the webmaster (remember them?) implementing the latest Netscape tag, we would assume it was our fault and upgrade.

    I blame agile development practices for worrying about what the user can handle: pussies.

    1. Re:Could the real geeks please stand up? by Arker · · Score: 1

      Real geeks dont support browsers, they support html.

      --
      =-=-=-=-=-=-=-=-=-=-=-=-=-=-
      Friends don't let friends enable ecmascript.
    2. Re:Could the real geeks please stand up? by NeoSkandranon · · Score: 1

      What happened?

      Most of us got jobs and responsibilities in which the end-user is someone other than ourselves, and most of us came to realize that alienating userbase on the modern internet, especially if you're selling something, is poor judgement

      --
      If you can't see the value in jet powered ants you should turn in your nerd card. - Dunbal (464142)
  39. back in the days... by MancunianMaskMan · · Score: 1
    back in the days not just tech websites proudly presented the "this site requires IE3 / Netscape 3" icons. And Netscape 2 before that. And NS 1.4, iirc that was quite an important release feature-wise. I suppose the web was not catering for non-geeks on the whole.

    Simple answer to the above question: what's the cost of continued support of $OBSOLETE_BROWSER_X compared with the revenue your website makes from customers with $OBSOLETE_BROWSER_X who won't switch to $SANE_BROWSER and rather abscond tom $EVIL_COMPETITOR.

  40. Well by Muskstick · · Score: 1

    I just started working for a governement agency and we only support IE6 apparently. Working with JSF/ICEfaces atm.

  41. Re:95% Beats 5% by gd2shoe · · Score: 1

    I respectfully disagree.

    The customer is not always right. (especially if the service in question is free) Can users dictate their needs to developers? They can try, but if they want the moon, they're going to be disappointed. IE6 needs to be unsupported eventually. Or do you propose continuing support for IE1-5 too? The only reason we don't see them in use today is because they (and they OS they run on) are deprecated. Stop laughing, I'm quite serious.

    --
    I won't join Slashcott. OTOH, If Beta goes live, I just won't be back until it's fixed. Sorry Dice.
  42. Microsoft phases out Netscape 4 support, so there by David+Gerard · · Score: 2, Funny

    Microsoft is phasing out support for Netscape 4, in retaliation for Google declaring Internet Explorer 6 a "pustulent syphilitic drunken crack whore with no mates. And bad breath. Who smells funny."

    Google has given up bothering to support IE6 on its sites, directing the doubtless hideously virus-infected users of the browser to download another browser. Any other browser. "Lynx will give you a vastly superior YouTube experience. Now it will, anyway."

    "The Mozilla Foundation has completely failed to fix problems in Netscape 4 that have been around for years," said Microsoft marketing marketer Jonathan Ness. "Furthermore, Firefox gets just as many hacks as Internet Explorer, and pay no attention to my lengthening nose."

    In December, Chinese hackers exploited a weak spot in IE6 that Microsoft had only known about since September. Following this, governments worldwide told people to get the hell off IE6, except Britain, which relies on IE6 to leak data when there are insufficient funds for USB sticks or train journeys for civil servants.

    Web designers around the world welcomed Google's move, but have not given up their Bill Gates dartboards just yet. "'That is not dead which can eternal lie, And with strange aeons even death may die.' Steve Ballmer said that, you know."

    --
    http://rocknerd.co.uk
  43. Re:I'm posting this from IE6. HELP! by Anonymous Coward · · Score: 1, Informative

    easy. tell them microsoft is ending updates and support for ie6 in july.
    therefore if they stick with ie6, they'll be stuck in a deadend.
    the early they switch, the more money they'll save later on.

  44. Re:I'm posting this from IE6. HELP! by The+Mighty+Buzzard · · Score: 1

    Ask Google what site they were sent to for that exploit then go around visiting it on as many computers as you can find at work. Something will definitely change.

    --
    Violence is like duct tape. If it doesn't solve the problem, you didn't use enough.
  45. NO REDIRECTS by leuk_he · · Score: 1

    DONT FORCE PEOPLE. SHOW A BANNER SOMEWHERE.

    probably 95% of a site will render correct under a obsolete browser. Don't force people do to large technical stuff (like downloading) to show 5%. Most of those obsolete browsers are in locked down offices, where people cannot install software.

  46. Re:I'm posting this from IE6. HELP! by Yvanhoe · · Score: 2, Insightful

    Make a list of the software that doesn't work properly with IE6. Try to evaluate the lost productivity. If hit by a virus that uses a flaw in IE6, count the time lost and put a $$$ figure on it. Then defend your case. Your employer is concerned chiefly about money. Make a case with monetary facts.

    Also in some kind of companies (high tech startups) the argument "Google did X" is often very powerful. Tell them that now you are using a technology that someone like Google does not consider usable anymore.

    --
    The Wise adapts himself to the world. The Fool adapts the world to himself. Therefore, all progress depends on the Fool.
  47. Rather support browsers with disabled Javascript by Fotograf · · Score: 1

    i vote for web designers be more aware of missing/disabled javascript/java/flash.

    --
    God's gift to chicks
  48. Re:Support by Corporate+Troll · · Score: 1

    Admins should start to notice that it is better to update to latest stable version of used software and we should drive all developers as well to understand that.

    Yes, but contrary to popular belief: this is not in our hands. (Also, I'm a firm believer in "if it isn't broken, don't fix it" -which doesn't apply to IE6- but upgrade to the latest greatest every point release isn't a good idea) Do realise that many companies use internal web applications made inhouse or by a third-party (think stuff like EMC Documentum, SAP, etc...) that simply work best on IE6.

  49. It's our fault, just as much... by Bunzinator · · Score: 3, Interesting

    ... as it is that of the browser vendors. As web developers, we NEVER should have coded to anything but the W3C standards. Browsers would have been forced to fall in line, and this fascinating banter would never have been necessary. While I have always tried to just code to the standards, I can understand the position other are in, with their PHBs squeezing them to do stupid things.

    Though it'd never happen, I'd like to see W3C monitor all web content, and have the power to issue DNS deregistration notices to all non-compliant sites.

    Dear Sir,

    we have determined that you site, www.microsoft.com, is not compliant with the W3C 'xhtml1-transitional' standard it claims to implement. You are advised that you have 14 days in which to make the aforesaid site fully compliant. Failure to do so will result in the immediate suspension of your Domain Name registration, until such time your compliance is proven.

    Have a pleasant day.

    1. Re:It's our fault, just as much... by Thundersnatch · · Score: 1

      As web developers, we NEVER should have coded to anything but the W3C standards.

      Except the W3C standards have been addressing imaginary needs, filled with errors and omissions, way too late to matter. The reason Flash exists and is so entrenched is because of the W3C and many of the zealots who steer it.

      There's a reason that the IETF's RFCs are followed more strictly than the W3C, and that is because the standards themselves are generally written by a group of no more than 3-4 people, with limited scope, and a clear goal. The W3C suffers from serious "design-by-committee" issues, and cannot seem to generate consensus (which is the whole purpose of a standards organization).

  50. very simply. by Danzigism · · Score: 1

    <!--[if lt IE 7]>
    <script type="text/javascript">
    alert('Thanks for visiting! We have detected an outdated version of Internet Explorer on your computer. It is recommended that you upgrade your browser to view this site properly and to correct any security flaws on your system.');
    </script>

    Regardless of what people actually *need* Internet 7 or below for, it has major security flaws. If it is one thing my customers want to know, it is how to better protect themselves.

    --
    *plays the Apogee theme song music*
  51. Take it one step farther and help the user. by upuv · · Score: 1

    Dropping IE 6 is definitely something we all should promote and do. IE 7 no chance as of yet.

    I work in Enterprise and I constantly see ie6 numbers of 10% of users. Lots of people say that's enough to justify that we continue to support it. I counter with. How much cost are we devoting to ie6 bug fixing? How much is ie 6 costing us in lost capability holding back the entire site? How often have we put our users in jeopardy when a dodgy add sneaks through our add provider? How much money have we lost because ie6 regression testing slowed product release.

    I content that we should not only drop support. We should actually redirect them to and upgrade or you get no access page.

    The pennies that ie6 users provide my customers is simply not enough to justify the costs. The business guys always get pissed when I bring up the topic of dropping any cash stream no matter how small.

  52. Re:95% Beats 5% by timmarhy · · Score: 1
    strawman. i'm not talking about giving them the moon, i'm talking about giving them developement on the platform of their choice.

    what if a client has another web app they spent big money on that only runs on IE6, what if their worldwide network SOE is based on IE6? your going to just ride in and tell them to update or they can shove their money up their arse?

    in most contexts, the customer is right. it's only in the event they aren't paying or that you don't NEED those users that it makes sense to cut down your work load supporting older browsers. oh and the reason ie 1-5 isn't in use has nothing to do with websites removing support - it's because MS forced everyone to upgrade.

    --
    If you mod me down, I will become more powerful than you can imagine....
  53. Heavy handed but, no absolutely not by Phlatline_ATL · · Score: 1

    I'm a bit totalitarian about this. I believe that the web should be as CLOSE to the standard as possible. If there are alternatives that are better than IE6/7 now, then by Zeus make sure that people know about it if the page their viewing b0rks out.

    I have hated having to code around problems of rendering with IE at the expense of other browsers which render closer to the standard.

    Just my .02 euros (or whatever dominant currency we have now)

  54. Re:95% Beats 5% by FyRE666 · · Score: 1

    If someone spent "big money" on some app that only works on IE6, then they deserve their money back, or should pay for a fucking upgrade to something that's not designed for a 9 year old browser.

    And correct me if I'm wrong, but isn't it possible to have 2 browsers installed? Use IE6 all you like for ancient intranet apps. Use a modern, more secure browser for external sites. It's not hard. The only reason organisations don't do this is either laziness or ignorance. There's no excuse for it at all.

  55. Comment removed by account_deleted · · Score: 2, Informative

    Comment removed based on user account deletion

  56. Re:be compatible or loose out by vtcodger · · Score: 1

    *** *sigh* no - my technical blog still gets 40% of its traffic from old outdated browsers ***

    If your web site is there to deliver technical content, why do you care what browsers are used to access it? Write simple web pages that comply with HTML 4.01 Transitional. Feed them through the W3C Validator before posting them. And possibly everyone will be happy?

    Yes, I understand that not everyone lives in a world that can work like that, but I should think that many -- probably most -- people do. Why are they working so hard to make their world more painful for themselves and their users?

    --
    You can't see ANYTHING from a car, You've got to get out of the goddamned contraption and walk...Edward Abbey
  57. Drop IE6 maybe IE 7 too early by haplo21112 · · Score: 1

    There are a lot of companies that mandate the standard of what goes on the Corporate machine image and are slow to update. For example the one I work for got to IE 7 (on XPSP3) as a standard over IE 6 about a year and half ago. The only thing thats going to bring them kicking and screaming to IE8 is the looming upgrade to Windows 7. The upgrade to Windows 7 isn't even a serious consideration until sometime next year.

    --
    Power Corrupts,Absolute Power Corrupts Absolutely, leaving one person(group)in charge is absolutely corrupt.
  58. Boss is that you? by SpoodyGoon · · Score: 1

    Strainge only yesterday did my employer drop support for IE6, k33l0r are you my boss?

  59. Re:I'm posting this from IE6. HELP! by oneandoneis2 · · Score: 3, Insightful

    When I worked at a job that not only used IE6, but used a heavily-locked-down IE6 that wouldn't even let me change the homepage.. I ran Portable Firefox from a USB drive and stopped caring.

    --
    So.. it has come to this
  60. Re:Actually I block old MSIE by Ash-Fox · · Score: 1

    As clients using old version of MSIE are more likely to be infected with malware, I decided to not only stop support for them, but block them entirely.

    If more sites did alike, users might feel slightly more motivated to update.

    I'm curious, what is your site? Because tepin.aiki.de is not blocking IE6 here.

    --
    Change is certain; progress is not obligatory.
  61. IE6/7 is too prevelant to disregard by coastal984 · · Score: 2, Interesting

    I work in local government IT - our standard right now is IE7 - we won't push IE8 because several of our vendor web apps have issues with it. I know, not good, but it's what we've got and it won't change anytime soon. I can't imagine it's anything but the same in countless other localities and businesses. Thus, it'd be irresponsible as a web developer, if you value a broad audience, to disregard the older incarnations of IE. Go ahead and flame away with your "it's irresponsible to use IE 6/7 in your organization" - you gotta get over it and realize that's just the way it is, and decide whether you want to be inclusive of all audiences or want to tell potential viewers "my way or the highway".

  62. Problem not just IE6 by gtall · · Score: 1

    A big system, the Defense Travel System, injected up our arses by DoD continues to require an IE browser. I found the company that produced that pile of stinking shit. They took some system intended for some other use, and somehow got DoD (probably via Congressional influence) to afflict the DoD proles who must use it. They have no intention of not requiring to use MS inspired CrapWare.

    The Joint Naval/Marine IT infrastructure organization has "standardized" on MS technologies. With this kind of government inspired stupidity (does security mean anything to these compu-weenies?), there's no getting rid of the malevolent influence of MS.

  63. Denied. by tepples · · Score: 1

    Popular sites should tell users [...] to revisit with a real browser.

    Please don't start a sentence in the Subject and finish it in the Comment; it makes quoting more difficult.

    So how can a user do what the site says if the user is not an administrator? Install Firefox; don't have the privileges. Download the portable edition; it fails to execute because it hasn't been signed by the IT department.

    1. Re:Denied. by BhaKi · · Score: 1

      You don't need admin-privileges for firefox. Compile it and install it into your home directory and run it with your privileges. If your OS doesn't allow that, get a real OS.

      --
      The largest prime factor of my UID is 263267.
  64. Web Stats by sehryan · · Score: 1

    The web stats of the sites you manage should be dictating your support of any browser, not just IE6. For instance, I work as the Lead Designer for a government agency, and - depending on the target audience of the site - IE6 ranges anywhere from 9 - 15% of our users.

    As such, I just don't feel that we can drop IE6 support from our websites yet. And I would encourage you not to rely on what Slashdot tells you, but instead look at your web stats and go from there.

    --
    The world moves for love. It kneels before it in awe.
  65. IE has Automatic Updates by tepples · · Score: 1

    A somewhat more realistic motto would be: support only browsers which have a built-in update mechanism.

    Internet Explorer is part of the Windows operating system. Windows has Automatic Updates. So why isn't the built-in update mechanism in Windows XP recommending an upgrade to Internet Explorer 8, unless perhaps the administrator has set a Group Policy for the PC in the office break room to block this update?

    1. Re:IE has Automatic Updates by that+this+is+not+und · · Score: 2, Interesting

      And we're all eager to enable whatever DRM Microsoft deems to push onto our computers. In the form of 'updates.' Oh joy.

      Yes, we're really eager for that, and it's good that the self styled experts at Slashdot agree that it's in our best interest to bend over and smile whenever Redmond chooses to install whatever they wish.

  66. Depends on resources available by fortapocalypse · · Score: 1

    Drop IE6 support but not IE7 support if your company (like most) are short on resources these days.

  67. Re:95% Beats 5% by microbox · · Score: 1

    not only that but users don't exist so you can dictate their needs to them, you exist to provide a service.

    If only those users knew that clicking on that IE7 thing over there would save the world a *lot* of hassles. But sysadmins don't grok that.

    --

    Like all pain, suffering is a signal that something isn't right
  68. Depends on Demographic by seangw · · Score: 3, Insightful

    As a web developer, I hate supporting IE6. It lacks so many things that make the web a better place today (poor CSS support, no PNGs -- yes there are fixes).

    I've found it depends on your target demographic. If you are looking at business people, IE6 is still in the ballgame. Offices are still lagging behind in their conversion to modern browsers. This is probably because the IT staff just doesn't care.

    In talking with user groups, I've heard people say (frequently) that they prefer Firefox or Chrome at home, but at work aren't allowed to install those browsers -- so they are forced to use IE6 during work hours.

    1. Re:Depends on Demographic by painandgreed · · Score: 1

      I've found it depends on your target demographic. If you are looking at business people, IE6 is still in the ballgame. Offices are still lagging behind in their conversion to modern browsers. This is probably because the IT staff just doesn't care.

      No, I can tell you the IT staff probably does care. Do you have any idea how much work goes into making sure that any new hardware can still run XP and IE6 alone? Then we actually have to install it, make images, and support it. It would be much easier for the IT staff to go with what is current that keep legacy programs around. Instead, it is usually driven by corporate need for IE6, usually by some application that requires it. It may be in house or it may be vendor supported but either way its probably a lot of money to upgrade. Plus, business usually just doesn't want to spend more money just to be up to date. Sure, replacing your computer once every five years sounds good, but when dealing with hundreds or thousands of users whose old computer are still working and allowing them to do their job, a yearly refresh of 20% is a lot of money that nobody wants to spend without a good reason. Many businesses are still buying computers for the first time in certain roles. They are comfortable in buying new computers to replace old ones that break, but they aren't in the business practice of replacing computers that are currently working just fine.

    2. Re:Depends on Demographic by seangw · · Score: 1

      I understand where you are coming from. I used to run IT at a company, and had to make many of these "awful" decisions. Being given a budget of $10k to upgrade computers for 30 people, and a server -- there's not a whole lot you can do.

      It is very hard to upgrade a platform in a company, I'm not saying it isn't. Also, as IT you are required to inherit all the problems of everyone at the company when it comes to using a computer.

      I do, however, feel it is the job of IT to pitch as hard as they can to management. They should explain how outdated IE6 really is. How many mainstream sites have already dropped support. If there is a legacy application that requires IE6 to run, it probably isn't being maintained well.

      It should be the job of IT, if it makes sense, to push for these types of changes.

      It was wrong of me to say IT is lazy if you still have IE6, I should have said the company doesn't have it's head on straight.

      If you have 30 employees, and their computers slow them down by approximately 10%. Every week (assuming an average 50k salary each) this is costing the company about $3k every week in productivity (given quite a few assumptions).

      At a very minimum, why can't employees use an alternate browser? If it is such a problem to get, lets say Chrome, on company computers -- maybe there's a way to fix that (besides installing the Chrome Frame in IE6).

      While it may be easier to continue to support IE6 / XP, I feel any company still looking to use IE6 as a primary browser should take a second look. That shouldn't necessarily be at IT, but whatever restriction isn't allowing a company to upgrade to free software almost 10 years later.

  69. Charge extra by tonelust · · Score: 1

    We code to standards, however we identify which browsers the site will be tested in and will be targeted upfront. When clients request specifically for IE6 we then quote them how much it will cost to make the necessary changes. You can "drop" support by clearly identifying which browser you will test in and support and then leave it up to the client to pay for the additional work that it requires to support a browser that most people won't or don't want to support.

  70. Graceful degredation only becoming more essential by Protoslo · · Score: 1

    Forget the issue of IE6 (and IE7? I can only imagine that the site is some kind of "cutting-edge" javascript/css abomination if it fails utterly in IE7.), how do you imagine this guy's website is going to perform on cellphone and other mobile browsers? If fewer than 5% of the users are using any version of IE, they must be awfully technical indeed; I imagine that many of them also possess smartphones. I know that since I have started browsing in earnest on my phone, I have run into far too many websites with extremely basic content that nevertheless completely implode in multiple mobile browsers. And if the mobile browsers can render your website, I guarantee that you will also engender rage and resentment amongst users if they have to switch user agents just to placate your naive redirects.

    While IE6 is declining in popularity, phones will only increase. Firefox Mobile may be more powerful than IE6, but the same cannot be said for any of the other (currently far more common) browsers, and no phone has more than VGA resolution. Many sites that do render mostly properly have nevertheless brought potent curses to my lips when I tried to use their tiny and/or heavily javascripted navigation menus with a touchscreen. And Flash! I won't even go there...

    Of course, /. is a shining example of many of those pitfalls. While ajax support is indeed more efficient in theory, in addition to avoiding spurious reloads, the /. 2.0 design managed to destroy the client browsing experience in favor of (presumably) server-side efficiency. Whenever there is, say, an evolution article (~1000 posts), firefox more often than not gives me a javascript timeout for the page on a Core2 (I browse at -1, nested, all comments; the "50/100 per page" views never really worked either since it would break between threads, which are sometimes hundreds of comments long, resulting in four or five nearly identical numbered pages--but at least they didn't bring processors to their knees). And while /. does render on my phone, it certainly cannot be said to render well, or with anything approaching speed. At least it doesn't have insulting UA checks and I can read the bare comments (after I manage to log in, anyway--the threaded view is an absolute disaster).

    Fail gracefully. Hell, that is the whole idea behind CSS. So what if a website looks aesthetically awful in some browsers? At least it renders! When you start going overboard with javascript, however, and the content of the site (which has, maddeningly enough, been substantially present on the client all along) won't even appear until 5000 lines of script execute correctly...claiming that such things are "necessary" is total bullshit unless you have some kind of super heavyweight web-app like Google Documents; many of pages I browse work and look just fine with scripting disabled; many, however, were programmed by a bunch of assholes.

    Salon.com comes to mind: until a few weeks ago, it worked just fine. Then, they had some kind of web 2.0 revelation. Actually, the site looks pretty much the same, except that now only two paragraphs of an article usually displays initially until you click the js link which unhides the rest of the article...and then reloads the page one second later just to make you angry...sometimes in an infinite loop. Ironically, the site works just fine with scripting turned totally off; it is only when scripting is allowed for the "salon.com" domain but not the tens of advertising/tracking partner domains that everything goes to hell. The page reloads unnecessarily because the massive unhiding function blows up in some tracking code before it returns false, and if you get really lucky it then keeps running the function over and over and over again (I can't reproduce that at this moment, but reading the code, I can only imagine that it involves the story ids stored in the cookie, which can trigger instant expansion when the page is reloa

  71. Re:95% Beats 5% by Rockoon · · Score: 1

    You are epic fail and heres why.

    Sometimes the product is a thing. Sometimes a product is eyeballs. For a web developer who is marketing his services, the only product he actually has to offer is eyeballs. The web developer who is marketing his services is charging money for the eyeballs that he will deliver.

    You are going on and on about what the client of said web developer should do to make the web developers life easier. Thats not how it works, failboy.

    Sometimes a clients can orchestrate a situation where he only needs specific eyeballs. This is most common in situations where the client pays for BOTH the web development AND those eyeballs, pages on the corporate intranet, because they save money that way. Even in your crazy dream world where clients were somehow forced to orchestrate FF3.5 eyeballs, about 10 years from now the web developers would be in the same boat as today: The client needs specific eyeballs that are far away from current web standards.

    If you are a web developer, then I declare you a moron for not knowong what the hell your product really is. You are not selling chunks of HTML. You are not selling chunks of CSS. You are not selling chunks of javascript, ajax, or flash. You are selling eyeballs. It is YOUR failure if you cannot or will not deliver the eyeballs that the client wants. It is not the clients failure.

    A simple way to visualize the complete stupidity of your argument is to imagine a client using a completely proprietary system not based on HTML, CSS, or any of the other WEB buzzwords. Would you, the developer looking for money, demand that the people with the money switch to HTML? IE6 is right now is the most common proprietary system out there, but it is no different than any other proprietary system, and the latest greatest web browsers will be considered just as "broken" a decade from now.

    --
    "His name was James Damore."
  72. Upgrading IE6 to IE8 is difficult behind a proxy by Max_W · · Score: 1

    I remember that I had to download a big IE8 file from Microsoft site on a computer, which was not behind corporate proxy. Than while installing, the IE8 installation tried to contact Microsoft website again to check if there are newer updates.

    But proxy does not allow FTP connection. So instead of giving a message "could not connect" and continue, the installation has been trying to contact the website for about 30 minutes before finally continuing.

    But why to check for updates of an installation file while installing it? Why just not update the installation file itself while it is on Microsoft's website? Why not allow a download of an upgrade file via HTTP in addition to FTP?

    My point is that while it is relatively easy to upgrade from IE6 to IE8 in normal conditions, it is incredibly difficult to do so if there is a limited connection to the Internet.

    If there is one imbecile-engineer it is somehow possible to work with his/her creations, but when two come together, one at Microsoft and one running a proxy, it results in a really tough luck.

    I upgraded two IE6 to IE8 behind proxy in this way. Spent about 2+ hours on it.

  73. Security of the inept. by Ranzear · · Score: 1

    Security has become enough of a concern for Final Fantasy XI players that browser recommendations and plugin advice abounds on almost every site and forum anymore. Years of playtime lost to a compromised account can go for months before being restored by Square-Enix.

    Security became enough of a concern that one enigmatic third-party developer has banned IE6 users from his site for their own protection (IE6 accesses redirect to that page), because even his own site has been hijacked, exploited, and injected with iFrames and scripts to steal credentials and push keylogging and hijacking methods.

    I think the standard response to users of IE6 not being able to access pages when the security of their own browser is more important to them than they know is 'Tough Shit'.

    --
    Slashdot: Where opinions are just opinions until you have mod points.
  74. Why continue to support any browser at all? by QuietLagoon · · Score: 1
    Why not support Internet Standards, and let the browser manufacturers be saddled with the onus of creating a positive experience for the users?

    For example, writing a site that can be properly rendered by any browser that scores 100 on the ACID series of tests.

    Currently, the development of websites and browser software is completely backwards, mostly thanks to Microsoft's failed attempt to use Internet Explorer to take over web standards. Ever since then, websites have been written for specific browsers as the primary objective, and not for compliance with Internet Standards.

  75. Re:be compatible or loose out by Rockoon · · Score: 1

    Why are they working so hard to make their world more painful for themselves and their users?

    Because they think that they are clever. This is a social phenomenon. Web developers say in public how messed up IE6 is and how it restricts their cleverness, and other web developers hear the complaints and agree. They could be so much more clever if they could just ignore IE6. Users who run IE6 must be too stupid to realize how clever these web developers could be if only they would stop running it.

    Before you know it they all have forgotten what their job is, which is to orchestrate the delivery of content to eyeballs.

    .

    --
    "His name was James Damore."
  76. A "real OS" can mount /home noexec by tepples · · Score: 1

    Compile it and install it into your home directory and run it with your privileges.

    A lot of office workers' privileges do not include running software that the IT department has not approved.

    If your OS doesn't allow that, get a real OS.

    A "real OS" can mount /home noexec.

  77. Who's got the dough, though? by copponex · · Score: 1

    If someone is still on XP and IE6, it indicates one or all of the following:

    1. they are locked down by a cheap or technologically depressed corporation
    2. they haven't bought a new PC in quite a few years
    3. they haven't bothered to patch XP in a quite a few years, so it's probably pirated

    In either of these cases, they are less likely to have money to spend. Opera at least indicates that they are somewhat tech savvy, and Safari usually indicates that they bought a Mac.

    So, IE6 is dead to me in the sense that it's very unlikely that people who use it have any money to spend.

    1. Re:Who's got the dough, though? by mwvdlee · · Score: 2, Interesting

      Actually I only have Windows products, so anybody using Safari is either not a potential customer or using Safari on Windows.

      Besides, from a commercial point of view, I really don't care how tech savvy my visitors are, I just want them to give me money :)

      Since relatively many IE6 users are corporate users and many of my customers are corporate, chances are they are actually looking to buy (atleast much more likely than Safari users or, in fact, average users).

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
  78. Re:Upgrading IE6 to IE8 is difficult behind a prox by jonwil · · Score: 1

    I updated from IE6 to IE8 simply by downloading everything from Microsoft Update (which uses HTTP for everything AFAIK)

  79. Because by ubrgeek · · Score: 1

    The client demands it.

    --
    Bark less. Wag more.
  80. My company does this... by HockeyPuck · · Score: 1

    I work for a company that considers itself very forward thinking with it's own products... you know those products that replace products like the telephone and fax with HD Videoconferencing... or 10baseT with 10Gb Ethernet... or dial up networking with VPN... or ancient parallel SCSI with 8/10Gb FibreChannel... or routers that take up multiple racks... or replace PBXs with VOIP.. Our workforce has a choice of lenovo or apple laptops (internal community supported which is pretty amazing btw) ...pretty forward thinking...

    yet we just rolled out a new expense reporting system which requires IE6. Ask them why they just announced this new tool that requires IE6... falls on deaf ears.

  81. Re:I'm posting this from IE6. HELP! by flatrock · · Score: 1

    Even though the software upgrade is free, it requires time from support personel and some loss of productivity to upgrade. In this economy, money for anything that is not essential is tight.

    If it becomes difficult for you and your coworkers to do your job with IE6, then you have a good argument that might bear some weight. If there isn't a compelling business reason, they are likely to continue to put it off until cash flow improves.

  82. Re:I'm posting this from IE6. HELP! by Inda · · Score: 1

    I cannot bypass "Cisco Security Agent"! I cannot run any executables! Although the silly fuckers still let me write VB that lets me hook into almost everything!

    Oh, yeah, I have to use IE6 too.

    How can I disable "Cisco Security Agent"?

    --
    This post contains benzene, nitrosamines, formaldehyde and hydrogen cyanide.
  83. a little late by cartercole · · Score: 1

    i wrote a post about this a couple days ago http://j.mp/aEJZnO i point to http://ie6nomore.com/ and agree with the first comment. im not going to bend over backwards to try and get ie6 when im also dealing with quirks of ie8,firefox and chrome... write it as best to standards as i can and unless the client wants to pay more let those few little rendering errors slide

  84. IE7 - yes by nightsweat · · Score: 1

    We can't upgrade large parts of our corporate network to IE8 because SAP and Hyperion - two very important tools - have told us they won't be supporting IE8 for a few months. In general, I think you should support the latest and the version just before that.

    --

    the major advances in civilization are processes which all but wreck the societies in which they occur - A.N. White
  85. wow by buddyglass · · Score: 1

    What kind of site has fewer than 5% of its visitors using IE? linuxrulez.de?

  86. My policy on browser support.. by pak9rabid · · Score: 1



    No browser-specific filtering, but If your browser fails to render the site correctly, then thats for you to fix.

  87. Re:I'm posting this from IE6. HELP! by Civil_Disobedient · · Score: 1

    Does anyone have tips on how to convince them to move to IE8?

    Tell them that Google has stopped supporting IE6. That's the straw that broke my financial services co.'s back. We still "support" IE6 in the sense that it *should* work, but through the transitional period we're throwing an alert (through browser detection) that basically tells users, "IE6 support is ending, so if things look wacky... upgrade."

  88. It's about Money, with a capital 'M' by aero2600-5 · · Score: 1

    I'm a web developer for a top 100 online retailer. I hate IE6 like most of you. I realize that IE6 has caused millions of man-hours lost on a global scale. I also know that I was hired and paid well because of my expertise in working around IE6's many flaws. But it what boils down to is money.

    In the past month, according to our Google Analytics, we have had 5,279,955 visits. That's visits, not pageviews. Of those 5.2m visits, 3,716,805, or 70.39% were users running some form of IE with javascript enabled. (no javascript, no countie) Of that 70.39%, 12.73% were running IE6. That's 473,168 visits from customers using IE6 in the past month. That's about 8.96% of our total traffic. Would we like to stop supporting IE6? Certainly. Would we like to encourage IE6 users to upgrade to a better browser? Certainly. Can we tell 473,168 users that we don't want their fucking money? Absolutely fucking not.

    So, as much as we hate IE6, we'll make damn sure that our stores look good in IE6 because it's about the money.

    -- aero2600

    --
    Please stop hurting America -- Jon Stewart
  89. W3C - yes by lordshipmayhem · · Score: 1

    We seem to be looking at this the wrong way, from the POV of the end user rather than the programmer. The programmer is making the decision, the decision should lean towards ensuring the website is W3C compliant. If IE can't handle the W3C compliant website, then that's IE's W3C compliancy problem. Opera, Konqueror, Firefox, Epiphany should all be able to handle it just fine.

  90. Re:I'm posting this from IE6. HELP! by that+this+is+not+und · · Score: 2, Insightful

    And when your employer finds out you have a netbook there, maybe you can hang out in the coffee shop and show it off to all your friends. While you peruse Monster and Dice looking for your next job.

  91. Re:Support by socsoc · · Score: 1

    Best viewed with browser X and Y with resolution XY

    People still do that?

  92. Re:I'm posting this from IE6. HELP! by socsoc · · Score: 1

    You have a personal computer on the corporate lan or is your netbook picking up public wifi and using external web apps? The former sounds like termination to me.

  93. Javascript by nate+nice · · Score: 1

    This has more to do with Javascript than anything. the Javascript interpreter in IE6 is pretty awful. I've spent many hours coding little jscript workarounds for IE6. It doesn't fail gracefully and in complex jscript environments, it can be entirely painful to have to change a bit of script because IE6 can't handle what every other browser can.

    --
    "If you are a dreamer, a wisher, a liar, A hope-er, a pray-er, a magic bean buyer ..."
  94. Re:95% Beats 5% by FyRE666 · · Score: 1

    "You are epic fail and heres why."

    When a comment starts out like that, I know there's no point reading any more. Have a nice day ;-)

  95. People change by Tom · · Score: 1

    Contrary to popular opinion, people do change. Their friends, their habits, but also their browsers.

    How do I know? I've been running this website for the past eight or so years. As soon as it got the first CSS bits like six years ago, I decided to not support IE at all, no version of it. Instead, I captured IE users and told them when they were about to access a page that wouldn't work on their browser, told them why (e.g. no support for transparent PNGs, buggy CSS implementation, whatever) and gave them a link to access it anyways (e.g. in case they were using a real browser just masquerading as IE).

    My browser statistics show that usage of IE dropped sharply, while user count has steadily increased. Since this is a trend constant over several years (IE is currently at 15.7%) it isn't an anomaly, either.

    The summary of it is that if you give people a reason to change, they will. Most people use IE because they are lazy. It came with the system and they aren't really familiar with this com-pu-ter thing, so installing a different browser frightens them somewhat, no matter how easy it is. But give them an incentive and they'll do it.

    I'm certain the same holds true for moving them from IE6/7 to IE8 (or any alternative).

    --
    Assorted stuff I do sometimes: Lemuria.org
  96. DRM by tepples · · Score: 1

    "And we're all eager to enable whatever DRM Microsoft deems to push onto our computers. In the form of 'Windows.' Oh joy."

    There, fixed that for you. Windows since Windows XP has Windows Product Activation; is Windows Genuine Advantage significantly more draconian?

  97. Re:Upgrading IE6 to IE8 is difficult behind a prox by Max_W · · Score: 1

    In this network with very restrictive proxy automatic update from Microsoft website does not work for sure. But file download via HTTP, via browser seems to work.

    But why not just give users a possibility to download an installation file of the IE8 via HTTP? Or bring it on a flash drive? And let install it easily?

    On my private office computer I almost did not notice how IE8 was installed. But in this real network I would prefer just an installation file, which does not assume this and that.

    I saw on this network even IE5(!) recently. A user called and said that they get an error on an web-application page; I could not understand why until I asked them to look up IE version. It was IE5(!).

    This what happens when two imbecile-engineers join together, one from Microsoft and one responsible for the network proxy.

  98. Houston ISD & IE6 by parliboy · · Score: 1

    A slightly related story:

    I teach in Houston Independent School District. Due to a recent change, we are required to use Internet Explorer to log into our online gradebooks when on campus. There is no technological basis for this, as running a user agent switcher with Firefox causes no problems. And yes, IE 6 is an allowable agent.

    Of course, when we log in from home via the HISD-provided VPN client, it doesn't matter what browser we use.

    Also of course, we can use that VPN client at work, and it doesn't matter what browser we use.

    So yeah, it's just been a big bag of bureaucracy.

    Allow me to tell you some time about their wireless networking policy changes that start next week. That's a whole other ball of fail.

    --
    "You're never ready, just less unprepared."
  99. Let the vendor decide by swordgeek · · Score: 1

    OK, in this case I think that we should (gasp!) listen to Microsoft.

    Near as I can tell from their convoluted pages, the last update for IE6sp3 was in April 2008; and that MS supports it for two years following that.

    In other words, by May of this year, Microsoft will quit supporting it. If they don't support it, then nobody else should feel obliged to either. If you will lose revenue by blocking IE6, then well...make your own decisions. How much money do you spend supporting it to make 'x' dollars of revenue?

    --

    "People who do stupid things with hazardous materials often die." -- Jim Davidson on alt.folklore.urban
  100. Just don't by pizzap · · Score: 1

    No, there is no reason to support IE6. Your not supporting Mosaic, Netscape 3 or some other historic piece of software. Ask yourself how much work is it to support IE6, how much is overall functionality decreased by limiting yourself that much? Is it worth the effort? IE6 numbers will continue to get lower and lower. Sure there are a few companies out there which haven't yet upgraded their deployments, but they will have to redeploy at some point. The same goes for old software which depends on IE6, there is no future there.

  101. What About the Reverse? by The+Angry+Mick · · Score: 1

    I can see why developers would want to shuffle off IE6, and I fully agree that it should disappear immediately, but here's a twist:

    At my office, we do some monthly grant reporting to the state via two web sites that the state developed in house. One of these sites requires IE6; it's barely functional on anything else, especially IE7/8. Just to keep things interesting, the second site, written by a separate developer (sitting less than twenty feet from the developer of the first site) will only work with IE7/8, and Firefox with IE Tab enabled. It's totally non-functional on IE6.

    Since we're a grant recipient, we can't just demand that the developers recode for our needs, but it's getting more than a little old being told we have to lower our security thresholds just so some under-skilled government git can keep his employement.

    --

    I'm not tense. I'm just terribly, terribly, alert.

  102. What's the browser share of IE6 again? by Justice-of-the-Peace · · Score: 1

    Tripped across this link a while ago detailing with a surprising amount of granularity market share of browsers. Netmarketshare says that 21.35% of browsing is taking place on IE6 or one of its derivative versions.

    That's a whole lot of market share - Firefox aggregately across all versions beats it, but not by much.

    Dvelopers can choose not to market to those users or ignore them and eventually give them a poor experience, sure. But if the below is accurate, then that would be about the same argument as ignoring Firefox users, as far as market share goes.

    Though maybe the data I'm seeing here is wrong - this is the 'net, of course, and there are many ways of attempting to measure net usage.

    http://www.netmarketshare.com/browser-market-share.aspx?qprid=2

  103. IE usage on my site by captrb · · Score: 1

    On a reasonably large site (a few million pages a month) that I work on, IE 6 & 7 are still used heavily. It is depressing. IE 6 18.57%, IE 7 33.32%, IE 8 48.09%

  104. millions can't upgrade, their OS is too old by swschrad · · Score: 1

    soon to include XP, I might add. there are millions of users out there whose machines are too old, and whose OS is too old, and who are just freaking out of luck in "upgrading browsers."

    if you wish to not be availiable to all those users, fine, drop support.

    if you would rather try and persuade somebody to provide upgraded browsers for old OS, by my guest.

    oh, there is the small matter of corporations that do not permit browser upgrades for security reasons, who actively seek out and disable newer browsers than the "approved" IE6. like mine.

    --
    if this is supposed to be a new economy, how come they still want my old fashioned money?
  105. Re:95% Beats 5% by gobbo · · Score: 1

    what if a client has another web app they spent big money on that only runs on IE6, what if their worldwide network SOE is based on IE6? your going to just ride in and tell them to update or they can shove their money up their arse?

    Browser support is a lot like a warranty condition for the site. Manufacturers/designers have to set the bar somewhere.

    I smell a car analogy:

    I'm shopping for tires. I can get a 100Km warranty on a new set, so long as I agree to rotate the tires every 10Km, for free. Without some minimal diligence on the part of the user, the warranty is void, as the user has abrogated their duties towards security.

    Likewise with a simple free browser upgrade.

    If a client has specific needs, that's part of the contract, no? However, since IE6 is demonstrably less safe and secure, technically inferior, and more costly to support, there has to be extra justification and expense to support it... somewhat like an extended warranty.

  106. Don't support MS-BS by pubwvj · · Score: 1

    I don't support Microsoft Internet Explorer at all other than where it follows web standards, which it often doesn't. If IE breaks then so be it. I have a note on my web sites warning IE users to convert to something, almost anything, else.

  107. Individual Products vs. Standards by psbrogna · · Score: 1

    We'd make a lot more progress if everyone could support given standards rather than specific browser versions. I'm not saying we should cast disdain on those that make pragmatic decisions based on real business needs- just idealizing. Seems like we've made progress toward that ideal in recent years.

  108. Here at my University in our web dev group by bjdevil66 · · Score: 1

    We don't support IE6 anymore, but we also don't forward people or otherwise make them angry. Instead, we just let the site be a little off in IE6 and move on.

    We have a standardized theme/template that we use for all of our university sites now, and it was initially built a while ago when we supported IE6 (using its own little ie6.css file to fix the problems). Thanks to that work, the sites generally still "work" due to earlier efforts, but the newer ones aren't always perfectly laid out. (I usually take a look at them in IE6 in a VM for our group to be sure they're "good enough", and that's it.) Like other commenters here have said, the only reason we ever support IE6 now is if a picky client uses it in their office (and that is rare in our University environment thanks to a central IT department that has been pushing people to upgrade for years).

    On IE7, however, we can't ignore it. Too many people still use it.. Yes, IE8 is light years ahead of IE7 in standards support (IE8 is what IE7 SHOULD have been), but IE7 is much more manageable in Standards Mode than IE6 ever was, so we tolerate it. Dealing with it is cake when compared to IE6 pain and suffering.

    We will drop IE7 support about when the Google Analytics tell us that IE7 usage is between 5-10%.

    IE6 - No new work to support it. IE7 - Support it fully.

    1. Re:Here at my University in our web dev group by gsgleason · · Score: 1

      I block google-analytics with noscript in firefox. You would be better off logging all requests and looking at user agent strings.

  109. Oekaki by tepples · · Score: 1

    I mean, really. You're NOT a designer. You're not a programmer. You're not an engineer.

    Would you say that about the developers of WordPress?

    That's not what I meant at all. I was replying to weicco's suggestion that "web sites should have less (X)HTML/CSS/Javascript masturbation." But say I want to make a web application that allows the user to draw a picture. Am I supposed to send a copy of the user's entire picture in a <input type="image"> every time the user clicks a point on the picture? Or should I use JavaScript and HTML5's canvas element?

  110. Who uses IE6 anymore? by MattBD · · Score: 1

    I'm inclined to think that for most sites IE6 support isn't worth bothering about. I think IE6 users probably fall into two groups: 1) People using company hardware where the IT department hasn't upgraded IE yet. 2) Non-technical users who've disabled Windows updates because they made their computer slower. In respect of the second group I think nagging reminders such as IE6nomore are a good idea, since if every site shows those then maybe these people might get the message eventually. The first group are more difficult since it's not their fault and many of them no doubt would actively like to upgrade since IE6 is such a bad way to browse the Internet today compared to a more modern browser (they certainly do where I work), but often legacy web apps prevent that. Probably the best way is to stop supporting IE6 and it'll make it harder for companies to keep using IE6. If someone can't use a website on IE6 at work but can that evening on Firefox at home, then they can do that. I guess for an e-commerce site then they'd probably need to find out which users actually buy anything as if IE6 users visit the site but don't buy anything, then they can do without supporting them. Personally, I do actually have one netbook with IE6 on but I use Chrome as the browser on that and I figured since I never use IE anyway then might as well stick with the smaller IE6 if I have to have IE on there at all, and it makes sense to have a copy available to test sites in IE if I need to.

  111. Re:be compatible or loose out by Ltap · · Score: 1

    Before you know it they all have forgotten what their job is, which is to orchestrate the delivery of content to eyeballs.

    ... in the best way possible.

    --
    Yet Another Tech Blog
    (but so much more, including game and movie reviews)
    http://yanteb.peasantoid.org
  112. protocol hijacking, dumb devs by Onymous+Coward · · Score: 1

    It makes sense to be forgiving with bad HTML. At least to the point of rendering well. You could still report errors.

    http://en.wikipedia.org/wiki/Robustness_principle

    Standards hijacking (which Netscape also did) is IMHO the far worse influence. If you couple standards pollution with the fact that Microsoft held back advancing web tech (they let IE6 rot for five damned years) and a developer and user population that myopically don't care beyond how their website looks, and you end up with years of dev backflips and pain, lost time and money, and exploited machines.

    Developers are the ones who suffer the most, so you'd expect they would have some sense about the matter. Still, you find yourself arguing on Slashdot when they say things like "IE is the standard." These folks feed the zombie. Please do not feed the zombie.

    Can I just make a comment here? All of you who failed to recognize the importance of standards are to blame for IE6 lingering. And I'm rather sore at you. And you continued to trust Microsoft and thought that using IE7 and IE8 was a good idea. As if somehow the past 9 years weren't a righteous mess of painful web development and technological retardation. It could be that MS is in a corner finally, with a fifth to a third of browser share going to standards-compliant browsers, and so can't leverage IE to quash competition via protocol pollution, but that's no thanks to you.

    1. Re:protocol hijacking, dumb devs by Onymous+Coward · · Score: 1

      But let's take a moment to look at the downward swooshing line here:

      http://en.wikipedia.org/wiki/File:Usage_share_of_web_browsers_(Source_Net_Applications).svg

      Follow the line and say "Ahhhh......"

  113. Just give IE6 users something plain by thetoadwarrior · · Score: 1

    What sites need to do is support IE6 users but with little effort. Give them an alternative view of the site that's effectively just black text on a white background, like a print style sheet and put a warning at the top that they can't have the full experience until they get a real browser.

    Most people not upgrading are likely pirates who are too thick to get around WGA or use Firefox or backwards companies. Most websites don't really need to care about these people. If sites would stick together and give IE6 a bland but informative experience they'd be more likely to upgrade. As it is there is no real reason for these losers to upgrade.

  114. Re:95% Beats 5% by gd2shoe · · Score: 1

    what if a client has another web app they spent big money on that only runs on IE6,...

    If it's well designed, it should be easy to update the html, css, and javascript. They should be easy to find, and there should be good documentation. They did spend "big money" on it, after all.

    what if their worldwide network SOE is based on IE6?

    That's just a sign of incompetence at this point (or laziness, or both). And no, I would never phrase it that succinctly to a client. The rule of thumb is to develop pages to the latest two versions of each major browser. IT should therefore strive to be at the current version, but should never get more than one version behind.

    in most contexts, the customer is right. it's only in the event they aren't paying or that you don't NEED those users...

    If someone is waving actual money in front of your face, and insists on IE6 support, it still doesn't make them right. Oh, it can be negotiated, don't get me wrong. Doing so is just ignoring the real problem (whatever it is). Helping them understand what's really going on and building an upgrade plan is in their best interests in the long term. Most will appreciate the candor. Besides, it might mean more work for you in the short term (undoing whatever mess they've gotten themselves into).

    oh and the reason ie 1-5 isn't in use has nothing to do with websites removing support - it's because MS forced everyone to upgrade.

    Read what I wrote, please. And no, MS didn't "force" anybody to upgrade. At least, no more than they're doing now with XP and IE6. My point stands.

    --
    I won't join Slashcott. OTOH, If Beta goes live, I just won't be back until it's fixed. Sorry Dice.
  115. Graceful degradation is the key by Keeper+Of+Keys · · Score: 1

    We have reached a point where a degraded experience is justified is IE6. (IE7 is a whole different vat of acid - how can you justify not supporting the world's most popular browser?!)

    As a front-end developer, where once I would have doubled my workload if necessary to perfect layout and behaviour in IE6, now I am satisfied with a layout that isn't completely broken, and where the site is navigable.

  116. If only... by Keeper+Of+Keys · · Score: 1

    What a shame that it's utterly impossible to run another browser such as Chrome, Firefox, Safari or Opera on the same computer as your legacy IE - then you could use that for everyday browsing and just stick with IE for your proprietory app/intranet. Perhaps someone could work on that. They could even - and I know it sounds insane - create a virtualised computer so you could when needed run your old, insecure browser inside it on an old version of Windows, and have a modern OS with a more modern browser for everyday use.

  117. Chrome Frame...Anyone? by TheTyrannyOfForcedRe · · Score: 1

    I'm surprised that nobody has mentioned the Google Chrome Frame plugin for IE6/7/8. It's the easiest way to handle IE6 insanity and it gives the user a great experience. We've had good luck getting people to install it for TwitGrids. We were concerned about peoples' willingness to install a plugin to access the site but our worry was totally unfounded. Users could care less. A couple clicks and they're getting a zippy Chrome experience inside their dumpy old IE6/7 browser. The people who actually care which plugins are installed are already hitting us with Chrome or Firefox.

    --
    "Liechtenstein is the world's largest producer of sausage casings, potassium storage units, and false teeth."
  118. Re:be compatible or loose out by Rockoon · · Score: 1

    ... in the best way possible.

    ... to the most eyeballs as possible.

    --
    "His name was James Damore."
  119. Re:be compatible or loose out by Ltap · · Score: 1

    You seem to be confusing "web design" with "website creation". It's the job of the creator of the content to draw people; web design is simply designing the layout of a site in the best way possible. This shouldn't be compromised by having to "dummy down" the website for the slow little brother of web browsing, IE6. It'd be like eliminating the regular English Wikipedia in favour of Simple English, so that everyone could understand.

    --
    Yet Another Tech Blog
    (but so much more, including game and movie reviews)
    http://yanteb.peasantoid.org
  120. ChromeFrame by GWBasic · · Score: 1

    You could also consider prompting IE6 users to install ChromeFrame instead of completely ignoring them.

  121. Correction by AzuMao · · Score: 1

    THERE IS NO FUCKING EXCUSE for a browser not to follow web standards. If it fails to do so it should be promptly uninstalled. Anyone compelling to do otherwise should be shot. The end.

  122. Be Pragmatic by jeffrlamb · · Score: 1

    One of our four Core Values is "Be Pragmatic." We're a custom web development shop. For us the decision was easy. We figured out what supporting IE6 was costing in terms of extra time and effort in development and testing up front, what it was costing in terms of features we weren't able to deliver to clients, and what it was costing in incompatibility bugs and fixes going forward. This was a cost that we would have to pass along to our customers. It just didn't make any sense, even if IE6 use stayed high, it wasn't worth the cost. Eight months ago we dropped support for it, put the language in our contracts, and build IE6 detectors to notify users of IE6 in a friendly way that they shouldn't expect the site to function properly, but they were welcome to try to fight their way through it. We make sure we point it out to customers before they engaged with us and when challenged on it we explained that we were doing it to save them money and deliver a broader feature set to the majority of their audience. It has been a resounding success for us and our customers.

  123. Worst idea ever. Don't block based on browser. by Nillerz · · Score: 1

    It's good to see that I think "redirection" is a dick move. Seriously, I fucking hate that. When someone is at work and HAS to use IE, or if someone just doesn't feel like upgrading, or is running a computer that can't run modern browsers, asking them to upgrade is okay, but telling them that this site isn't accessible from their browser is just straight up pissy.

  124. Re:IE6 not supported? by MathiasRav · · Score: 1

    Learn the following riddle:

    ftp releases.mozilla.org
    cd pub/mozilla.org/firefox/releases/latest/win32/en-US/
    ls
    get "Firefox Setup 3.6.exe"

    And you don't even need to memorize the dir structure, since ls is right there. I've used this on just about every Windows XP/Vista machine I've had to bootstrap for a user. I heard rumors that built-in ftp isn't included in Windows anymore; in that case, you're out of luck. (or you could use the ftp client in Windows Explorer or whatchamacallit, if they kept that.)

  125. Re:I'm posting this from IE6. HELP! by SimonInOz · · Score: 1

    It hasn't helped your spelling, though. You need to be standards compliant there too.

    That's well-paid .... and by comparison, my well-paid day job is in a large corporation where they use IE6 on XP. And they seem a bit stunned anybody would use anything else.

    But I have managed to get the testers to use other browsers, so progress is being made.

    Your spelling, though, I despair of.

    --
    "Cats like plain crisps"
  126. Re:be compatible or loose out by Rockoon · · Score: 1

    You seem to be confusing "web design" with "website creation".

    You seem to be confusing "more effort" with "dumbing down." Hitting the most eyes possible DOES require more effort than being a lazy shit crying about web standards.

    --
    "His name was James Damore."
  127. Re:be compatible or loose out by Ltap · · Score: 1

    Worthwhile effort? Not ultimately. You think too much in the short term and towards personal benefit rather than improving the web as a whole.

    --
    Yet Another Tech Blog
    (but so much more, including game and movie reviews)
    http://yanteb.peasantoid.org
  128. Goverment agencies are sslllooowwww by SyZ · · Score: 1

    I build web interfaces for use by employees of state & county governments. Most users in large counties like Santa Clara or San Diego are using cookie-cutter machines that are 5-8 years old, locked down at IE6 on Windows 95. One is just getting ready for a bulk purchase of WinXP/IE7 machines (wow!) which took 3 years to plan for and are supposed to last for the next 5+ years.

    Sadly, IE6 support must continue for a few more years in many arenas, especially when dealing with slow governments.