Quantcast
Channel: Internet Explorer 8, 9, 10, 11 forum
Viewing all 10469 articles
Browse latest View live

IE 8 Crashes

0
0

Hello,

I would like help with this issue:

A machine with Windows XP PT Professional when access only a particulary website crahes and give this message:

"Iexplorer.exe application failure, version 8.0.6001.18702, module in pk2ias.dll failure, version 2.1.2.0,
fault address 0x0010ef16"

Thanks


Dropdown value list is coming on top of the dropdown

0
0

We have an web html application which has dropdowns in it. THe application works fine in IE8.0 , now our client is moving to IE 11.0, so we have to remediate all the issues in the application related to IE 11.0

We are facing 2 issue with the dropdowns on page. The list of values for the dropdown is coming on top of the dropdown, meaning you are not able to see the selected one in dropdown.the values list should normally down down the dropdown box.

The other issue which we are observing is that if there is only one value in the dropdown then we are not able to select the same or click on the same. It comes as default selected.

Please can you help us on the same.

IE Crashing when trying to Attach Files

0
0

Hello,

A user of mine that is needing to attach files online using IE 9 or 10 because the website is only work with those versions. When they try and attach an invoice it just crashes IE 9 and 10. Now I have tested it on a webmail site that is unrelated to that website and the same issue occurs.

I have tested to find out if it is the website with the issue or if it was something else interfering with it(Addons, Startup programs, Services)

Searched for this problem and did some of the suggested items but nothing has worked.(Resetting IE to default, Restore advanced settings, Delete Browsing history, upgrading/downgrading IE, run as admin, run in compatibility mode)

Currently don't have access to the computer today but any suggested ideas for when I get back to it to try and run would be highly appreciated because I have hit a brick wall.

Problem with dropdownlist selected item in IE11

0
0

Hi,

I am facing an issue while dynamically populating the dropdown. The list is retrieved fine. The value that needs to be set is defaulting to the item at location list[0]. No matter how many times i try to over ride the value, it still defaults. The wrong value is displayed in IE11- Enterprise and Compatibility modes.

It works fine in IE 11 but the page looks distorted since the application was previously designed for IE8.

Could anyone please guide on what the issue could be?

Unable to upgrade IE8 to IE 11 in windows server 2008 R2 datacenter

0
0

I am trying to upgrade IE8 to IE11 in a windows server and i am not able to proceed with the upgradation since it asks for the latest updates which it links me to the updates page of microsoft. I disabled the enhanced security and updated the security updates. Once that was done the System crashed and I had to rebuild the VM. can anybody help me with this issue ?

Website looks different

0
0

please help to find the reason why my website look different on IE8 but fine on IE10

www.turbo.pk

IE 10 & 11 Proxy prompt behaviour

0
0

I am working for a client, and they have recently rolled out Windows 7 64-bit machines, with IE 10 on them (IE 11 is not yet an option due to incompatibility with Citrix Receiver 3.4 PNAgent and Mcafee VSE).

The proxy in use here is a Clearswift web gateway appliance (linux) using NTLM authentication to the proxy. This then forwards requests to our ISA 2006 server.

We have two sites, Site A and Site B. Each site has it own subnet, and it's own Clearswift web gateway.

We also have 4 remote locations, with their own subnet, but not separate site as far as AD sites and services are concerned. All these remote location's subnets fall into Site A. We have leased WAN lines to interconnect all these locations, with Bluecoat WAN accelerator at the remote locations.

Internet works fine at either site A or B. The problem arises at ALL the remote locations ONLY WHEN using the Windows 7 machines with IE 10. Users always get a popup box asking for authentication to the Clearswift proxy. This does not occur at Site A or Site B. And it does NOT occur on the old Windows XP machines with IE 8 at the remote locations. And it also DOES NOT occur with firefox at the remote locations. I have tested with IE11 and the problem still exists.

So in short, if the following happen:

1. Windows 7 PC with IE10/11

2. Remote location, NOT site A or site B

3.Attempt to browse internet via IE10, using Clearswift web gateway as proxy

You will always get the authentication pop up box, unless you:

1. Use firefox

2. Use the ISA 2006 as proxy instead, skipping the Clearswift web gateway

