To download Contribute, how do I find SFTP number, user name and password?

To download Contribute, am asked for a SFTP number, user name and password.  How do I find those?
Am using a Mac Mini.

I had been using an earlier version of Contribute, but when I upgraded to a Mac Mini, it no longer worked.   Then I got a new version on a trial basis.   When I tried to load to go full time with it a couple of days ago, I was asked for the SFTP number, user name and password.   I am trying to download and use on my Mac Mini in my home office.
I just don't know what the SFTP number is or where I'd find it.   I'm an uninformed, non-technical computer user.
Bob Vereen

Similar Messages

  • How do I add an automatic user name and password fill-in for a website

    When first visiting a website that requires a login, Firefox provides an option to remember the login/password for the site. If this option isn't selected the first time, how does one get Firefox to remember the login/password at a later date?

    If you clicked "Not now" then Firefox will ask again on the next visit to that log in page.<br />
    If you clicked "Never" then you create an exception and you need to remove that exception.
    You can remove exceptions here: Tools > Options > Security: Passwords: Exceptions
    See also [[Remembering passwords]]
    http://kb.mozillazine.org/User_name_and_password_not_remembered

  • How do I manually add a user name and password to a wanted saved account

    Ok you know how your mac will ask u  if you want this password saved, and then you save , how do u manually save passwords/user names.  In prefrence?

    If you are not online, you are not communicating with anybody. Any router connection you can access will put you online, the system does not care which particular router is used or where it is.

  • How to call CallbackHandler to input user name and password?

    Hello,
    I am new to CallbackHandlers. I wrote a small Swing application. I want this Swing application to display a login page so that user can enter user name and password, and then provide this to my CallbackHandler class.
    Here is what I did in my Swing main method
        public static void main(String[] args) {
            try {           
                LoginContext lc = new LoginContext("Login",
                        new MyCallbackHandler());
                lc.login();
                UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                new TestCVTApplication();
    ..Here is what I did in my CallbackHandler
    public class MyCallbackHandler implements javax.security.auth.callback.CallbackHandler {
        private String username;
        private String password;
        public MyCallbackHandler() {
        public void handle(Callback[] callbacks) throws java.io.IOException, UnsupportedCallbackException {       
            for (int i = 0; i < callbacks.length; i++) {
                if(callbacks[i] instanceof NameCallback){
                    NameCallback ncb = (NameCallback)callbacks;
    ncb.setName(username);
    if(callbacks[i] instanceof PasswordCallback){
    PasswordCallback pcb = (PasswordCallback)callbacks[i];
    pcb.setPassword(password.toCharArray());
    Would you let me know what I am missing?
    Thanks,
    Mustafa                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    The code you posted never assigns values to the private username and password fields of the MyCallbackHandler class. So when its handle method is invoked it simply assigns nulls to the values in the callback objects.
    Or is there code elsewhere you did not show? Are you certain that your callback is invoked at all?
    - Tim

  • HT4906 I want to download the new updates I think to the 10.9 but our mac was given to us and when it comes to the last page it asks for the user name and password but this mac was wiped clean. How do I find out this info so I can get iPhoto?

    I want to download the new updates I think to the 10.9 but our mac was given to us and when it comes to the last page it asks for the user name and password but this mac was wiped clean. How do I find out this info so I can get iPhoto? To be honest I'm not even sure what type of Mac I have and don't know how to find out what kind it is
    I'd also like to make address labels and don't know where to find that either

    You would make address lables with the Contacts app.
    If you don't have the user name and password used to set up the machine then you need to purchase the apps for yourself.

  • How do I find the report server name, and then run paper report from forms?

    How do I find the report server name, and then run paper report from forms?
    I am having a problem running report 9i from forms 9i (see below thread). How do I find out the name of the report server? I checked my C:\ids\reports\conf directory but don't see anything that gives me the name of the reports server. I also don't have a iashome directory.
    Also, I just want to run the paper report (not the web version).
    Thanks.

    Hi,
    please read teh Forms / Reports integration paper in teh Collateral section for Oracle9i Forms at otn.oracle.com/products/forms
    In summary, you have to create an external Reports Service that you can then give a name.
    Frank

  • How can I find the specific channel name and modify channel name in automatically in VBS?

    How can I find the specific channel name and modify channel name in automatically in VBS? (DIAdem 9.1)
    I would like to change channel name = "speed01" ... "speed10"  to  channel name = "velocity01"..."velocity10.
    martino

    Hello Martino,
    this script will help:
    Option Explicit
    Dim i
    Dim n
    For i=1 To 10
    If i < 10 then
    n = CNo("speed0" & i)
    Else
    n = CNo("speed" & i)
    End If
    If n > 0 Then
    If i < 10 then
    ChnName(n) = "velocitiy0" & i
    Else
    ChnName(n) = "velocitiy" & i
    End If
    End If
    Next
    Matthias
    Matthias Alleweldt
    Project Engineer / Projektingenieur
    Twigeater?  

  • How do you check what your user ID and password is?

    hey, anyone know how for me to find out my user id and password? I need them to start up my mail account and to download a program. I called apple but they said to either ask here or I'd have to extend my phone support, and thats too expensive for me right now, so I'm hoping somone here can tell me, thank you.
    ~Cole

    If you are accessing a mail account provided by your ISP, you should have been given an opportunity to set these when you signed up; if not, contact the ISP. If you are accessing a different email account, use the name or email address and password that you used when you signed up for it.
    If you are prompted for a password before installing an application or in the Finder, provide the username and password you used when you initially set up the computer.
    (17368)

  • How to validate user name and password in webdynpro.

    Dear All,
    Actually i have created login name and password in view, webdynpro and want to validate the user name and password but  i am not finding proper code to  how to validate user name and password.
    Pl do the needful help.
    Regards.
    Tazeer.
    Moderator Message: There is a seperate forum for WebDynpro. Please ask your question there.
    Edited by: kishan P on Oct 5, 2010 1:08 PM

    Hello, I don´t get you question. User authentication is ready out of the box in webdypro...
    Regards Otto

  • How to suffix user name and password remote pc in shutdown /s command

    Hi,
    We can shutdown a remote pc  using " shutdown /s /m \\ipaddress " command, only if password of remote pc is stored in windows credential  manager.
    But how to  add user name and password when i execute the command for example : when we map a share folder on our pc we use below command with  user name and password
    "net use * \\ipaddress\share password /user:username "
    can we give user name and password of remote pc  while we give shutdown command to turn off  a remote pc (without adding user name and password to windows credentials).
    Thanks in advance..........

    Hello Jayanth kundar,
    Based on my test, I can use the command shutdown /s /m \\10.157.21.77 to shutdown the remote computer when the have the same username and password.
    Do you mean that you want to add user name and password when you want to shutdown the remote computer?
    I can't find a user name and password in Windows Credential Manager, please share us a screenshot.
    Best regards,
    Fangzhou CHEN
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How do I recover lost user name and password

    I cannot log in to eprinter I forgot my user name and password. how can I resolve the problem?

    Try using the forgot password link when you are on the sign in screen. The username is always the email address you registered with, so put your email in and it should send a password reset link. If you have multiple email addresses and dont remember which one you used try this with each email until you get a reset link.
    Jon-W
    I work on behalf of HP
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    Click the KUDOS STAR on the left to say “Thanks” for helping!

  • How do I connect to Net Flix? I put in my user name and password which work fine with my iMac but not on my Apple TV?

    How do I connect to Net Flix? I put in my user name and password which work fine with my iMac but not on my Apple TV?

    Can you give me a screenshot of the User Accounts window in Control Panel?
    Please create a screenshot by following the guide mentioned at [[How do I create a screenshot of my problem?]].
    Once you've done this, attach the saved screenshot file to your forum post by clicking the '''Browse...''' button below the ''Post your reply'' box. You really help us to visualize the problem.

  • Firefox will not save my user name and password for one of my sites. How can I fix this problem. It is getting annoying having to reenter every time I check this site. Is there a solution.

    I had my user name and password saved for my library site. My grandson hit something and now the saved user name and password are gone. It asks me every time to enter it and it is getting annoying. How do I fix this. I want Firefox to remember these codes.

    You can create a bookmark with the JavaScript code via a right-click on the "Remember Password" link on the squarefree.com website and choose "Bookmark This Link" and select the "Bookmarks Toolbar" as the destination folder for easy access.
    * https://www.squarefree.com/bookmarklets/forms.html#remember_password
    You need to use the "Remember Password" bookmarklet before or after filling the name and password field on the website with the <u>login form</u>, but before submitting the login form by clicking a button on the web page.
    If the site is using autocomplete="off" then you see a number not equal to 0 (i.e. attributes were removed) in the pop-up alert from the bookmarklet and Firefox should offer to remember the name and password via a drop down dialog of the key icon that will appear on the location bar (Firefox 4+) or via an info bar at the top (Firefox 3).

  • HT204053 I did not know my kids had set up an Itunes account for me with one user name and password.  then i got an i phone and set it up with a different email address and new password.  how can i get my accounts to merge so i can have all of my music on

    I did not know my kids had set up an Itunes account for me with one user name and password.  then i got an i phone and set it up with a different email address and new password.  how can i get my accounts to merge so i can have all of my music on my iphone

    Quote: "You cannot merge two or more Apple IDs into a single one. You can, however, use one Apple ID for iCloud services and another Apple ID for store purchases (including iTunes in the Cloud and iTunes Match). See “Using one Apple ID for iCloud and a different Apple ID for Store Purchases” above for details." See also Apple ID & iCloud FAQ: http://support.apple.com/kb/HT4895?viewlocale=en_US&locale=en_US
    You can set up your iCloud account on your iOS device under: "Settings > iCloud" and a other account for store purchases under "Settings > iTunes & App Stores". Unfortunately merging accounts is not possible but you could transfer all of your music manually via iTunes from your Mac or PC.

  • HT1386 How do I create one Apple ID and iTunes user name and password for all of my Apple products: iPad, iPhone, and iPod plus iTunes on my PC?

    How do I create one Apple ID and iTunes user name and password for all of my Apple products: iPad, iPhone, and iPod plus iTunes on my PC?

    Yes, I do have multiple devices and it appeared to me that every time I tried to sync or log onto iTunes, the password was incorrect.  Consequently, I was and am constantly changing it.  Wouldn't it be nice if Apple would simply say that you only need one Apple ID and one password regardless of the number of Apple devices you intend to sync via iTunes. 
    Barring the above, how about a way to merge all of the Apple IDs and passwords into one.

Maybe you are looking for