Apex in IFRAME cookie problem (P3P IE6+)

Hi All,
I am having a problem with IE not displaying my content within an IFrame - due to IE not trusting the Apex cookies.
This problem was resolved on the Apex forum in 2009 - https://forums.oracle.com/thread/887792
The solution was to set the P3P policy in the web server header response :
For example
1. PHP
header('P3P:CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"');
2. ASP.NET
HttpContext.Current.Response.AddHeader("p3p","CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\"");
3. Apex solution
I add this section to httpd.conf (Apache proxy)
*<IfModule mod_headers.c>*
Header set P3P "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR NID CUR ADM DEV OUR BUS\""
*</IfModule>*
Now I have the same problem but I am hosted in the cloud.
Here is a page with my content embedded - (Bradford Uni) : test widget - SACU
This works fine on chrome/firefox...
Is there any other way to set P3P header in the database cloud ?
Big thanks
Steve

Hi Christian,
Thanks for looking in to this...
This did not fix it :-(
However, I used    to inspect the response headers and found that unless the page I was attempting to access was LOGIN_DESKTOP then the response was : 302 Moved Temporarily
Content (encoded: 0.24 KiB / decoded: 0.37 KiB)
<html><head><title>302 Moved Temporarily</title></head> <body bgcolor="#FFFFFF"> <p>This document you requested has moved temporarily.</p> <p>It's now at <a href="https://production001-demandanalysis.db.em1.oraclecloudapps.com/apex/f?p=20300147:111:0:::::">https://production001-demandanalysis.db.em1.oraclecloudapps.com/apex/f?p=20300147:111:0:::::</a>.</p> </body></html>
This may have been causing the error in the iFrame...
So I changed the Home URL and Login URL to : f?p=&APP_ID.:111:0
and it now appears to load fine :-)
Thanks again
Steve