The Clearswift web gateway is in use due to company policy that wishes to block inappropriate material. And firefox is not deployed to local machines again as part of company policy, none of which I am either allowed to change or even paid to.

I have opened a support call with Clearswift but I doubt I will get anywhere.

I can confirm that the Clearswift web gateway (which is just a linux appliance running on vmware) uses NTLM authentication.

The only thing I have found is this:

https://support.microsoft.com/kb/976918?wa=wsignin1.0

Which I have tried to no avail.

The only other variable that has not been accounted for is the Bluecoat SG210 WAN Accelerator at each of these remote locations. The two remaining tests for me to do are:

1. Bypass the WAN accelerator

2. Turn off the need for authentication on the clearswift web gateway

I would be keen to know if anyone else has had similar issues.

Windows 8.1 My Computer freeze after connect to internet

0
0

Hi i have big problem.

I bought computer HP Pavilion 23 touch smart and when i try connect to internet ( doesnt matter IE or google chrome ) my computer is freeze. I update everything what i could ( drivers to modem etc. and everything from Windows Update ) but i still have same problem.

This is brand new computer so its impossible that i have any virus / malware etc.

Sorry for my english but i am from Iceland :).



Website cant able to login via c# automated code in IE10

0
0

i Have created a web automation to extract some information but it works fine for IE8 but unable to login in IE 10 and IE 11

Here is the Code

code is written in c# windows application

visual studio 2010

Windows7

//code starts

SHDocVw.InternetExplorer ie = null;
ie = new SHDocVw.InternetExplorer();
                ie.Visible = true;
    
    ie.Navigate("websiteURL");
    while (ie.ReadyState != SHDocVw.tagREADYSTATE.READYSTATE_COMPLETE)
                {
                    System.Windows.Forms.Application.DoEvents();
                }

                doc = ie.Document;
                while (doc.readyState != "complete")
                {
                    Application.DoEvents();
                }

doc = ie.Document;
                    while (doc.readyState != "complete")
                    {
                        Application.DoEvents();
                    }

                   

           

              
                collection = doc.getElementsByTagName("INPUT");

                foreach (mshtml.IHTMLElement elem in collection)
                {
                    if (elem.getAttribute("id") != null)
                    {
                        if (elem.getAttribute("id").Equals("user-id")) // IE 8
                    
                        {
                           
                           elem.setAttribute("value", "1234567"); 
                                               
                          
                        }
                        else if (elem.getAttribute("id").Equals("user-password")) //IE 8
                     
                        {
                           
                                elem.setAttribute("value", "abcdefg");// for Englewood
                           
                           
                        }
                    }


                }


                collection = doc.getElementsByTagName("A");
                foreach (mshtml.IHTMLElement elem in collection)
                {
                    a = elem as MSHTML.HTMLAnchorElement;
                    if (a.innerText != null && a.id != null)
                    {
                       
                        if (a.id.ToString().Trim().Equals("lnkLandingPageLogin"))
                       
                        {
                            a.click();
                            break;
                        }
                    }
                }

This works fine For IE8 and I am able to login but in IE10 I am unable to login and also cannot able to enter login name and password Via this code..

at debug time code goes to all element but data does not enter in login field

webssearches

0
0

Hei!

How  I can remove malware webssearches in my browser?

Br Pasi

No more computer BS

0
0
Over 15 years with Hotmail and not a single phone number to call when you fuck up!

outlook live msn email print probelm

0
0

until 2 days ago everything was fine

automatic updates on my computer, so no clue which update created problem

when I attempt to print an email the log in screen for live.com shows up and says it cannot connect right now

format of URL to enter in Compatbility View list GPO

0
0

Hello,

Can I ask, for the following Internet Explorer group policy setting for Compatibility View:

Administrative Templates/Windows Components/Internet Explorer/Compatibility View/Use Policy List of Internet Explorer 7 sites

If it is ok to add the following URL format:

www.foo.com/bar/    

?

For example, from reading some articles, I know that the following formats are allowed:

foo.com - OK

bar.foo.com OK

but is it possible to add sub section with forward slash? As the top level is actually okay with IE11, just wanted to add that specific sub path.

Thank you

Regards

