Management Portal not working in Chrome?

Hey,
when using Chrome I am having a problem with logging in to the management portal of Azure. This started roughly a week ago. After logging in, the page and layout are loaded but no content is displayed. All I see is the (nicely) animated loading wheel:
Even after waiting for 5 minutes, nothing else happens. In the developer console there are no errors displayed. In other browsers (IE, FF) everything works fine.
Has anyone similar problems or can someone help me?

Hello ReDavid,
Thanks for posting here!
Microsoft has confirmed the problem, and indicated that an incompatibility with the Chrome browser is at fault.
“We have seen a problem with new Azure portal and Chrome browser.
“This is a known issue with Azure portal and Azure Portal team is working hard to fix this problem. The current workaround is to use IE to solve this problem,”
You can try resetting your Chrome Browser and see if that works.
Also refer this article:
Manage your cookies and site data
As said by Will Shao Chrome version 36.0.1985.143 should fix this issue.
Hope that helps!
Let me know if you have any queries!
Best Regards,
Sadiqh Ahmed
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

Similar Messages

  • BI Administrator error: Session Management will not work

    Hi!
    I am about to set up BI Administrator Addon in SAP Portal. All the configuration steps seems to be ok.
    Unfortunately when I try to start some of applications of BI Administrator I get the following error:
    Session Management will not work.
    Please check the DSM log file for details
    Question:
    How can I solve this problem?
    Thank you very much!
    regards

    Hi
    This error means--Please notify us of this problem by submitting an IT Service Request (Please Note: In order to log into the Infra system, you will need to preface your NKU account with nku\.  For example, if your user name is smithj7, the "User Name" field would need to be populated with nku\smithj7.)
    under the problem type "SAP BW/Portal.
    Much of EP / BASIS issue.
    Hope it helps

  • Cross browser testing : Modifier Keys playback actions not working in chrome and Firefox

    Hi,
    In my work flow I have to select multiple items in list.So I have recorded 'Ctrl+Click' action to select list items.In Chrome and Firefox it is not selecting multiple Items.
    Even Ctrl+A,Ctrl+C,Ctrl+V also not working in chrome and Firefox.Complete modifier keys support is not observed in chrome and Firefox.Let me Know how to automate modifier keys actions in cross browser?
    Regards,
    Nagasree.

    Hi Nagasree,
    Welcome to MSDN forums.
    First,please make sure the Chrome and Firefox is supported by cross browser testing.
    Latest version of Chrome and Firefox supported by cross browser testing are Chrome version 38.0.2125.111 and
    Firefox 33.
    I doubt whether Chrome and Firefox in cross browser testing don’t support automating modifier keys or there is anything wrong on it if you are using supported browser. Since this issue is related to the Extensions tool
    Selenium components for Coded UI Cross Browser Testing, if possible, I suggest you post this
    issue here, click “Q AND A”, and then you could post this issue there, you would get dedicated
    support there.
    Thanks for your understanding.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Norton password manager does not work on 8. How do I return to a previous version?

    when I updated to firefox 8, Norton password manager does not work. How can I return to a previous version. I am surprised that you introduced an update missing this.

    Norton needs to be updated.
    http://community.norton.com/t5/Norton-360/Firefox-8-Support-for-Norton-Toolbar/td-p/581640

  • Just completed a clean install of CS6 Photoshop on my Yosemite Mac Book Pro and the Adobe Application Manager does not work and cannot install a fresh copy from Adobe

    Just re-installed a fresh copy of CS6 Photoshop on my Yosemite Mac Book Pro and somehow the Adobe Application Manager does not work and therefore cannot verify my copy.  What should I do?
    I get a message saying that Adobe Application Manager may be damaged and that I should install a new version of AAM.  But after downloading a fresh copy of AAM and doing the install, the program (AAM) still will not install.  It is like an infinite loop!
    Please, someone help!
    Thanks!

    HI gener7!
    I'm sorry but I am not on Creative Cloud.  I'm still on CS6 and it was the Adobe Application Manager that wasn't working and I could not install the update to this application.  My AAM version is:  8.0.0160
    The link you provided was the update that I wanted to install but it does not work.  A window shows up during that install that says:
    We've encountered the following issues.
    Installer failed to initialize.  Please download Adobe Support Advisor to detect the problem.
    and then the link to the Adobe Support Advisor which leads to a "Adobe Support Advisor has been discontinued" page.
    Thanks!

  • PDF Submit not working in Chrome & Safari

    I have a PDF with form fields added as well as a submit button, The action on the submit button exports all fields to a page on the server as HTML. This works fine in Firefox and IE but does not work in Chrome or Safari. Is there any known workaround to this?

    The PDF is imbedded in a web page - they are forced to open in a browser. There they are required to fill in the forms fields and submit. Here is an example:  https://www.benefitfront.com/Applications/ABCCompany_Anthem_Medical_23_BZUFP.pdf

  • RTE not working in chrome and mozilla

    Hi
        I have an urgent issue.. My RTE is not working in chrome and mozilla.. It is showing up in my dialog; but when i enter data and submit it is not storing in CRX. Also non of the plugins is active
    Any help weill be appreciable
    Thanks
    Veena

    Hi Sham
         After lot of debug i found out the following issues
    In RTE if we put styles plugin only this issue is happening
    The issue happens because the RTE is getting disabled because of the following in RichText.js
    if (CQ.Ext.isIE) {
                var editorSheet = this.doc.createStyleSheet();
                for (cssIndex = 0; cssIndex < cssCnt; cssIndex++) {
                    styleToAdd = cssToAdd[cssIndex];
                    for (sheetIndex = 0; sheetIndex < styleSheetCnt; sheetIndex++) {
                        styleToCheck = styleSheets[sheetIndex];
                        rules = styleToCheck.rules;
                        ruleCnt = rules.length;
                        ruleToCopy = null;
                        for (ruleIndex = 0; ruleIndex < ruleCnt; ruleIndex++) {
                            ruleToProcess = rules[ruleIndex];
                            ruleText = ruleToProcess.selectorText;
                            if (ruleText == "." + styleToAdd) {
                                editorSheet.addRule(
                                        "." + ruleText, ruleToProcess.style.cssText);
                                break;
            } else {
                var styleDef = this.doc.createElement("style");
                styleDef.type = 'text/css';
                var cssText = "";
                for (cssIndex = 0; cssIndex < cssCnt; cssIndex++) {
                    styleToAdd = cssToAdd[cssIndex];
                    for (sheetIndex = 0; sheetIndex < styleSheetCnt; sheetIndex++) {
                        styleToCheck = styleSheets[sheetIndex];
                        rules = styleToCheck.cssRules;
                       ruleCnt = rules.length;
                        ruleToCopy = null;
                        for (ruleIndex = 0; ruleIndex < ruleCnt; ruleIndex++) {
                            ruleToProcess = rules[ruleIndex];
                            if (ruleToProcess.type) {
                                if (ruleToProcess.type == CSSRule.STYLE_RULE) {
                                    ruleText = ruleToProcess.selectorText;
                                    if (ruleText == ("." + styleToAdd)) {
                                        ruleToCopy = ruleToProcess;
                                        break;
                        if (ruleToCopy) {
                            cssText += ruleToCopy.cssText;
                            break;
                styleDef.appendChild(this.doc.createTextNode(cssText));
                headEl.appendChild(styleDef);
    The above lines are from 650-701 in RichText.js of CQ5.4 . They have handled the code for IE seperately from lines 650-670
    The error is happening in line number 679 ; Where the ruleCnt is returning null for some sheetIndex and so the code is breaking and the RTE is disabled.
    If i add the following line of code
    if(ruleCnt == null){
    continue;
    just after line 679 . This issue seems fixed. But i think it is not the proper way to fix it and it is only a temporary fix. I dont know if it is a CQ issue.
    Does any one have any solution for this.
    To replicate the scenario
    Create a rtePlugin in ur richtext widget
    add a styles dropdown with styles in it
    run this in chrome or any other browser except IE
    If you have a proper solution please let me know
    Thanks
    Veena

  • Webpage links not working in chrome

    please advise why webpage links in green and grey table cells beneath the product image are not working in chrome on following webpage: http://www.canchair.com/new_web_product_family.asp?productfamily=5

    thanks for your quick reply
    the following code containing the links which i believe is of discussion appears in internet explorer:
    <table width="100%"  border="0" class="zebra" cellpadding="0" cellspacing="0" >
                      <tr>
                        <th> </th>
                        <th>Title</th>
                        <th>Model</th>
                        <th>Price</th>
                      </tr>
                      <tr valign="top" style="cursor: hand;">
                        <a href="productfamily_processor.asp?ProductID=1453" ><td valign="top">View Item</td>
                        <td valign="top">Lightweight Poly Folding Table, 24"x60" </td>
                        <td valign="top">SD2460</td>
                        <td valign="top"><strong>Contact us</strong></td></a>
                      </tr>
                      <tr valign="top" style="cursor: hand;">
                        <a href="productfamily_processor.asp?ProductID=1059" ><td valign="top">View Item</td>
                        <td valign="top">Center Fold Lightweight Poly Folding Table  30" x 72" - GREY GRANITE</td>
                        <td valign="top">SD3072F</td>
                        <td valign="top"><strong>Contact us</strong></td></a>
                      </tr>
                      <tr valign="top" style="cursor: hand;">
                        <a href="productfamily_processor.asp?ProductID=641" ><td valign="top">View Item</td>
                        <td valign="top">Lightweight Poly Folding Table, 30" x 72" - UPGRADED RUNNERS - GREY GRANITE</td>
                        <td valign="top">SD3072</td>
                        <td valign="top"><strong>Contact us</strong></td></a>
                      </tr>
                      <tr valign="top" style="cursor: hand;">
                        <a href="productfamily_processor.asp?ProductID=1393" ><td valign="top">View Item</td>
                        <td valign="top">Lightweight Poly Folding Table, 36" x 78" - UPGRADED RUNNERS - GREY GRANITE</td>
                        <td valign="top">SD3678</td>
                        <td valign="top"><strong>Contact us</strong></td></a>
                      </tr>
                      <tr valign="top" style="cursor: hand;">
                        <a href="productfamily_processor.asp?ProductID=1085" ><td valign="top">View Item</td>
                        <td valign="top">Lightweight Poly Folding Table, 30" x  96" - UPGRADED RUNNERS - GREY GRANITE</td>
                        <td valign="top">SD3096</td>
                        <td valign="top"><strong>Contact us</strong></td></a>
                      </tr>
                      <tr valign="top" style="cursor: hand;">
                        <a href="productfamily_processor.asp?ProductID=642" ><td valign="top">View Item</td>
                        <td valign="top">Lightweight Poly Folding Table, 36" x 84" - UPGRADED RUNNERS - GREY GRANITE</td>
                        <td valign="top">SD3684</td>
                        <td valign="top"><strong>Contact us</strong></td></a>
                      </tr>
                      <tr valign="top" style="cursor: hand;">
                        <a href="productfamily_processor.asp?ProductID=921" ><td valign="top">View Item</td>
                        <td valign="top">Standard Duty Lightweight Poly Folding Table, 18" x 60"</td>
                        <td valign="top">SD1860</td>
                        <td valign="top"><strong>Contact us</strong></td></a>
                      </tr>
                      <tr valign="top" style="cursor: hand;">
                        <a href="productfamily_processor.asp?ProductID=632" ><td valign="top">View Item</td>
                        <td valign="top">Lightweight Poly Folding Table, 18" x 72"</td>
                        <td valign="top">SD1872</td>
                        <td valign="top"><strong>Contact us</strong></td></a>
                      </tr>
                      <tr valign="top" style="cursor: hand;">
                        <a href="productfamily_processor.asp?ProductID=755" ><td valign="top">View Item</td>
                        <td valign="top">Standard Duty Lightweight Poly Folding Table, 18" x 96"</td>
                        <td valign="top">SD1896</td>
                        <td valign="top"><strong>Contact us</strong></td></a>
                      </tr>
                    </table>
                  </div>
       </div>
              <div class="inside-box-border">
                  <div class="inside-box" align="left"> Other </div>
                  <div   class="inside-border"> insert other </div>
              </div>
                <!-- NEWS-ITEM -->
              <!-- InstanceEndEditable --></td>
              <td valign="top"><!-- InstanceBeginEditable name="right nav" -->
                <!-- NAV-MENU -->
              <!-- InstanceEndEditable --></td>
            </tr>
          </table>

  • Why two fingers sliding is not working in Chrome and PDf, why two fingers sliding is not working in Chrome and PDf

    Sometime two fingers sliding for scroll down is not working in Chrome and Pdf. I have to log out to make this work. I just bought this laptop a week ago, is it software's problem or just my laptop's problem. Thx,guys!

    having the same problem and i bought a brand spankin new retina 15'

  • File manager still not working w 10.7.3combo

    Since installing lion (I started with 10.7.2) file manager is not working. Yes, I can force uit it and than it does but it is still very annoying and time consumin to do it 2-4 times a day. I was hoping that 10.7.3 will solv it. Than installed based on advice I received hee 10.7.3 compbo but the problem is still there.
    Do you know or have you run accross a thread that explains how to solve it?
    Advanced thats to anyone who can help
    Ruvy

    What is "file manager?"  Is that a piece of third-party software, or are you referring to the Finder?  If it's third-party software, you'll need to contact the developer for an update or fix.  If the Finder is not working (how is it not working?), then you could try some of the tips in Understanding upgrade nightmares.
    (Note that my pages contain links to other pages that promote my services, and this should not be taken as an endorsement of my services by Apple.)

  • Ciscowork 3.2.1 daemon manager is not working after patch installation

    Hi Team
    Ciscowork 3.2.1 daemon manager is not working after patch installation.
    C:\Documents and Settings\Administrator>net start crmdmgtd
    The CiscoWorks Daemon Manager service is starting.
    The CiscoWorks Daemon Manager service could not be started.
    The service did not report an error.
    More help is available by typing NET HELPMSG 3534.
    Also I checked syslog.log and it is showing below error
    an 17 14:39:34 127.0.0.1 100: <28>   dmgt[1316]: 2507(W):Daemon manager anonymous user has not been set up: 00000569
    Please suggest.
    With Regards,
    neena

    During installation, an user casuser is created with certian security settings and if those are modified\removed, DM will not start.
    Following message will be seen in /log/syslog.log
    Daemon manager anonymous user has not been set up: 00000775
    To solve the issue, run resetcasuser.exe located under /setup.support  to  recreate the settings.
    Make sure casuser account is not locked out. Make sure casuser is a member of casusers group and is set to "password never expires".
    Additionally you can try to make casuser a member of adiministrators group.
    -Thanks

  • Ciscowork3.2.1 daemon manager is not working after patch installation

    Ciscowork 3.2.1 daemon manager is not working after patch installation
    Hi Team
    Ciscowork 3.2.1 daemon manager is not working after patch installation.
    C:\Documents and Settings\Administrator>net start crmdmgtd
    The CiscoWorks Daemon Manager service is starting.
    The CiscoWorks Daemon Manager service could not be started.
    The service did not report an error.
    More help is available by typing NET HELPMSG 3534.
    Also I checked syslog.log and it is showing below error
    an 17 14:39:34 127.0.0.1 100: <28>   dmgt[1316]: 2507(W):Daemon manager anonymous user has not been set up: 00000569
    I reset the casuser password and restarted the service but still no luck....
    Please suggest.
    With Regards,
    neena

    Neena,
    Check the properties of casuser under Start > Settings > Control Panel > Administrative Tools > Computer Management > Local Users and Groups > Users and make sure it is not disabled or locked out.  The only thing checked should be "Password never expires".  Change anything required and reset casuser.

  • WLCS 3.1 + WLS SP 9 --*** PORTALS Not WORKING!!!!

    After applying WLS SP 9.0 our portals not working.
    Can anybody throw some light, PLEASE !!! **URGENT**
    We are getting the following Error:
    Sun May 06 21:24:44 GMT+03:00 2001:<E> <ServletContext-General> Servlet failed
    with Exception weblogic.servlet.jsp.JspException: (line -1): Error in tag library
    at: 'wl': The Tag class 'weblogi x.jsp.tags.CacheTag' has no setter method corresponding
    to TLD declared attribute 'async', (JSP 1. spec, 5.4.1) at java.lang.Throwable.fillInStackTrace(Native
    Method) at java.lang.Throwable.fillInStackTrace(Compiled Code) at java.lang.Throwable.<init>(Compiled
    Code) at java.lang.Exception.<init>(Compiled Code) at java.lang.RuntimeException.<init>(Compiled
    Code) at weblogic.servlet.jsp.JspException.<init>(Compiled Code) at weblogic.servlet.jsp.JspException.<init>(Compiled
    Code) at weblogic.servlet.jsp.StandardTagLib.jspException(Compiled Code) at weblogic.servlet.jsp.StandardTagLib.processTag(Compiled
    Code) at weblogic.servlet.jsp.StandardTagLib.processTagElements(Compiled Code)
    at weblogic.servlet.jsp.StandardTagLib.<init>(Compiled Code) at weblogic.servlet.jsp.JspLexer.loadTagLib(Compiled
    Code) at weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE_BODY(Compiled Code) at
    weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE(Compiled Code) at weblogic.servlet.jsp.JspLexer.mDIRECTIVE(Compiled
    Code) at weblogic.servlet.jsp.JspLexer.mSTANDARD_THING(Compiled Code) at weblogic.servlet.jsp.JspLexer.mTOKEN(Compiled
    Code) at weblogic.servlet.jsp.JspLexer.nextToken(Compiled Code) at weblogic.servlet.jsp.JspLexer.parse(Compiled
    Code) at weblogic.servlet.jsp.JspParser.doit(Compiled Code) at weblogic.servlet.jsp.JspParser.parse(Compiled
    Code) at weblogic.servlet.jsp.Jsp2Java.outputs(Compiled Code) at weblogic.utils.compiler.CodeGenerator.generate(Compiled
    Code) at weblogic.servlet.jsp.JspStub.compilePage(Compiled Code) at weblogic.servlet.jsp.JspStub.prepareServlet(Compiled
    Code) at weblogic.servlet.jsp.JspStub.checkForReload(Compiled Code) at weblogic.servlet.internal.ServletStubImpl.getServlet(Compiled
    Code) at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled Code)
    at weblogic.servlet.internal.RequestDispatcherImpl.forward(Compiled Code) at com.beasys.commerce.foundation.flow.ServletDestinationHandler.handleDestination(Compiled
    Code) at com.beasys.commerce.foundation.flow.FlowManager.service(Compiled Code)
    at javax.servlet.http.HttpServlet.service(Compiled Code) at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled
    Code) at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled Code)
    at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled Code) at
    weblogic.servlet.internal.ServletContextManager.invokeServlet(Compiled Code) at
    weblogic.socket.MuxableSocketHTTP.invokeServlet(Compiled Code) at weblogic.socket.MuxableSocketHTTP.execute(Compiled
    Code) at weblogic.kernel.ExecuteThread.run(Compiled Code)

    I have gotten it to work by replacing the sp9 weblogic-tags-510.jar with
    the sp8 weblogic-tags-510.jar. We haven't experienced any problems with
    our app after using this workaround. However, we haven't completely
    tested it either.
    psimon wrote:
    You should use sp6 or sp8 instead of sp9
    Pascal
    Nadeem a écrit :
    After applying WLS SP 9.0 our portals not working.
    Can anybody throw some light, PLEASE !!! **URGENT**
    We are getting the following Error:
    Sun May 06 21:24:44 GMT+03:00 2001:<E> <ServletContext-General>
    Servlet failed
    with Exception weblogic.servlet.jsp.JspException: (line -1): Error
    in tag library
    at: 'wl': The Tag class 'weblogi x.jsp.tags.CacheTag' has no setter
    method corresponding
    to TLD declared attribute 'async', (JSP 1. spec, 5.4.1) at
    java.lang.Throwable.fillInStackTrace(Native
    Method) at java.lang.Throwable.fillInStackTrace(Compiled Code) at
    java.lang.Throwable.<init>(Compiled
    Code) at java.lang.Exception.<init>(Compiled Code) at
    java.lang.RuntimeException.<init>(Compiled
    Code) at weblogic.servlet.jsp.JspException.<init>(Compiled Code) at
    weblogic.servlet.jsp.JspException.<init>(Compiled
    Code) at weblogic.servlet.jsp.StandardTagLib.jspException(Compiled
    Code) at weblogic.servlet.jsp.StandardTagLib.processTag(Compiled
    Code) at
    weblogic.servlet.jsp.StandardTagLib.processTagElements(Compiled
    Code)
    at weblogic.servlet.jsp.StandardTagLib.<init>(Compiled Code) at
    weblogic.servlet.jsp.JspLexer.loadTagLib(Compiled
    Code) at
    weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE_BODY(Compiled Code)
    at
    weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE(Compiled Code) at
    weblogic.servlet.jsp.JspLexer.mDIRECTIVE(Compiled
    Code) at weblogic.servlet.jsp.JspLexer.mSTANDARD_THING(Compiled
    Code) at weblogic.servlet.jsp.JspLexer.mTOKEN(Compiled
    Code) at weblogic.servlet.jsp.JspLexer.nextToken(Compiled Code) at
    weblogic.servlet.jsp.JspLexer.parse(Compiled
    Code) at weblogic.servlet.jsp.JspParser.doit(Compiled Code) at
    weblogic.servlet.jsp.JspParser.parse(Compiled
    Code) at weblogic.servlet.jsp.Jsp2Java.outputs(Compiled Code) at
    weblogic.utils.compiler.CodeGenerator.generate(Compiled
    Code) at weblogic.servlet.jsp.JspStub.compilePage(Compiled Code) at
    weblogic.servlet.jsp.JspStub.prepareServlet(Compiled
    Code) at weblogic.servlet.jsp.JspStub.checkForReload(Compiled Code)
    at weblogic.servlet.internal.ServletStubImpl.getServlet(Compiled
    Code) at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled
    Code)
    at weblogic.servlet.internal.RequestDispatcherImpl.forward(Compiled
    Code) at
    com.beasys.commerce.foundation.flow.ServletDestinationHandler.handleDestination(Compiled
    Code) at
    com.beasys.commerce.foundation.flow.FlowManager.service(Compiled
    Code)
    at javax.servlet.http.HttpServlet.service(Compiled Code) at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled
    Code) at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled
    Code)
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled
    Code) at
    weblogic
    servlet.internal.ServletContextManager.invokeServlet(Compiled Code)
    at
    weblogic.socket.MuxableSocketHTTP.invokeServlet(Compiled Code) at
    weblogic.socket.MuxableSocketHTTP.execute(Compiled
    Code) at weblogic.kernel.ExecuteThread.run(Compiled Code)

  • Cursor 'mouseover' state change not working in Chrome

    Flash novice here.
    I'd appreciate any tips on where to start looking for answers to this problem.
    Here's the basic details:
    1. 40kb banners with no audio and nothing tricky
    2. Created in Flash Pro CC 2014
    3. Opened and re-saved in Flash CS6 for delivery to client website
    4. Client IT reports that everything is fine and banners are up and running
    5. For me personally, the mouseover state for the cursor works in Safari, but not in Chrome.
    6. While the mouseover cursor state for my banner is not working in Chrome, it is working for all the other banners/ads on that page.
    7. A friend tested the banner on all major browsers and the mouseover cursor state works for him.
    Any ideas where to look would be appreciated.
    Should I be talking to the host website, examining the Flash file, or checking my version of Chrome?
    Thanks in advance.

    This forum software is very tricky; updates to forum posts sometimes need to be done three or four times until it "takes".  I have been able to update your original post.
    Now that it is actually readable, I will go and have a look at it.

  • Simple Pass Not Working with Chrome Version 42.0.2311.90 m

    SimplePass stopped working today.  I noticed a while ago that I no longer had to manually add the Website Logon extension anymore.  A small window popped up with a warning about using developer extensions and SimplePass worked.  Website Logon extension is enabled, but SimplePass isn't working.
    Does anyone know I can fix this?  Many thanks in advance.
    As a last resort, I have gone back to a previous restore point.  Now SimplePass is working.  However, I would still like resolution as I expect to encounter this problem again with other updates, etc.  Can someone tell me what Windows Update may have caused the problem so I can not apply that particular update?
    Thanks again.

    Hi @mellman ,
    Welcome to the HP Support Community! I hope you enjoy your time with us.
    I see that you are having a problem with SimplePass not working with Chrome. This has been a problem for a while now as Google Chrome made some changes about what extensions are available from their webstore and how they work.  You can try the steps in this HP Forums post to see if that fixes the issue for you.
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

Maybe you are looking for

  • How can I kepp all songs on the same album?

    Some of my albums that have duets on them will show up as multiple albums when they were ripped from the same CD. Is there a way to make them all under the same album cover. I also have some artists that under an artist search will show up with multi

  • Constant low battery warnings for ipod mini 1st Generation

    my ipod mini is doing something weird. When the Battery Meter says it's full, it displays this message that says "No Battery Power Remains, Please plug it into the Power Outlet." I have already tried the 5 R's and it didn't work. I sent it into apple

  • Deskjet 6988 printer to wireless network (Envy laptop w/ Windows 8.1)

    I've had my HP Deskjet 6988 printer for years and always had it connected to my desktop via USB 2.0 cable. I purchased a HP Envy laptop with Windows 8.1 and want to connect the printer via my home network/Belkin router, as the USB 2.0 cable that came

  • Output message not generated for Purchase order

    We maintain MN04 message condition record for  2 key combination for output type NEU: 1. Purchasing Output determination : Document type  -> NB, medium 1 print out 2. Purchasing Output determination : Document type/Pur Org/Vendor -> NB, 1000, vendor

  • Format tree 'BE_EVAT_RET_XML'

    The Belgium E-vat declaration is required in transaction DMEE in tree type UMS3. It's an SAP ECC 6.0 with SAP_BASIS 701 level 3 and SAP_APPL 604 level 3. A lot of related SAP Notes are according the correction delivered in Support Package available.