- Fix: Localhost unavailable with ESET NOD32
-
Posted by oVan on Friday, March 21, 2008 | PermaLink | 4 comments
Developers using Visual Studio will probably encounter this problem after installing ESET NOD32 antivirus or ESET Smart Security Antivirus+Firewall: browsing the web with Internet Explorer works fine except for websites you develop yourself (localhost).
Disabling the firewall or antivirus features doesn't solve this problem, however replacing localhost with 127.0.0.1 (or using FireFox) does solve it.
The real problem is easily fixed though.
Windows Vista:
In the start menu, type "notepad %system%\drivers\etc\hosts" and instead of pressing enter, right-click on the notepad icon in the top of the list (see screenshot). In the context menu you must click on "Run as administrator".
Windows XP and 2000:
Open a command prompt (cmd.exe) and type these commands:
cd %system%\drivers\etc
attrib -r -h -s hosts
notepad hosts
You will then see the following file in notepad:
The last line contains the problem. It reads:
::1 localhost
You can either remove this line and save the file, or comment it out with a pound/hash character #. Voila, fixed!
Labels: Administrator, fix, IE, IE6, IE7, Internet Explorer, Internet Explorer 7, Microsoft, problem, Vista, Visual Studio 2005, Visual Studion 2008, vs2005, vs2008, web develoment, Windows, Windows Vista
- New VirtualPC images released for IE6 and IE7
-
Posted by oVan on Tuesday, August 21, 2007 | PermaLink | 0 commentsAs expected, Microsoft has released updated VirtualPC hard disk images with IE6 and IE7. These contain a pre-activated Windows XP SP2, and either IE6 or IE7 and the IE7 Readiness Toolkit. For more information on installing and using these images, read the blog post about running IE6 and IE7 on a single machine.
These new images will expire on December 7, 2007. By that time Microsoft will probably release updated images again.
Remember that you can download Microsoft Virtual PC 2007 for free!Labels: IE, IE6, IE7, Internet Explorer, Internet Explorer 7, Virtual PC 2007, VPC, VPC2007
- IE Developer Toolbar 1.0 Final Released
-
Posted by oVan on Friday, May 11, 2007 | PermaLink | 0 commentsMicrosoft has released the final release (v1.0) of the Internet Explorer Developer Toolbar.
For those of you who are not familiar with the IE Developer Toolbar, here's a bit of info:Overview
The Internet Explorer Developer Toolbar provides several features for exploring and understanding Web pages. These features enable you to:
- Explore and modify the document object model (DOM) of a Web page.
- Locate and select specific elements on a Web page through a variety of techniques.
- Selectively disable Internet Explorer settings.
- View HTML object class names, ID's, and details such as link paths, tab index values, and access keys.
- Outline tables, table cells, images, or selected tags.
- Validate HTML, CSS, WAI, and RSS web feed links.
- Display image dimensions, file sizes, path information, and alternate (ALT) text.
- Immediately resize the browser window to a new resolution.
- Selectively clear the browser cache and saved cookies. Choose from all objects or those associated with a given domain.
- Display a fully featured design ruler to help accurately align and measure objects on your pages.
- Find the style rules used to set specific style values on an element.
- View the formatted and syntax colored source of HTML and CSS.
- The Developer Toolbar can be pinned to the Internet Explorer browser window or floated separately.
Although there aren't any major new features since beta 3, they've added some reliability fixes and polished the whole toolbar a bit.
Release Notes:- If Internet Explorer is running while you install the Developer Toolbar,
you must restart Internet Explorer before the Developer Toolbar will work properly. - The Developer Toolbar icon may not be visible by default. If you
do not see it after restarting Internet Explorer, click the right-facing
arrows at the end of the IE7 command bar to view all available toolbar
buttons. - Some menu items are unavailable (grayed out) when running Internet
Explorer in Protected Mode on Windows Vista. To use those options,
temporarily turn off Protected Mode or right-click the Internet Explorer
icon in the Programs menu and choose 'Run as administrator'. - In IE6 or in IE7 with tabbed browsing off, using the validation links
will navigate the current window to the validation page. To launch the
validation links in a new window, open the Tools menu, click Internet Options..., and uncheck "Reuse windows for launching shortcuts" in the Advanced tab, or use IE7 with tabbed browsing enabled.
» Download Microsoft Internet Explorer Developer Toolbar 1.0Labels: CSS, developer, DOM, html, IE, IE6, IE7, Internet Explorer 7, Microsoft, toolbar
- Quickly Change Tabs
-
Posted by oVan on Thursday, May 10, 2007 | PermaLink | 0 commentsFor all keyboard lovers out there, here's a quick tip on changing the tabs in your browser: you all know that you can create a new tab with Ctrl-T, and that you can jump between the tabs with Ctrl-Tab...
But did you know that you can quickly focus a specific tab with Ctrl and the position of the tab? So for the first tab you type Ctrl-1, for the second one Ctrl-2, and so on.
This works in Internet Explorer 7 and FireFox 2. Maybe other browsers (Opera, Safari, ...) work too, so if you can test and verify this, let us know via the comments.Labels: Firefox, IE7, Internet Explorer 7, keyboard, shortcut
- CSS compatibility changes in IE7
-
Posted by oVan on Friday, November 24, 2006 | PermaLink | 0 commentsAnother interesting list in MSDN to read and store in your favorites: CSS Compatibility in Internet Explorer 7
Labels: compatibility, CSS, hack, IE7, Internet Explorer 7, MSDN, patch