IEAK11 msi not doing anything

0
0

I created a IEAK11 deployment package with all our corporate settings. It creates an exe and an msi.

Exe works fine, msi does nothing. It runs, it completes (according to verbose log), but it doesn't modify the system in any way. After restart IE11 is not installed. Running it again just does the same thing.

I recreated the package so it showed all the dialog boxes and as far as I can tell it comes up with IE installation dialog box, but it disappears and nothing else happens. msiexec keeps running for another 5 mins or so, but nothing else happens.

I am at a loss. Me and my colleague recreated the package about 5 times so far, from scratch, and the issue is still the same.

EXE works. MSI does nothing.

Any help would be appreciated.

Cannot open attachment because your computer is low on resources.

0
0

I'm getting the error "Cannot open attachment because your computer is low on resources." when trying to open an attachment from OWA 2010 in Internet explorer (all versions). My computers is Windows 7 x64.

I've tried the regsvr32 fix for the ieproxy.dll and jsproxy.dll (jsproxy.dll is not there, but i hear this happens and is normal for some people) to no success.

Any help would be greatly appreciated.


Enterprise mode, how do I specify server port in SiteList?

0
0

Hi,

I have a old CRM system that must be run in Enterprise mode (it will be upgraded soon). The sitelist works fine through group policy, however the CRM is running on port :5555 how do I specify in the sitelist so the Enterprise mode start also on this port?

I have added the site to xml file but site list manager removes port number from url. The sites.xml file looks like this:

<rules version="9">
  <emie>
  <domain exclude="false">crm<path exclude="false">/company</path></domain>
  </emie>
</rules>

Now if I visit the site http://crm (which only contain IIS splash page), enterprise mode is enabled. However if I visit the real site on port 5555: http://crm:5555/ Enterprise mode is NOT on.

How can I make sitelist to force IE11 in enterprise mode on a different/specified port (or all ports) for a domain?


Internet Explorer 11 installation WMI Timeout KB2729094

0
0

Hey,

I have a lot of Win7 SP1 PCs here on which I receive an WMI timeout error during Internet Explorer 11 installation.
Error is the following (always with the same hotfix):

WMI query for Hotfixes timed out. Query string: 'Select HotFixID from Win32_QuickFixEngineering WHERE HotFixID="KB2729094"'  Error: 0x00040004 (262148).
If I run the same query in powershell it takes long, but it ends with success.
Get-WMIObject -Query $('Select HotFixID from Win32_QuickFixEngineering WHERE HotFixID="KB2729094"') -Namespace "ROOT\CIMv
What I already tried was to reinstall the hotfix.
I although applied hotfix KB2834140 of slow WMI and tried to repair the WMI with following batch:
sc config winmgmt start= disabled
net stop winmgmt /y
%SYSTEMDRIVE% >nul
cd %windir%\system32\wbem
For /f %%s in ('dir /b *.dll') do regsvr32 /s %%s
wmiprvse /regserver
winmgmt /regserver
net start winmgmt
for /f %%s in ('dir /b *.mof *.mfl') do mofcomp %%s
But all without success. If I reistall the device installation works without problems, but it is not possible for me to reinstall nearly all my devices newly.


Thank you for help in advance.

Internet favorites dissapeared, but their folders remain.

0
0

All my favourites, which were synced across 3 devices have disappeared. The folders that they were organised into remain, but are now empty. How do I recover them?

Downloading File in IE 9 causes the extension to change to .doc[1]

0
0

When I attempt to download a document on IE 9, the file extension changes to .doc[1]. I have not opened or saved the file before, so not sure what is causing the [1] to appear on the extension. Any help would be grateful.

Thanks,

D

Getting "Page not displayed issue" intermittently while accesing my application

0
0

Hi All,

I am facing an intermittent issue with IE 11 very less frequently. We have developed a web based application using OWS(Fatwire)

and Hybris. My problem is when I am trying to access the application with chrome and FF everything is fine. But when i am accessing it using IE11 i am getting this intermittent issue saying page cannot be displayed. This is happening in our UAT server and we were not able to figure it out. Any help on this would be appreciated. 

Thanks in advance

Viewing all 10469 articles
Browse latest View live




Latest Images