473,398 Members | 2,212 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

Buggy IE installation?

I have some problems with my IE 6 (and IE 5.5 separate) installation,
that I still (have to :-() use for website testing. 3 problems:

- IE 6 and even IE 7 (when I install standalone version) don't show
error dialogues any more. The error dialogue appears usually as popup
or when I click on the yellow traingle in the lower left corner (if
there's an error). I think this problem correlates with the security
setting level. IE 7 has just the levels middle -- high. After having
overwritten IE 6 with a normal IE 7 installation and then having
deinstalled it again, some features have stayed on, like that
navigator.userAgent is still IE 7, the security levels and the new
icon.

- More specific problem, if I use IE 5.5 where the errors still can pop
up: The indicated file is every time the main document, but not the
actual JS file where the error is thrown. I posted this question some
time ago, nobody could help me - IE toolbar does not help and any other
tools from Microsoft don't help me. What can I do to find my IE (not
FF) errors quicklier?

- Main problem: IE 5/6 use ActiveX instead of XMLHttpRequest. Could
someone test for me the following file until I have not solved problems
1 and 2? This is the file:
http://aka-fotos.de/research/uniajax/httprequest.php
Please click on the button labeled with "Normal Request" and then wait
what your IE does. You will see in the gray box on the right hand a
result text for test purpose. My IE 6 shows:

RESULT:

browser: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1;
InfoPath.2; .NET CLR 1.1.4322)
type: [object]
responseText: true
responseXML:

-------

I would like to know what your IE shows, it would be great help for me!

------

I hope that you can help me solving the problems (which are probably
yours, too), thank you,-)

Andi

Nov 13 '06 #1
3 1546
Hi,

webEater wrote:
I have some problems with my IE 6 (and IE 5.5 separate) installation,
that I still (have to :-() use for website testing. 3 problems:

- IE 6 and even IE 7 (when I install standalone version) don't show
error dialogues any more. The error dialogue appears usually as popup
or when I click on the yellow traingle in the lower left corner (if
there's an error). I think this problem correlates with the security
setting level. IE 7 has just the levels middle -- high. After having
overwritten IE 6 with a normal IE 7 installation and then having
deinstalled it again, some features have stayed on, like that
navigator.userAgent is still IE 7, the security levels and the new
icon.
In IE6, check the "Tools / Internet Options / Advanced / Display a
notification about every script error". I didn't install IE7 yet, sorry.

- More specific problem, if I use IE 5.5 where the errors still can pop
up: The indicated file is every time the main document, but not the
actual JS file where the error is thrown. I posted this question some
time ago, nobody could help me - IE toolbar does not help and any other
tools from Microsoft don't help me. What can I do to find my IE (not
FF) errors quicklier?
Unfortunately, that's a fact of life that error display in IE is very
bad and not precise. You have two alternatives:

1) Code standard and use FF to debug using the JavaScript console
2) If you really need to debug in IE only, install a IE compatible
script debugger. My personal favorite is Visual Studio 2005, which comes
in a free version too. When a script error occurs in IE, you'll be asked
if you want to debug using the installed script debugger, and it will
take you right to the error place.
- Main problem: IE 5/6 use ActiveX instead of XMLHttpRequest. Could
someone test for me the following file until I have not solved problems
1 and 2? This is the file:
http://aka-fotos.de/research/uniajax/httprequest.php
Please click on the button labeled with "Normal Request" and then wait
what your IE does. You will see in the gray box on the right hand a
result text for test purpose. My IE 6 shows:

RESULT:

browser: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1;
InfoPath.2; .NET CLR 1.1.4322)
type: [object]
responseText: true
responseXML:
In my IE6.0.2900.2180.xpsp_sp2_gdr.050301-1519:

RESULT:

browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET
CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04307.00)
type:
responseText: true
response as JSON: function parseQuery: function() { var pairs =
this.match(/^\??(.*)$/)[1].split('&'); return pairs.inject({}, func
function inspect: function(useDoubleQuotes) { var escapedString =
this.replace(/\\/g, '\\\\'); if (useDoubleQu function camelize:
function() { var oStringList = this.split('-'); if (oStringList.length
== 1) return oStringL function toArray: function() { return
this.split(''); } function toQueryParams: function() { var pairs =
this.match(/^\??(.*)$/)[1].split('&'); return pairs.inject({}, func
function unescapeHTML: function() { var div =
document.createElement('div'); div.innerHTML = this.stripTags();
function escapeHTML: function() { var div =
document.createElement('div'); var text = document.createTextNode(thi
function evalScripts: function() { return
this.extractScripts().map(function(script) { return eval(script) }); }
function extractScripts: function() { var matchAll = new
RegExp(Prototype.ScriptFragment, 'img'); var matchOne = new function
stripScripts: function() { return this.replace(new
RegExp(Prototype.ScriptFragment, 'img'), ''); } function stripTags:
function() { return this.replace(/<\/?[^>]+>/gi, ''); } function strip:
function() { return this.replace(/^\s+/, '').replace(/\s+$/, ''); }
function truncate: function(length, truncation) { length = length || 30;
truncation = truncation === undefined function scan: function(pattern,
iterator) { this.gsub(pattern, iterator); return this; } function gsub:
function(pattern, replacement) { var result = '', source = this, match;
replacement = argume
responseXML:

I would like to know what your IE shows, it would be great help for me!

------

I hope that you can help me solving the problems (which are probably
yours, too), thank you,-)
Not really. Developing with IE is very possible nowadays with a god
script debugger. You should have seen how it was with IE4 ;-)

Laurent
--
Laurent Bugnion, GalaSoft
Software engineering: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch
Nov 14 '06 #2


On 14 Nov., 08:24, Laurent Bugnion <galasoft...@bluewin.chwrote:
Hi,

webEater wrote:
I have some problems with my IE 6 (and IE 5.5 separate) installation,
that I still (have to :-() use for website testing. 3 problems:
- IE 6 and even IE 7 (when I install standalone version) don't show
error dialogues any more. The error dialogue appears usually as popup
or when I click on the yellow traingle in the lower left corner (if
there's an error). I think this problem correlates with the security
setting level. IE 7 has just the levels middle -- high. After having
overwritten IE 6 with a normal IE 7 installation and then having
deinstalled it again, some features have stayed on, like that
navigator.userAgent is still IE 7, the security levels and the new
icon.In IE6, check the "Tools / Internet Options / Advanced / Display a
notification about every script error". I didn't install IE7 yet, sorry.
OK, I had checked this box already. So I think it's because of IE7. I
remember it having been working some time ago.
- More specific problem, if I use IE 5.5 where the errors still can pop
up: The indicated file is every time the main document, but not the
actual JS file where the error is thrown. I posted this question some
time ago, nobody could help me - IE toolbar does not help and any other
tools from Microsoft don't help me. What can I do to find my IE (not
FF) errors quicklier?Unfortunately, that's a fact of life that error display in IE is very
bad and not precise. You have two alternatives:

1) Code standard and use FF to debug using the JavaScript console
2) If you really need to debug in IE only, install a IE compatible
script debugger. My personal favorite is Visual Studio 2005, which comes
in a free version too. When a script error occurs in IE, you'll be asked
if you want to debug using the installed script debugger, and it will
take you right to the error place.
I gonna try this out.
- Main problem: IE 5/6 use ActiveX instead of XMLHttpRequest. Could
someone test for me the following file until I have not solved problems
1 and 2? This is the file:
http://aka-fotos.de/research/uniajax/httprequest.php
Please click on the button labeled with "Normal Request" and then wait
what your IE does. You will see in the gray box on the right hand a
result text for test purpose. My IE 6 shows:
RESULT:
browser: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1;
InfoPath.2; .NET CLR 1.1.4322)
type: [object]
responseText: true
responseXML:In my IE6.0.2900.2180.xpsp_sp2_gdr.050301-1519:

RESULT:

browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET
CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04307.00)
type:
responseText: true
response as JSON: function parseQuery: function() { var pairs =
this.match(/^\??(.*)$/)[1].split('&'); return pairs.inject({}, func
function inspect: function(useDoubleQuotes) { var escapedString =
this.replace(/\\/g, '\\\\'); if (useDoubleQu function camelize:
function() { var oStringList = this.split('-'); if (oStringList.length
== 1) return oStringL function toArray: function() { return
this.split(''); } function toQueryParams: function() { var pairs =
this.match(/^\??(.*)$/)[1].split('&'); return pairs.inject({}, func
function unescapeHTML: function() { var div =
document.createElement('div'); div.innerHTML = this.stripTags();
function escapeHTML: function() { var div =
document.createElement('div'); var text = document.createTextNode(thi
function evalScripts: function() { return
this.extractScripts().map(function(script) { return eval(script) }); }
function extractScripts: function() { var matchAll = new
RegExp(Prototype.ScriptFragment, 'img'); var matchOne = new function
stripScripts: function() { return this.replace(new
RegExp(Prototype.ScriptFragment, 'img'), ''); } function stripTags:
function() { return this.replace(/<\/?[^>]+>/gi, ''); } function strip:
function() { return this.replace(/^\s+/, '').replace(/\s+$/, ''); }
function truncate: function(length, truncation) { length = length || 30;
truncation = truncation === undefined function scan: function(pattern,
iterator) { this.gsub(pattern, iterator); return this; } function gsub:
function(pattern, replacement) { var result = '', source = this, match;
replacement = argume
responseXML:
I would like to know what your IE shows, it would be great help for me!
To your last response: I see that responseXML shows nothing - like in
my IE6. So I think IE6 is not able to read xml out of the response.
------
I hope that you can help me solving the problems (which are probably
yours, too), thank you,-)Not really. Developing with IE is very possible nowadays with a god
script debugger. You should have seen how it was with IE4 ;-)
IE 4 was a really good browser - in contrast to netscape 4, which was a
browser with an own language ,)

Thank you for your help!

Andi

http://run.aka-fotos.de
http://akidee.de/

Nov 14 '06 #3
webEater said the following on 11/14/2006 4:21 AM:
>
On 14 Nov., 08:24, Laurent Bugnion <galasoft...@bluewin.chwrote:
>Hi,

webEater wrote:
>>I have some problems with my IE 6 (and IE 5.5 separate) installation,
that I still (have to :-() use for website testing. 3 problems:
- IE 6 and even IE 7 (when I install standalone version) don't show
error dialogues any more. The error dialogue appears usually as popup
or when I click on the yellow traingle in the lower left corner (if
there's an error). I think this problem correlates with the security
setting level. IE 7 has just the levels middle -- high. After having
overwritten IE 6 with a normal IE 7 installation and then having
deinstalled it again, some features have stayed on, like that
navigator.userAgent is still IE 7, the security levels and the new
icon.In IE6, check the "Tools / Internet Options / Advanced / Display a
notification about every script error". I didn't install IE7 yet, sorry.

OK, I had checked this box already. So I think it's because of IE7. I
remember it having been working some time ago.
If you didn't get error dialogs with IE7 (or even IE6) then something
went bad wrong with the install. I have IE7 and have never had a problem
getting error dialogs from it.

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Nov 14 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Hai-Chu Hsu | last post by:
Hi, I want to restore my databases from the old SQL Server installation into a new installation of SQL Server. My new installation of SQL Server has different data path from the old...
1
by: 3f | last post by:
Hello; We have made a web application that people can download from our web site and installed on: Windows XP Windows 2000 Professional Windows 2003 Server Windows 2000 Server
5
by: InstallAware | last post by:
For Press Inquiries: Sinan Karaca InstallAware Software Corporation 336 Guerrero Street, San Francisco CA 94103 415 358 4094 (voice/fax) sinank@installaware.com http://www.installaware.com/ ...
2
by: mb12036 | last post by:
All- Having a problem installing a DB2 client on a machine running AIX version 5.0. Client appeared to install one time succesfully, then was uninstalled and a reinstall was attempted. For...
16
by: pj | last post by:
(Was originally, probably wrongly, posted to the vc subgroup.) (This doesn't appear to be a c# problem, but a problem with a bug in the Visual Studio c# compiler, but, any help will be welcome...)...
3
by: VK | last post by:
Internet Explorer 7 beta 2 preview CNET Editor review: <http://reviews.cnet.com/Internet_Explorer_7_for_XP_SP2_Beta_2/4505-3514_7-31454661-2.html?tag=nl.e415> Summary (my personal review...
1
by: ImageAnalyst | last post by:
Yay!!! They fixed this for VS2005. You can now set the default installation to be "Everyone" instead of "Just Me" and you can control whether you even want those radio button installed in your...
9
by: Ryan | last post by:
Hi all, I'm playing with Lutz Roeders Reflector and have found several areas where I think there are issues in the framework libraries. I can't see how the following should work as expected and...
2
by: salad | last post by:
Hi. I have some questions regarding the distribution and installation of an application. My current application is written in A97. I figure its time the application is upgraded to A2003 to...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.