Slashdot Log In
IE7 Released and Available for Download
Posted by
samzenpus
on Wed Oct 18, 2006 09:03 PM
from the here-it-is dept.
from the here-it-is dept.
Luis Escalante writes "After over a year and a half, IE7 has been released to the public as of Monday afternoon. Download it directly here. Word hit the streets after several mangers of the IE division posted on the IE blog."
Related Stories
[+]
Interviews: Quiz Microsoft's IE Team Leader 414 comments
About as timely an interview as you can get: Microsoft released Internet Explorer 7 last week, and today we're gathering questions for IE team general manager Dean Hachamovitch. As usual, please follow Slashdot interview rules when posting or moderating questions. We'll publish Dean's answers verbatim as soon as he replies.
This discussion has been archived.
No new comments can be posted.
IE7 Released and Available for Download
|
Log In/Create an Account
| Top
| 586 comments
(Spill at 50!) | Index Only
| Search Discussion
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
(1)
|
2
Security patches (Score:5, Funny)
(http://tommyd.beeze.com/)
"funny" but true (Score:5, Insightful)
(http://www.atomjax.com/)
If that's the first reaction people have, firefox has a pretty good chance.
Re:"funny" but true (Score:5, Interesting)
(http://www.isights.org/)
Maybe it IS integrated, after all...
Re:"funny" but true (Score:5, Funny)
It was bound to happen eventually: my computer became smarter than me....
Re:"funny" but true (Score:5, Interesting)
Since other browsers don't come pre-installed on Windows computers, IE tends to be a neccesity (whether Windows should make it easier for applications to rely on other 3rd party browsers is a separate issue). As such, a system reboot is neccesary as the rendering engine itself, exposed as a library, must be updated. Basically it just ensures nothing is using the browser control at the time of update.
Re:"funny" but true (Score:4, Insightful)
It's not like having the code on your machine to support playing DRM'd WMA files is somehow going to change what happens when you play MP3s or run other applications.
Re:"funny" but true (Score:4, Insightful)
(http://www.hensema.net/)
What if glibc contains a security hole? What's the faster, more reliable option: rebooting or manually restarting ALL processes?
On a desktop, does it really matter if your reboot or logout/login?
MSIE is first and foremost a html rendering library. Surely it's bundled with a webbrowsing frontend named msie.exe, but msie.exe is just one of many users of the library. On a major upgrade like this, how do you guarantee all applications are linked against the new version of the library? And please take into account that most of your user base are users, not admins.
Rebooting is just a sane thing to do. I've seen way too many rooted unix boxes with uptime > 2 years...
Re:"funny" but true (Score:5, Interesting)
(http://roo.no-ip.org/fish/)
The kind of issue you describe is solved automatically by the filesystem on Unix systems. If one process deletes a file that is opened by any process, then that file will be unlinked from the filesystem, but remain useable to the process that was already using the file. The file is not actually deleted from disk until all processes stop using it.
Among many other things, this means that you can safely upgrade a library, or even a program, that is running. The old processes will keep running the old library with no issues but any new processes that are created will automatically use the new one. Once all old processes die, the space used by the old library is returned to the filesystem.
There are gotchas with the 'Unix way', like correctly handling configuration files that are only open on startup and shutdown, but these issues can be handled with a bit of care.
Under Linux, people routinely upgrade Firefox or even the X windowing system while the programs themselves are still running. Afterwards, they simply restart the program in question to run the new version.
Re:WARNING (Score:5, Informative)
I already had RC2 installed on it. I downloaded the exe linked from the article and ran it.
It uninstalled the old IE, rebooted, worked on installing for about five minutes, then rebooted.
After that, it would get to the desktop without the menu bar at the bottom and show errors:
lsass.exe
The application failed to initialize properly. (0xc0000005) Click OK to terminate the application.
It had the same error for services.exe, and show them both twice.
After that, it does nothing.
This is just a warning for people. It screwed up mine, I assumed it was screwing up others, too.
Re:Security patches (Score:5, Insightful)
What's that sound?
Oh yeah, it's thousands of webmasters scrambling to test their sites on the latest mutilation of web standards.
Re:Security patches (Score:5, Informative)
(http://del.icio.us/jvz | Last Journal: Sunday December 03 2006, @12:45PM)
Re:Security patches (Score:5, Interesting)
HTTP content cannot be included in an HTTPS page (see the Internet Explorer Blog article).
Now expect the sound of thousands of admins whining as their critical mixed-content webpages fail to load, and the sound of millions of dollars of new servers and SSL accelerators to support SSL encryption of all the dancing bears on web servers that are signed into with HTTPS, but have all their image content on HTTP.
And oh, yes, expect the sounds of millions of tech support people with Indian accents getting phone calls from irate Americans and asking the inevitable question "Have you rebooted your computer, sir?" I hope Microsoft will pay for the new fiber-optic cable to support all the tech support calls.
This is going to be fun to watch, especially for web pages designed with old pieces of Microsoft design garbage like FrontPage.
Re:Opportunity for SSL vendors? (Score:5, Informative)
(http://slashdot.org/~panaceaa | Last Journal: Friday July 14 2006, @09:19PM)
"In addition, users will no longer see the so-called Mixed-Content prompt, which read: This page contains both secure and nonsecure items. Do you want to see the nonsecure items? IE7 renders only the secure content and offers the user the opportunity to unblock the nonsecure content using the Information Bar. This is an important change because very few users (or web developers) fully understand the security risks of rendering HTTP-delivered content within a HTTPS page."
So basically, if pages previously displayed the Mixed-Content prompt, now they'll act slightly differently. But there's very few serious corporations or online services that display that error message, so I believe the impact on F5's revenues will be minimal. Oh well, I thought I was on to something
Re:Security patches (Score:4, Informative)
(http://money.kevingunn.org/)
For sysadmins you have to decide when to push out IE7 to your great unwashed masses. Are there compatibility problems due to your corporate desktop configuration? You don't want to find out after you push it out to a few hundred or half million machines. It is significant because it breaks apart much of the previous integration, it uses a different security model, and it treats http content in https sessions differently. Making sure everything is going to work correctly in your environment is a big deal.
For web developers, you probably already have IE hacks running rampant through your sites. IE 7 adds another version to deal with. If the CSS handling really is much better, then you'll just need to exclude the many hacks needed for previous IE versions. If it is improved, but still not great, you'll have to tweak all the hacks so that your layout works with yet another partially-compliant IE version. Again, it's a big deal.
IE is part of your Windows system, like it or not. You can say "don't browse the web with IE", but you CAN'T completely avoid it on a Windows system without real difficulties. IE 6 is completely integrated into your system. Hopefully IE 7 is better. In ANY case, a system level upgrade on a functioning Windows box is nothing to take lightly.
Re:Security patches (Score:4, Informative)
For the best part of last year proeminent webdev figures have adviced people to stop using the * html hack. The better alternative is to make use of the conditional comments supported by all versions of Explorer and conditionally include an extra
Those conditionals allow you to pinpoint various IE versions accurately and also let your website validate properly (since all the IE hacks are included via a stylesheet which is technically commented out).
I'm not giving you links, do your own homework people.
Re:Security patches (Score:4, Funny)
I thought the burden of proof was usually on the guy who asserts something.
Re:What happened? (Score:5, Funny)
(http://255.255.255.255/)
Re:What happened? (Score:5, Funny)
(Last Journal: Thursday November 09 2006, @05:02PM)
Fist, I try the trained monkey thing were I just click things and see what happens. If that doesn't work, I try looking for help on the interweb, If that doesn't work I'll post something on a message board or maybe microsoft's help and support mailing list, If still nothing after a day or so, I just reload everything and talk about how tuff it was. I might even throw out some scarry words like virus, spyware and malware. Generaly it isn't any of them but grandma has heard just enough of it on the eveniing news to know it is something to be reconed with.
Now everything works and I'm the hero! You see, If i install linux, I would likley loose the chance of being the hero, possible the spot in her will, and if something actualy did mess up, I would have to call someone who actualy knows something to fix it. So windows is good, linux is bad.
Re:What happened? (Score:5, Insightful)
(http://www.insidebet.com/)
Let's see now.. It's the world's most widely used internet browser. It's probably the most commonly used application in the world. It marks the date when Microsoft finally started to worry about Firefox. It is a huge improvement over IE6. Yeah, I guess that makes this news more important, despite the fact that Slashdot is more Linux oriented.
Last but not least, your complaint is ignorant because not only is there no such thing as a race for news, but a lot of people might find the IE vs FF wars more interesting, too. You know, almost 90 percent of the world's users browse with IE, so there's a pretty good chance that at least a few Slashdot users will enjoy this story.
Re:What happened? (Score:5, Funny)
(http://www.jasongreb.com/)
Re:What happened? (Score:5, Insightful)
(Last Journal: Tuesday September 25, @06:21PM)
Re:What happened? (Score:5, Insightful)
(Last Journal: Wednesday January 31 2007, @02:25AM)
Re:What happened? (Score:5, Funny)
(http://www.getogg.org/)
Re:What happened? (Score:5, Funny)
(http://127.0.0.1/)
Re:What happened? (Score:5, Insightful)
(http://www.hyperborea.org/journal/ | Last Journal: Tuesday September 11, @05:30PM)
I'd say based on numbers alone, the new IE release qualifies as "stuff that matters."
(P.S. Thanks for the link -- that's great news!)
Re:What happened? (Score:5, Insightful)
(http://kavlon.org/ | Last Journal: Friday March 21 2003, @02:10PM)
Just say no to plug-ins for things like Flash. They can be useful at times but in the vast majority of uses they are only used because programmers are to lazy, stupid, or harried by lazy stupid bosses to use more compatible solutions that do the exact same things.
IE7 isn't that big of news to us geeks but it is a huge relief to us as it goes mainstream - it isn't as good as Firefox, Safari, or Opera but it is worlds better than IE6 and will make it much easier to develop nice websites without having to disable everything cool because it doesn't work in IE. Of course it'll be a few years before the majority of users have updated but at least the process has begun.
If only Microsoft wasn't so lame as to make it difficult for developers to run IE6 and IE7 side by side.
Re:What happened? (Score:5, Insightful)
(http://www.game-point.net/ | Last Journal: Monday November 14 2005, @09:19AM)
I don't think I agree with that analysis. With the arrival of things like YouTube and Google Video, it's starting to be used properly and implemented well. These companies get large numbers of people using their services mainly because they can pretty much assume Flash 7 is installed on the vast majority of browsers and they know they have it available. Would streaming video over the net be anywhere near as popular if they required an MPG-compatible embedded media player? I rather doubt it; we had those before, and they never got as popular.
Oh thank Christ.. (Score:5, Funny)
(http://rtfm.insomnia.org/~qg/ | Last Journal: Wednesday November 16 2005, @07:11AM)
Actually (Score:4, Insightful)
(Last Journal: Monday October 10 2005, @10:23AM)
Re:Actually (Score:5, Funny)
(http://2130706433/ | Last Journal: Thursday July 19, @10:29AM)
Watch me.
Re:Actually (Score:5, Interesting)
(http://jrascher.wordpress.com/ | Last Journal: Thursday June 22 2006, @10:09PM)
Re:Actually (Score:5, Interesting)
It's 2006, and Microsoft STILL hasn't learned how to simplify its interfaces? On the contrary, they're complicating them even further.
Re:Ah yes..... (Score:5, Funny)
chirp...
I'm not going to get it (Score:3, Funny)
(http://printeronfire.org/)
Several Mangers? (Score:5, Funny)
It's official--IE7 is the web browser used by Jesus!
Re:I can hear... (Score:4, Interesting)
(http://www.hyperborea.org/journal/ | Last Journal: Tuesday September 11, @05:30PM)
You're probably thinking of this table [webdevout.net].
User interface? (Score:4, Interesting)
(http://127.0.0.1/)
I think I'll stick to Firefox, thanks.
Re:User interface? (Score:5, Insightful)
Hmmm... a cleaner interface is a bad thing because it was Microsoft that innovated?
IE7 leaves much more space open on your screen for actual web browsing compared to IE6 (or Firefox, or most any browser minus lynx). Everything's accessible from a toolbar that uses the same icons Windows and IE have used since the dawn of time. And your precious menus that'll make it look like a "real Windows app" are hidden by your "alt" key.
Office 2007 uses a "ribbon" - a tabbed toolbar. It's pretty damn slick - you don't need your drawing tools open unless you're editing a picture, so you go to your drawing tab. (Or, you can use the toolbar that hovers by your mouse when you start editing a picture, or the formatting toolbar that appears by your mouse when you select text, etc.) It's so much cleaner, and intuitive.
But Microsoft changed things. They're not ugly and just-barely functional anymore. That's why I'm getting a Mac.
Re:User interface? (Score:4, Insightful)