box to create an eFax account does not work on the eFax page

I'm having the same problem. The account you create on the efax page is grayed out. I have windows XP, can anyone help me fix this please? TIA

Tom McC

Hi jintsfan28,

Welcome to the HP Support forums.  I understand your button to eFax to create a new account in gray.

For that matter, please call the HP Cloud Services at 1-855-785-2777 if you live in the USA/Canada region. If you do not live the USA/Canada region, please click here to find the number of Technical Support for your country/region.

Tags: HP Printers

Similar Questions

  • HTTPS Post does not work in the OFA Page

    Hi all

    I created a Page of the OFA, by clicking on button I do next.

    //--------------------------------------------------------
    private static String contactService(String xmlInputString) throws Exception {}
    String outputStr = null;
    OutputStream outputStream = null;
    try {}

    URL url = new URL ("https://wwwcie.ups.com/ups.app/xml/ShipConfirm");

    HttpURLConnection connection = () (HttpURLConnection) url.openConnection;
    System.out.println ("Customer connection established with" + url.toString ());
    Configure the HTTP POST parameters
    connection.setDoOutput (true);
    connection.setDoInput (true);
    connection.setUseCaches (false);

    outputStream = connection.getOutputStream ();
    outputStream.write (xmlInputString.getBytes ());
    outputStream.flush ();
    outputStream.close ();
    System.out.println ("Http status =" + connection.getResponseCode () + "" + connection.getResponseMessage ());

    outputStr = readURLConnection (connection);
    System.out.println ("Response..." + outputStr);
    } catch (Exception e) {}
    System.out.println ("error sending data to the server..." + e.getMessage ());
    throw e;
    } {Finally
    If (outputStream! = null) {}
    outputStream.close ();
    outputStream = null;
    }
    }
    Return outputStr;
    }

    //----------------------------------------------------
    public static String readURLConnection (URLConnection uc) throws Exception {}
    StringBuffer buffer = new StringBuffer();
    BufferedReader reader = null;
    try {}
    reader = new BufferedReader (new InputStreamReader (uc.getInputStream ()));
    Letter int = 0;
    reader.readLine ();
    While ((letter = reader.read ())! = - 1) {}
    Letter from buffer. Append ((Char));
    }
    Reader.Close ();
    } catch (Exception e) {}
    System.out.println ("could not read from URL:" + try ());
    throw e;
    } {Finally
    If (reader! = null) {}
    Reader.Close ();
    Reader = null;
    }
    }
    Return buffer.toString ();
    }

    Now, when I run this JDEVELOPER local it works fine, but when when depolyed on the server, then when I click the button then page gets hanged and it does nothing.
    Is there any setting I should do in APPS environment. or anyone had done the same. any help will be appreciated.

    Thank you
    Vijay chraibi

    Hello

    If your code works fine in JDev and it does not work on the instance, then you can trigger SR with Oracle for Ptoduct JDeveloper.

    Kind regards
    Out Sharma

  • "back" button does not work and the home page does not display on startup

    My buttons next and previous no longer work. They show just gray and I cannot click on them.
    Also my home page does not appear when I launch firefox.
    I reinstalled firefox 4 and then I went back to firefox 3.6.16 and have the same problem in both versions.
    Don't know what to do anymore
    I just found out that when I opened a second window everything works well in the second window, but it still does not work in the first window.
    The same thing happens when I close both windows. The first window of my home page does not appear and the back button does not work, but the second window is operating normally. Including my home page.

    Try:

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the Add-ons is the cause of the problem (switch to the DEFAULT theme: Tools > Modules > appearance/themes).

    • Makes no changes on the start safe mode window.

    See:

  • Search button does not work on the start page

    When I get home the point I want to search i.e. Griffin vulture in the search bar in the center of the home page and then click on the button Search to the right of the bar, that nothing happens

    Try to use the extension SearchReset reset preferences to default values.

    Note that the SearchReset extension runs only once and then uninstalls automatically, so it will not appear on the page "> Firefox Add-ons" (topic: addons).

    You can also check if you have the XML files including Google's default search engine in the searchplugins folder in the Firefox program folder.

    If this isn't the case, then you need to reinstall Firefox.

  • When I open a new tab, the back button does not work on the second page, I discover - never the second page, regardless of the site.

    When I opened a new tab - or when I first open a browser - as soon as I go to a second page, I can't go back to the first. Thus, for example, I opened a new tab. I go to a news site. I click on a title. I can not then go back to the first page of the new site. If I go back to the first page manually (by typing the url, or by opening a bookmark) and then click on the same heading, I'll be able to go back.

    The inability to return only ever happens on the second page opens in a new tab or window. At any time, I can go back as normal - but the first page I was on that tab / in this window is erased from history.

    This isn't something that's happened only with FF4, either. I first noticed a couple of weeks, but I upgraded shortly after, assuming it was a bug that would set the new browser. But it's always like that. He still refuses to back the second page of the first.

    This problem may be caused by an extension (McAfee SiteAdvisor) that is not working properly.

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the Add-ons is the cause of the problem (switch to the DEFAULT theme: Tools > Modules > appearance/themes).

    • Makes no changes on the start safe mode window.

    See:

  • JavaScript function does not work on the JSFF page load but runs on page refresh

    A bit of background first:-I'm a front-end developer who use jDeveloper to build templates/pages. I also manage client scripting using af:clientListerner tags. But my knowledge on the related backend stuff (beans, triggers, actions) etc. is almost zero. So, I'll use technical very simple terms to describe my problem.


    Scenario:


    Let's say I have two pages JSFF, first.jsff , and second.jsff


    In first.jsff, I have a command link that navigates to second.jsff. Inside of this page, I have a javascript function that I need to run when the user interface is rendered. But as soon as second.jsff load, my JS function never fires. Only when I refresh the page see running. This what second.jsff looks like:

    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:af="http://xmlns.oracle.com/adf/faces/rich" xmlns:f="http://java.sun.com/jsf/core">          
       <af:panelGroupLayout id="pgl17" styleClass="mainBox AFStretchWidth">
           <af:resource type="javascript">
                function runOnLoad(){
                      alert("Hello world");
               }
               runOnLoad();
            </af:resource>
            /*   other ADF components go below this line
            .
            .
            .
            */
       </af:panelGroupLayout>
    </jsp:root>
    
    
    

    So I see the alert only when I refresh the page (i.e. after the redirection occurs, I have to refresh the page to make the JS run)

    What I'm missing here?

    jDeveloper version is 11.1.1.9.0

    You will use this fragment of .jsff inside the .jspx page. In the .jspx inside the af: document add clientListener as:

        
          
          .
          .
          .
        
    

    Change the javascript method to be:

     
          function runOnLoad(event)
          {
            alert("Hello world");
           }
     
    
  • Portege Z830 - X 11 - enter key does not work on the logon screen

    suddenly, the Enter key does not work in the scrreen of connection (win 7 64 bit, toshiba portege Z830 - X 11), which some do not login with password.

    The on-screen keyboard sends the "enter" or the other.
    When in safe mode, everything works as it should.

    I solved this problem by disabling the password for the account, but I don't feel well in this situation.

    Help, please...

    Have you tried an external USB keyboard?
    Do this!

    Not very well why the ENTER key does not work on the login page, but I guess its problem of keyboard.

  • can't connect to my home internet income james ashley forgot it the link password does not work and the password I was given does not fit into the password box

    can't connect to my home internet income james ashley forgot it the link password does not work and the password I was given does not fit into the password box

    Are you sure that you do not have to register on this site through the usual way and what you should be used elsewhere on the site?

    Have you tried to contact them to help this topic or to check if they have a FAQ on this subject?

    I found this in another thread that you created [*]:

    I'm not sure do I bought a home income internet james ashley program and I copied the login info I was given and the password does not fit into the window of password and I forgot the link password does not work I sent emails, but do not receive an answer im don't know what to do is anyway you can help me to recover my info or help me change the password?

    I assume that you have downloaded and installed this program and need to use this password in this program or only you can use these data to download the program from the site james ashley?

  • My Icloud account does not work. As soon as I try to connect my PC know "this browser is not supported. What went wrong and what can do?

    My Icloud account does not work. As soon as I try to connect my PC know "this browser is not supported. What went wrong and what can do? I previously used the same connection to my account for a long time without any problem. My PC I have a tie with Windows 8

    < personal information deleted by host >

    Hi bengtfrombelgentier,

    Welcome to the communities of Apple Support! I'm sorry to hear that you are experiencing these problems access iCloud. If you are unable to access iCloud.com due to an error of supported browser, you can check the browser requirements set out in the following article:

    Requirements for iCloud - Apple Support

    Concerning

  • 'Manage account' does not appear in the Synchronization Options - how can I fix?

    'Manage account' does not appear in the Synchronization Options - how can I fix?

    It will be great if you could share a screenshot of what you see.

    What you trying to do?

    You have already set up your sync account? This is the only case that comes to my mind that prevents you to see the drop down menu. Take a look at this article and let me know if it seems familiar: How can I set up Sync on my computer?

  • Touchpad does not work in the guest account

    My touch pad (ASUS laptop with Vista) does not work when the computer opens under prompt, but it is very good when plate under the host icon.

    How can I the touchpad works again in the comments?  what I can remember, t move cursor in the comments section.

    Thanks to the one who has a handle on this

    Ian

    Hi Ian,

    1. when it last work very well?

    2. are you referring to the guest account or standard account?

    If the problem is on a guest account, try disabling the guest account, restart the computer, and then turn on the guest account and check if the touch pad to work.

    http://Windows.Microsoft.com/en-us/Windows-Vista/turn-the-guest-account-on-or-off

    Bindu R - Microsoft technical support.
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • I forgot the password and secret your answer, and my e-mail account does not work

    I forgot the password and I forgot the secret answer also, and my e-mail account does not work. I just my alternate email account, but my password is not sent to my alternate email account. any body can help?

    Call your e-mail server. Bruce Hagen ~ MS - MVP [Mail]

  • I created a Javascript script that adds a watermark on the document action "paper print".  This works in Acrobat Pro, but does not work in the drive.

    I created a Javascript script that adds a watermark on the document action "paper print".  This works in Acrobat Pro, but does not work in the drive.  I am a novice using Javascript, so what am I doing wrong?

    Cannot use either addWatermarkFromFile or addWatermarkFromText methods of document with player as shown in the documentation. You can hide/display the form fields and the existing layers, so consider this approach.

  • Packer of creative cloud in creating a package that I can install do not.  He goes through the motions, download all updates, create setup file, but it does not work despite the fact that there are no errors in the log files

    Packer of creative cloud in creating a package that I can install do not.  He goes through the motions, download all updates, create setup file, but it does not work despite the fact that there are no errors in the log files

    After hitting my head against the desk to repeatedly create packages, try on different computers I have finally found a solution.

    These packages have been copied on an external drive, if I try and install from the external drive, which is a common practice, it fails.

    If I then copy this file pkg from the outside, to the computer I install, then run it, it will to and moved very well.

    That is mind-boggling stupid, because it's rare that you have to copy the file into any computer, it is less always installed off the coast of externally, and many people in the company are pushing on the network and the management of the suites so there is a serious problem in Adobe package manager if this is the case where it cannot manage the Middle installed offshore.

    I hope that if anyone else is having problems so it suits.

  • I do click on box creation defaults to 0 point/does not include in the questionnaire?

    Hello. I use Cp8 on Windows 7.

    When I have a coach to save their project, I save in drive mode with the following audited: locates the mouse and movement, add boxes highlight and add boxes click click of the mouse


    Is there a way to make the click box default creation to 0 point/does not include in the questionnaire?

    My projects require a single point at the end (on an exit button) to show the pass completion/quiz.

    So I have to go through the whole project and uncheck the include in Quiz box for each click... box which can be a drag when I remove it 89 points!

    Like if I could put the click box or do NOT include in the questionnaire. Is this possible? This setting still exist? I looked through the Style object manager but don't see any settings click on box...


    Thank you.

    Click box is invisible, a 'style' is a style, there is never that included score in one style. And because of his invisibility, click box has no style.

    I know, it's very frustrating. Why a training simulation adds that a note to all areas of click remains a mystery, it is logical that it be for a simulation of the assessment, but not for training.

    In addition the menu «applies to all...» ' is not functional for reporting although it won't be dimmed

    What I do is open the Panel Advanced Interaction (F9) and filter on the click box. You cannot change this panel more (was the case of many versions ago, and I to get back but no way). It is dynamically linked to the properties pane, but you will always have to uncheck "Include in Quiz" for each CB. Sorry, this isn't the answer you expected, can only suggest that you enter a feature request to be able to implement this before the capture, or at least to be able to change the settings in the Advanced Interaction Panel.

Maybe you are looking for

  • Using icloud extra storage!

    What is the storage of extra walking for? I've updated to have more space for my applications, but it is not used!     .  So, basically the question is, the purpose in buying additional storage is to have more space to install more applications or no

  • Are to update the users Apple is going to be screwed for the Cliq?

    It is true that we must use some software of bike that works only on windows?

  • View the details of the defragmentation

    I am running Windows Vista and make defrag for the first time.  I don't know how to view the details while the defragmentation is running.  Do you need a response there.  This isn't like XP or previous OS from MicroSoft. Thanx, Syd

  • Need big help for my N WRT120

    Hello I need help I have connect my router normally, but now the custom router internet gives... When I connect my computer directly to the internet modem it work but when I connect with the router, it won't work I tried to restore default, there's n

  • HP 6500 quickbooks ck does not print but plain paper is ok

    My 6500 worked properly and had printed one of the two controls when he stopped a given error code paper mismatch.  I checked the configuration and everything seemed OK. He even printed the correct audit on paper, but whenever I inserted the controls