Similar Messages

  • Apex in IFRAME login problem (P3P IE6+)

    Hi
    I have problem with Apex application in Frame. I can't login to my APEX app because IE6 or 7 blocked cookies. I browsed internet about it and problem is in P3P.
    At this time I add to my Apex app this meta tag (changed Templates)
    *<meta http-equiv="P3P" content='CP="IDC DSP COR CURa ADMa OUR IND PHY ONL COM STA"'>*
    but problem is still.
    Also I found in the Internet some solution for other platform:
    For example
    1. PHP
    header('P3P:CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"');
    2. ASP.NET
    HttpContext.Current.Response.AddHeader("p3p","CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\"");
    *3. APEX*
    *?????????? -- some ideas?*
    Can you help me ??
    Regards
    Edited by: AndyPol on 2009-04-15 00:54

    Hi
    Any APEX app requires authentication (even if that authentication is 'No Authentication') of some kind. Are you trying to access it from another web page or using SSO, or is your custom authentication scheme referencing something tabular within your database?
    Cookie management is handled by the browser and therefore not necessarily applicable to the APEX app that you are trying to access unless you are already authenticated within the same session.
    I'm not sure what exactly you are trying to achieve in your web page, accessing an Apex region or page within an iframe without any kind of authentication within the Apex app itself?
    Sorry, if I have misunderstood, maybe you could post an example on apex.oracle.com and show me what you are trying to do and we should be able to help.
    Cheers
    Ben

  • Few questions about apex + epg and cookie blocked by IE6

    Hi,
    I would like to ask a few questions about apex and epg.
    I have already installed and configured apex 3.2 on oracle 10g (on my localhost - computer name 'chen_rong', ip address -192.168.88.175 ), and enable anonymous access xdb http server.
    now,
    1. I can access 'http://chen_rong' , 'http://localhost' , 'http://192.168.88.175' without input username / password for realm 'XDB' in IE6;
    2. I can access 'http://localhost/apex/apex_admin' , 'http://192.168.88.175/apex/apex_admin' , and I can be redirected into apex administation page after input admin/<my apex admin password> for realm 'APEX' in IE6;
    3. I can access 'http://chen_rong/apex/apex_admin' in IE6, but after input admin/password , I can not be redirected into administation page, because the cookie was blocked by IE6.
    then, the first question is :
    Q1: What is the difference among 'http://chen_rong' , 'http://localhost' , 'http://192.168.88.175' ? I have already include site 'chen_rong' into my trusted stes! why the cookie was blocked by IE6. I have already tried firefox and google browser, both of them were ok for 'chen_rong', no cookie blocked from site 'chen_rong'!
    and,
    1. I have tried to use the script in attachment to test http authentication and also want to catch the cookie by utl_http .
    2. please review the script for me.
    3. I did:
    SQL> exec show_url('http://localhost/apex/apex_admin/','ADMIN','Passw0rd');
    HTTP response status code: 401
    HTTP response reason phrase: Unauthorized
    Please supplied the required Basic authentication username/password for realm XDB for the Web page.
    Web page http://localhost/apex/apex_admin/ is protected.
    MS-Author-Via: DAV
    DAV: 1,2,<http://www.oracle.com/xdb/webdav/props>
    Server: Oracle XML DB/Oracle Database
    WWW-Authenticate: Basic realm="XDB"
    Date: Tue, 04 Aug 2009 02:25:15 GMT
    Content-Type: text/html; charset=GBK
    Content-Length: 147
    ======================================
    PL/SQL procedure successfully completed
    4. I also did :
    SQL> exec show_url('http://localhost/apex/apex_admin/','ANONYMOUS','ANONYMOUS');
    HTTP response status code: 500
    HTTP response reason phrase: Internal Server Error
    Check if the Web site is up.
    PL/SQL procedure successfully completed
    SQL> exec show_url('http://localhost/apex/apex_admin/','SYSTEM','apexsite');
    HTTP response status code: 401
    HTTP response reason phrase: Unauthorized
    Please supplied the required Basic authentication username/password for realm APEX for the Web page.
    Web page http://localhost/apex/apex_admin/ is protected.
    Content-Type: text/html
    Content-Length: 147
    WWW-Authenticate: Basic realm="APEX"
    ======================================
    PL/SQL procedure successfully completed
    my second questions is :
    Q2: After I entered into realm 'XDB', I still need went into realm'APEX'. how could I change the script show_url to accomplish these two tasks and successfully get the cookie from site.
    the show_url script is as following:
    CREATE OR REPLACE PROCEDURE show_url
    (url IN VARCHAR2,
    username IN VARCHAR2 DEFAULT NULL,
    password IN VARCHAR2 DEFAULT NULL)
    AS
    req UTL_HTTP.REQ;
    resp UTL_HTTP.RESP;
    name VARCHAR2(256);
    value VARCHAR2(1024);
    data VARCHAR2(255);
    my_scheme VARCHAR2(256);
    my_realm VARCHAR2(256);
    my_proxy BOOLEAN;
    cookies UTL_HTTP.COOKIE_TABLE;
    secure VARCHAR2(1);
    BEGIN
    -- When going through a firewall, pass requests through this host.
    -- Specify sites inside the firewall that don't need the proxy host.
    -- UTL_HTTP.SET_PROXY('proxy.example.com', 'corp.example.com');
    -- Ask UTL_HTTP not to raise an exception for 4xx and 5xx status codes,
    -- rather than just returning the text of the error page.
    UTL_HTTP.SET_RESPONSE_ERROR_CHECK(FALSE);
    -- Begin retrieving this Web page.
    req := UTL_HTTP.BEGIN_REQUEST(url);
    -- Identify yourself.
    -- Some sites serve special pages for particular browsers.
    UTL_HTTP.SET_HEADER(req, 'User-Agent', 'Mozilla/4.0');
    -- Specify user ID and password for pages that require them.
    IF (username IS NOT NULL) THEN
    UTL_HTTP.SET_AUTHENTICATION(req, username, password, 'Basic', false);
    END IF;
    -- Start receiving the HTML text.
    resp := UTL_HTTP.GET_RESPONSE(req);
    -- Show status codes and reason phrase of response.
    DBMS_OUTPUT.PUT_LINE('HTTP response status code: ' || resp.status_code);
    DBMS_OUTPUT.PUT_LINE
    ('HTTP response reason phrase: ' || resp.reason_phrase);
    -- Look for client-side error and report it.
    IF (resp.status_code >= 400) AND (resp.status_code <= 499) THEN
    -- Detect whether page is password protected
    -- and you didn't supply the right authorization.
    IF (resp.status_code = UTL_HTTP.HTTP_UNAUTHORIZED) THEN
    UTL_HTTP.GET_AUTHENTICATION(resp, my_scheme, my_realm, my_proxy);
    IF (my_proxy) THEN
    DBMS_OUTPUT.PUT_LINE('Web proxy server is protected.');
    DBMS_OUTPUT.PUT('Please supply the required ' || my_scheme ||
    ' authentication username/password for realm ' || my_realm ||
    ' for the proxy server.');
    ELSE
    DBMS_OUTPUT.PUT_LINE('Please supplied the required ' || my_scheme ||
    ' authentication username/password for realm ' || my_realm ||
    ' for the Web page.');
    DBMS_OUTPUT.PUT_LINE('Web page ' || url || ' is protected.');
    END IF;
    ELSE
    DBMS_OUTPUT.PUT_LINE('Check the URL.');
    END IF;
    -- UTL_HTTP.END_RESPONSE(resp);
    -- RETURN;
    -- Look for server-side error and report it.
    ELSIF (resp.status_code >= 500) AND (resp.status_code <= 599) THEN
    DBMS_OUTPUT.PUT_LINE('Check if the Web site is up.');
    UTL_HTTP.END_RESPONSE(resp);
    RETURN;
    END IF;
    -- HTTP header lines contain information about cookies, character sets,
    -- and other data that client and server can use to customize each
    -- session.
    FOR i IN 1..UTL_HTTP.GET_HEADER_COUNT(resp) LOOP
    UTL_HTTP.GET_HEADER(resp, i, name, value);
    DBMS_OUTPUT.PUT_LINE(name || ': ' || value);
    END LOOP;
    -- Read lines until none are left and an exception is raised.
    --LOOP
    -- UTL_HTTP.READ_LINE(resp, value);
    -- DBMS_OUTPUT.PUT_LINE(value);
    --END LOOP;
    UTL_HTTP.GET_COOKIES(cookies);
    dbms_output.put_line('======================================');
    FOR i in 1..cookies.count LOOP
    IF (cookies(i).secure) THEN
    secure := 'Y';
    ELSE
    secure := 'N';
    END IF;
    -- INSERT INTO my_cookies
    -- VALUES (my_session_id, cookies(i).name, cookies(i).value,
    -- cookies(i).domain,
    -- cookies(i).expire, cookies(i).path, secure, cookies(i).version);
    dbms_output.put_line('site:'||url);
    dbms_output.put_line('cookies:');
    dbms_output.put_line('name:'||cookies(i).name);
    dbms_output.put_line('value:'||cookies(i).value);
    dbms_output.put_line('domain:'||cookies(i).domain);
    dbms_output.put_line('expire:'||cookies(i).expire);
    dbms_output.put_line('path:'||cookies(i).path);
    dbms_output.put_line('secure:'||secure);
    dbms_output.put_line('version:'||cookies(i).version);
    END LOOP;
    UTL_HTTP.END_RESPONSE(resp);
    EXCEPTION
    WHEN UTL_HTTP.END_OF_BODY THEN
    UTL_HTTP.END_RESPONSE(resp);
    END;
    /

    I use oracle database enterprise edtion 10.2.0.3. I have already figured out the epg on 10.2.0.3 to support apex 3.2.
    And as I described above, the apex site works fine for ip address , and localhost. but the cookie will be blocked by IE6, if I want to access the site by 'http://computername:port/apex/apex_admin'. This problem does not occured in firefox and google browser. Could someone give me answer?

  • Cookie problem on IE6

    I have a problem where my cookie doesn't get set on IE6. It works fine on Firefox and IE5. It works sometimes on IE but not always. When it was not set, I noticed that "set-cookie" was not in the response header. Anyone knows how this could happen?
    Here's my code:
    Cookie cookie = new Cookie("id", "3135");
    cookie.setDomain".mysite.com");
    cookie.setMaxAge(-1);
    cookie.setPath("/");
    response.addCookie(cookie);
    Thanks!

    Which Firefox/Chrome do you use ? Which site is that you mentioned ? Is there any output if you start these from console? Could you compare the output in terminal when you run opera and firefox e.g.?

  • Cookie problem in APEX 4.1.1

    After upgrading from APEX 4.1 to 4.1.1 the first time a user visits a particular application they see a line at the top of the page of the form:
    "Set-Cookie: PUBLIC_WWV_CUSTOM-F_1047528391177278_666=1316663583787701; HttpOnly "
    As soon as they refresh the page, the text disappears. I believe this is related to the issue of larger cookie sizes in 4.1.1 that a lot of people seem to be experiencing with NTLM authenthication. However, this is occuring at the login page prior to authentication. There is an application process with a processing point of "On New Instance (new session)" with the following code to create a cookie:
    owa_util.mime_header('text/html', FALSE);
    owa_cookie.send(
    name => 'PPP_SESSSION',
    value => to_char(v('APP_SESSION')),
    domain => '.dooda.com',
    path => '/');
    owa_util.http_header_close;
    As soon as I remove that process, the issue goes away. Of course that raises more troublesome issues. :)
    The workaround for the NTLM/cookie problem doesn't seem applicable here. Does anyone have any suggestions?
    Am I leaving out any helpful information? (I'm not so familiar with APEX and I don't know jack about web development).
    Thanks for any help.
    Chris

    Chris,
    This is a little bit of a guess here, but can you try removing the line:
    owa_util.http_header_close;
    from your On New Instance process?
    What appears to be happening is APEX is attempting to write the session cookie, but the HTTP headers have already been closed.
    Joel

  • Can't load Netflix - Firefox says something about cookie problem and recommends try again button. ("The page isn't redirecting properly Firefox has detected tha

    Can't load Netflix - Firefox says something about cookie problem and recommends try again button. ("The page isn't redirecting properly Firefox has detected that the server is redirecting the request for this address in a way that will never complete. This problem can sometimes be caused by disabling or refusing to accept cookies.)" Hit the try again button repeated ly - nothing???

    I decided to give Netflix a call about this problem.
    On a recording while waiting for a support rep, it said if you're having problems logging in to go to:
    http://www.netflix.com/clearcookies
    It works for me. Now I have to logon everytime I go to their site though versus it had kept me already logged in before this problem.
    I will be using that link to get to their site until they get it fixed.

  • Problems with ie6

    Hi,
    i develop page with visual web pack, it contain many buttons with actions etc.
    it work fine with ie7 and firefox but have problems with ie6, sometimes i click the button i see the progrss bar of the browser but it does not occur anything, sometimes i click three or four times and in the next it works, sometimes i click another button and it return the result of two action, sometimes nothing change
    this occur with all buttons or submitted value of checkbox for example
    i have ie version : 6.0.2900.2180.xsp_sp2_qfe.070227-2300
    Walid

    In addition to what Elizabeth said, you have a ton of HTML errors of bad tags and other issues which could cause serious issues in the way your site is viewed and functions:
    http://validator.w3.org/
    Your CSS is fairly valid.  Only one problem.  Anything element that is floated MUST have a width declared to be valid:
    http://jigsaw.w3.org/css-validator/

  • Cookies problem

    hi..
    i have a cookie problem in my jsp page..everytime it causing problem...if the file is not in existence it displays it contents...
    i have a jsp page with servlets...
    help me

    i still fail to see why you call it a cookie problem.
    Make sure the jsp result is not cached in your browser or firewall.
    Try redeploying your entire web-app.

  • Cookie problem with this forum?

    Today I am no longer able to connect with this forum with my Safari browser. All I receive in a page with the 6 categories and nothing else. Also, I am not able to log in. However, I can log in using Foxfire with all the topics correctly displayed. I suspect it must be a cookie problem and if that is so, I'm not sure where to go in Safari to delete cookies.

    Same problem is back after only one day. When using Safari (latest version), if I click on the following link...
    http://discussions.apple.com/category.jspa?categoryID=218
    All I see is the Category headings (no latest posts) and I'm NOT automatically signed in. When I attempt to sign in, I then go the the "new user" data page. After signing in, I get very restrictive access to the forum.
    When I sign in with Firefox, everything is normal. Yesterday when I had this problem, I erases the cookies from Safari and everything returned to normal. I hate to have to erase my cookies everyday to get access here as I prefer to use Safari.
    Is this happening to anyone else?

  • Cookie problem using safari

    Hi all!
    I seem to have a cookie problem on Safari on my iPhone. This makes that it's very difficult for me to Ise forums, Google Reader, etc. I tried all three settings but apparently Safari doesn't store my cookies.
    Anybody else have this problem? I'm using firmware 1.1.4.
    Thanks,
    Ton.

    The first step you should take is a reset of the phone to potentially clear up the problem. To do this, hold the home button and the top button simultaneously until you see the apple logo. If this doesn't cure the problem, a restore is in order, and this can be accomplished from iTunes. First try a restore from backup. If this doesn't work, you can do a restore to factory from iTunes, which should clear up the problem if the prior steps haven't worked.

  • Apex in iframe broken in 4.1?

    Hi,
    I am experiencing a strange problem after I upgraded Application Express to 4.1.
    Every new application I create, will not work in an iframe. The frame shows up as empty (with chrome's element inspector showing the content as simply <html><head></head><body></body></html>
    But older applications (created in 4.0 and earlier) they show up fine without problems.
    I have tried all the themes in 4.1 they all do not work in an iframe and if I create new pages in an older application the new pages work fine in an iframe.
    So there is some change in the 4.1 that seems to be breaking apex apps within iframes.
    I looked at the sequence of events in the Chrome Network tab of the Developer Tools. I see a request for "f" with a response of "302" (temporarily moved), which is fine, its the session mechanism redirecting.
    Then I see another request for "f" which gets the response of "Canceled".
    I can get an apex error message to show by pointing to a non-existing page in a new 4.1 app, but that is the only response I have been able to get..
    Any ideas anyone?
    Oli

    That's interesting, tried the Sample Application with the following HTML file
    <html>
    <body>
    <h1>iFrame public page</h1>
    <iframe src="http://apex.oracle.com/pls/apex/f?p=29393:99:0" width="100%" height="300">
      your browser doesn't support iframes
    </iframe>
    <h1>iFrame protected page</h1>
    <iframe src="http://apex.oracle.com/pls/apex/f?p=29393:1:" width="100%" height="300">
      your browser doesn't support iframes
    </iframe>
    </body>
    </html>The first iframe works fine which loads a public page with using session zero.
    The second iframe which tries to include page 1 which is an authenticated page fails in IE8.
    I assume it must have something to do with redirects which are not correctly working in the iframe. It has definitely nothing to do with the new security settings to prevent click hijacking, because that's not enabled for that application.
    Will continue investigation.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Cookie problems

    I know that there are problems inherent within the Portal itself which cause problems creating a cookie when that code is executed from thing a Portal context. To circumvent that I have a page external to the Portal which creates a cookie. The values of that cookie are then checked on another page. The problem I am having is that sometimes the physical IE6 cookie file which is created contains another cookie for PTCSCallbackFunction with an empty value. If this cookie exists, I cannot query the cookie I have created. This cookie is not created in my code, so must be something which the Portal creates on its own. Has anyone else ran into a similar problem and know a way around this?

    I'm also interested in an answer to this. I have been unable to get a cookie to work thru the portal. It snarfs them up and they never make it to the browser :-(
    If you find an answer let me know.
    Wes

  • How to open application twice in same browser  (cookie problem?)

    We want to be able to open the same Apex application for a test and a production system simultaneously. Settings between the two environments can then be easily compared for example. Unfortunately it seems that both sessions place information in the same cookie and navigation in one application influences the other.
    The workaround we use it to run both sessions in a different browser i.e. IE and FF.
    Is there another way around this?
    (apex 4.02)
    Edited by: Rene W. on Jul 31, 2012 12:04 AM

    Rene W. wrote:
    Thanks for the reply's
    @Erik-Jan
    The cookie name you enter in the authentication scheme seems to be a static field. We deliver standard software packages so that value will be the same for every installation. Unless the value can be determined at runtime?
    @Dietmar
    That could be a workaround. What contributes to the problem is that although test and production usually run on different DB servers the Apex listeners run on one server but on different ports.We had the same situation. The problem is that the cookie does not distinguish between different ports.
    Our solution was to setup the apex listener/OHS slightly differently. I think it was inside the mod_plsql config or http.conf, where you can set the url path.
    Meaning instead of connecting to
    <pre>http://localhost:8080/pls/<b>apex</b></pre>
    we connect to
    <pre>http://localhost:8080/pls/<b>apexdev</b></pre>
    The result is that the cookie path is different. And there will be a new cookie for each path. And as long as all the environments have a different path, their cookies will all be separatly stored from each other.
    However if you use the EPG, I'm not sure how this setting can be changed.
    Edited by: Sven W. on Jul 31, 2012 12:19 PM
    Edited by: Sven W. on Jul 31, 2012 12:23 PM

  • Cookie Problem  With JSP and Tomcat

    I have a tiny web application developed for my project thing.
    I am facing a problem while maintaining sessions with Cookie. I use Tomcat 3.2.1 Web Server and JSP 1.2 Specifications for my web application.
    I have created a page which creates a cookie and stores it in the client's PC, so when the same client visits the site, he can be remembered. Now while surfing the site in the same session, the site remembers the client. But once the client closes the browser and tries connecting to the site, he cannot be remembered. So I took a look into Temporary Internet Files of the client PC and found no cookie there. So where the cookie gets created and why does it disappears with the session. I have set a time limit of 1 year in the cookie.
    Now is that a Problem with Tomcat or with the configuration settings of IE in the client PC?? Or something else???
    Reply me Soon...

    Thanks for your reply.
    following is the code for how do i create a cookie...
    <%
         String custno = custBean.createPreferred();
         Cookie c = new Cookie("pc", custno);
         c.setVersion(1);
         c.setPath("/");
         c.setComment("PreferredCustomer");
         c.setDomain("think_machine");
    //think_machine is the name of the Web Server(Tomcat)
         c.setMaxAge(365*24*60*60);
         response.addCookie(c);
    %>
    And the code to read a cookie is..
         String custID = null;
         Cookie[] cookies = request.getCookies();
         for(int i = 0; i < cookies.length; i++)
              if(cookies.getName().equals("pc"))
                   custID = cookies[i].getValue();
                   break;
    One more thing I would like to let you know, that i access this from the same PC on which the Web Server is installed. Means the Server and the client are both one and the same PC.

  • When I try to open Calendar from gmail, I get a Cookies problem error message

    I have reset privacy settings per instructions sevearl times, but still can't open calendar
    Basics
    Name: Firefox
    Version: 29.0.1
    User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0
    Crash Reports for the Last 3 Days
    All Crash Reports
    Extensions
    Name: Norton Toolbar
    Version: 2014.7.1.1
    Enabled: false
    ID: {2D3F3651-74B9-4795-BDEC-6DA2F431CB62}
    Name: Norton Vulnerability Protection
    Version: 12.2.0.5 - 1
    Enabled: false
    ID: {BBDA0591-3099-440a-AA10-41764D9DB4DB}
    Important Modified Preferences
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size_cached_value: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.places.smartBookmarksVersion: 6
    browser.sessionstore.upgradeBackup.latestBuildID: 20140506152807
    browser.startup.homepage_override.buildID: 20140506152807
    browser.startup.homepage_override.mstone: 29.0.1
    extensions.lastAppVersion: 29.0.1
    gfx.direct3d.last_used_feature_level_idx: 0
    network.cookie.prefsMigrated: true
    places.history.expiration.transient_current_max_pages: 103137
    plugin.disable_full_page_plugin_for_types: application/pdf
    plugin.importedState: true
    privacy.sanitize.migrateFx3Prefs: true
    Graphics
    Adapter Description: Intel(R) HD Graphics
    Adapter Drivers: igdumd64 igd10umd64 igd10umd64 igdumd32 igd10umd32 igd10umd32
    Adapter RAM: Unknown
    Device ID: 0x0156
    Direct2D Enabled: true
    DirectWrite Enabled: true (6.2.9200.16571)
    Driver Date: 5-10-2012
    Driver Version: 8.15.10.2752
    GPU #2 Active: false
    GPU Accelerated Windows: 2/2 Direct3D 10
    Vendor ID: 0x8086
    WebGL Renderer: Google Inc. -- ANGLE (Intel(R) HD Graphics Direct3D9Ex vs_3_0 ps_3_0)
    windowLayerManagerRemote: false
    AzureCanvasBackend: direct2d
    AzureContentBackend: direct2d
    AzureFallbackCanvasBackend: cairo
    AzureSkiaAccelerated: 0
    JavaScript
    Incremental GC: true
    Accessibility
    Activated: false
    Prevent Accessibility: 0
    Library Versions
    NSPR
    Expected minimum version: 4.10.3
    Version in use: 4.10.3
    NSS
    Expected minimum version: 3.16 Basic ECC
    Version in use: 3.16 Basic ECC
    NSSSMIME
    Expected minimum version: 3.16 Basic ECC
    Version in use: 3.16 Basic ECC
    NSSSSL
    Expected minimum version: 3.16 Basic ECC
    Version in use: 3.16 Basic ECC
    NSSUTIL
    Expected minimum version: 3.16
    Version in use: 3.16

    Hello,
    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

Maybe you are looking for