473,657 Members | 2,733 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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.userA gent 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 1557
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.userA gent 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.0 50301-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(useDou bleQuotes) { var escapedString =
this.replace(/\\/g, '\\\\'); if (useDoubleQu function camelize:
function() { var oStringList = this.split('-'); if (oStringList.le ngth
== 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.create Element('div'); div.innerHTML = this.stripTags( );
function escapeHTML: function() { var div =
document.create Element('div'); var text = document.create TextNode(thi
function evalScripts: function() { return
this.extractScr ipts().map(func tion(script) { return eval(script) }); }
function extractScripts: function() { var matchAll = new
RegExp(Prototyp e.ScriptFragmen t, 'img'); var matchOne = new function
stripScripts: function() { return this.replace(ne w
RegExp(Prototyp e.ScriptFragmen t, '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(patter n,
iterator) { this.gsub(patte rn, iterator); return this; } function gsub:
function(patter n, 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...@bl uewin.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.userA gent 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?Unfor tunately, 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.0 50301-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(useDou bleQuotes) { var escapedString =
this.replace(/\\/g, '\\\\'); if (useDoubleQu function camelize:
function() { var oStringList = this.split('-'); if (oStringList.le ngth
== 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.create Element('div'); div.innerHTML = this.stripTags( );
function escapeHTML: function() { var div =
document.create Element('div'); var text = document.create TextNode(thi
function evalScripts: function() { return
this.extractScr ipts().map(func tion(script) { return eval(script) }); }
function extractScripts: function() { var matchAll = new
RegExp(Prototyp e.ScriptFragmen t, 'img'); var matchOne = new function
stripScripts: function() { return this.replace(ne w
RegExp(Prototyp e.ScriptFragmen t, '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(patter n,
iterator) { this.gsub(patte rn, iterator); return this; } function gsub:
function(patter n, 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...@bl uewin.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.use rAgent 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.javas cript 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
3186
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 installation. In addition, the data owners of some databases in the old SQL Server installation are not dbo. I have backups for all the databases in the old installation SQL Server. Can anyone tell me how to restore my databases from the old SQL Server
1
3039
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
2082
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/ InstallAware First (and Only) Installation Toolkit to Support .NET 2.0
2
6259
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 some reasons, it does not complete the reinstall. See the status report from the GUI installer at the end of this note. Errors are towards the bottom. Everything installed in /usr/opt for DB2 but the sqllib folder that is supposed to be created in...
16
2846
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...) Oh, I forgot to list the error messages; I would be delighted if someone could explain how to deduce which line number in which file is the one that the VC compiler cannot handle. Actually I'm using C#, but the only post I could find about...
3
2339
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 interpretation): "Half stolen from Firefox, half is buggy - including the stolen part". Download: <http://www.download.com/Internet-Explorer-7/3000-2356_4-10497433.html?tag=nl.e415>
1
12527
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 Setup program. >From the Documentation http://msdn2.microsoft.com/en-us/library/5f981xa1.aspx =========================================================== "The InstallAllUsers property for a deployment project determines whether an application is...
9
1335
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 the compiler gives me an error on the 'text1 = text1...' line. Is it really this buggy (this particular bug is in several places) or am I missing something? You can see that that code has a possibility of crashing if the property has a .. in it....
2
2010
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 remove potential installation problems in the future. I have seen references to SageKey and Wise. Are Sage and Wise and single, unique development tool or are they separate applications? Are they the best tools to use when distributing an Access...
0
8825
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8732
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8503
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7327
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6164
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5632
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4152
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
1955
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1615
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.