ECC 6.0 - troubles with login password

Hi, we upgraded the system from 4.6 to ECC 6. and now some of our users have the problems with passwords (login).
We suspect that more users have the same password. Is it possible that in new verision users need to have different passwords?
Thanks and BR
Saso

Hi
ECC 6.0 is having case sensitive password
so we need to enter the same
regards
Shiva

Similar Messages

  • Trouble with login password in Keychain Access

    Since upgrading to Snow Leopard, my "Login Password" seems to have changed. Not my account password, thankfully, but the Keychain Access Login Password that enables me to access my Login Keychain. I certainly did not change it, but the password I used in 10.5.8 doesn't work anymore. This has actually happened on two different machines
    I tried the 'First Aid' function in Keychain Access and got this error message:
    Checked password for ~/Library/Keychains/login.keychain
    *Password for ~/Library/Keychains/login.keychain is not the same as login password*, so keychain can't be unlocked automatically
    Login password could not be synchronized with keychain ~/Library/Keychains/login.keychain (-128)
    Unable to read settings for ~/Library/Keychains/login.keychain
    Okay, so how can the Password for the Login Keychain be different from the, uh, Login Password?!?!
    Is there any way to reset a Login Password, or do I just have to start a new one from scratch (really don't want to have to do that)?

    the password for any keychain can be set to anything you want. by default the password for you login keychain is set to be the same as you account password but that's done just for your convenience so that it can be unlocked automatically when you log in. those passwords are completely independent otherwise. changing one has no effect on the other. that said, unless you changed the account password or the keychain password yourself what you are seeing should not be happening.
    did you change your account password? if not your keychain could be corrupt.
    in Keychain Access is your login keychain locked? if it is select it and click on the lock above. if the keychain works ok it should ask you for the keychain password to unlock it. does it work?

  • Proxy with login password

    Hello,
    I try to use Jdev behind a firewall with ip + port + login + password
    How configure Jdev to work with this firewall
    Option Preference Proxy does not give the choice of login/password preference
    Thank you

    Hello,
    Were you able to successfully build your AIR app?  It is possible to bypass the timestamp but there are caveats.  Here's what the docs have to say:
    If ADT cannot connect to the time-stamp server, then signing is canceled and no package is produced. Specify -tsa none to disable time-stamping. However, an AIR application packaged without a timestamp ceases to be installable after the signing certificate expires.
    Chris

  • Thank you MrHoffman. I still have a problem with login password.

    Thank you Mr.Hoffman. I understand now. However, I do not log in when I boot up. I have no idea what my login password could be. I have never to my knowledge entered one, nor do I know how to. MACs are so cryptic, in addition to being different. So what do I do now? Where do I find my login info or how do I initiate it? Thanks in advance.

    See this Apple note on how to change your 10.7 Lion password: http://support.apple.com/kb/HT4798

  • Had trouble with my password and now when I turn on apple tv nothing comes up on my computer?

    I had problems with my password for apple and I have fixed that but now my apple TV doesn't seem to work. Just a blank screen. How do I get it to come up with the screen with Netflicks, HBO to Go, etc?

    Welcome to the Apple Community.
    Try the following steps, check whether things are working after each step where appropriate, before trying the next.
        1.    Restart the Apple TV (Settings > General > Restart).
        2.    Restart the Apple TV by removing ALL the cables for 30 seconds.
        3.    Restart your router.
        4.    Reset the Apple TV (Settings > General > Reset > Reset all settings)
        5.    Restore the Apple TV (Settings > General > Reset > Restore)

  • Troubles with login to SubOne portal server

    Hello evrebody,
    at first i'm sorry for my english, it's not good yet :(
    I develope forum based on DiscussionProvider and want to have register users on my forum.
    My trouble:
    I'm trying to login with LoginProvider, and I want that users after login going to another page,
    in the file display.template i wrote
    <form action="http://mainserver.domain.ru/amserver/UI/Login?&goto=http://virtaulsever.ru/portal/dt?provider=SomeProvider" target="_parent" method=post name="userid_form" enctype="application/x-www-form-urlencoded">But when i trying to login i go to the http://virtaulsever.ru/portal/dt?provider=SomeProvider
    but i'm still ANONYMOUS user...
    help me pleaase, how can i register and goto another page.
    Thanks.

    You may specify the module the user have to authenticate with adding in the url parameters module=LDAP for instance.
    Another solution is to specify an authentication level in your authentication module like 0 for anonymous and 1 for LDAP or any other module you are using. Then in the login url, you add the parameter autlevel=1 (require to authenticate against a module for which the level is at least 1).

  • Trouble with Login Redirect [$_SESSION['PrevUrl']

    I'm using the DW functionality to confirm that a user is logged in before allowing access to a page. Everything works except successfully redirecting to the previous URL. Here's the situation:
    User accesses a page with a url such as "addtocookbook.php?recipeid=6".
    Since the user is not logged in, they are redirected to"login.php".
    After successfully logging in, the user is redirected to "addtocookbook.php" without the "recipe=6".
    My login page does attempt to direct the user to the previous url (if it exists). I'm not sure if there is a simple way to make the variable $_SESSION['PrevUrl'], used by DW to redirect,  store the entire url.
    Any help is appreciated.
    Elie Chocron

    The problem lies with some obsolete code in the Restrict access to page server behavior. Fortunately, the fix is quite simple.
    The affected section of code is as follows:
    if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {  
      $MM_qsChar = "?";
      $MM_referrer = $_SERVER['PHP_SELF'];
      if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
      if (isset($QUERY_STRING) && strlen($QUERY_STRING) > 0)
      $MM_referrer .= "?" . $QUERY_STRING;
      $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
      header("Location: ". $MM_restrictGoTo);
      exit;
    All that is necessary is to replace the three instances of $QUERY_STRING like this:
    if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {  
      $MM_qsChar = "?";
      $MM_referrer = $_SERVER['PHP_SELF'];
      if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
      if (isset($_SERVER['QUERY_STRING']) && strlen($_SERVER['QUERY_STRING']) > 0)
      $MM_referrer .= "?" . $_SERVER['QUERY_STRING'];
      $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
      header("Location: ". $MM_restrictGoTo);
      exit;
    The redirect will then work correctly.

  • Build .air behind HTTP proxy with login/password

    Hello,
    I'made an air application with aptana, bu I can't build my app in a air file.
    I'm behind a proxy with authentication. I'got error during timestamp.
    I try many options, I can't do this air file.
    In another post a find :
    "You need to have a network connection for timestamping to work. If that network connection uses a proxy server, you may also need to set up the JRE to use that proxy (Seehttp://www.java.com/en/download/help/5000020600.xml). "
    But in the JRE option, I can't set a login or passorwd for proxy.
    If I understand my compnany can't build air application ? or there is another soution ?
    Thanks.

    Hello,
    Were you able to successfully build your AIR app?  It is possible to bypass the timestamp but there are caveats.  Here's what the docs have to say:
    If ADT cannot connect to the time-stamp server, then signing is canceled and no package is produced. Specify -tsa none to disable time-stamping. However, an AIR application packaged without a timestamp ceases to be installable after the signing certificate expires.
    Chris

  • Trouble with my password

    Hey everyone, so I was changing my iphone 4s password and all I did was change one number, and somehow when they asked me to confirm the new one
    I typed it in wrong TWICE. and now i have no idea what the code is and it is now disabled for 60 minutes so what do I do?? I've been doing research and it says that the only way is to resore the phone which I really dont want to do becuase I can't lose all my photos,apps,contacts and stuff. any suggestions???

    Once the Device is asking to be Restored with iTunes... it is too late to save anything...
    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...  Be sure to Follow ALL the Steps...
    After you have Recovered your Device...
    Re-Sync your Content or Restore from the most recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766

  • Trouble with prasing password field text as string

    Hi,
    I am using the newest SDK and having trouble prasing the text in password field as string instead of object.
    I tried to use toString method but it ended up display the address instead....
    How should I do it?...

    DarrylBurke wrote:
    I would think you'd get the text as a String from a JPassword Component.Um, JPasswordField#getText() is deprecated for security reasons, and it is recommended to use getPassword(), which returns a char[]
    dbGood catch Darryl, I didn't go back and check; which I should have. Sorry for the misleading information then. My thoughts were that the getText() would most likely be done like this:
    char[] text = myPwdField.getText().toCharArray();
    ... but, as I said, I did not go back and look. Sorry.
    ~Bill

  • Trouble with Login

    I can't log in even though I just bought your product.

    Hi temenos1,
    What product did you buy and what error you get while logging in?
    Please contact Customer care ( http://helpx.adobe.com/contact.html ) or Chat with a technical representative ( http://www.adobe.com/support/chat/ivrchat.html ) for all login / Adobe ID related issues.

  • Telnet - dealing with login/password

    Hi,
    I've been searching the net for a while trying to figure out how to implement a telnet java application so that I can login into a Unix server and do some stuff. But unfortunately I haven't had much luck. I've found an API provided by Jakarta which has a telnet class and it works it connects to my unix server but doesn't prompt me with a login screen. At first I figure it to be that maybe it takes a while so i put a sleep on the thread but that didn't work either. So if anybody could help me out here on this small part that would be great.
    Thanks,
    Alfred

    Not exactly what you are looking for, but somewat related. I don;t know about the Jakarta Telnet API, but there is a free "ipWorks" telnet API available which is pretty easy to use. You may try that if you are still in evaluation phase.

  • Troubles with gmail password on ipad

    i've changed my gmail password recently and i can't change it on my ipad (ios 5.0.1)... when i trying to open mail settings, it drops to the main screen...
    how can i fix it?
    p.s. sorry for my english

    Hey alinefromtx,
    Thanks for the question. I understand that you are experiencing issues signing into your Gmail account on your iOS devices. The following resource may provide a solution:
    iOS: Gmail account will not connect to Gmail server
    http://support.apple.com/kb/TS3058
    Thanks,
    Matt M.

  • Trouble With Login at startup

    so i had just refreshed my pc due to some issues with the start menu and they cleared so after i updated and rebooted i couldn't type so i tried to use the pop up touchscreen since my laptop has a touch screen and nothing happened so i tried to use the
    on screen keyboard but the ease of access button does absolutely nothing and then begins to lag and then freeze and would like to know if there's a fix or a way to fix it?

    H,
    Do you mean
    that after the updates, you are completely locked out from your machine? Have
    you tried power off the machine, then unplug the keyboard\mouse for moments,
    reconnect again, check the result?
    Yolanda Zhu
    TechNet Community Support

  • Trouble with Spry Password

    I just bought dreamweaver and I'd like to use the password widget.  At this point I'm just trying to compare the input to a string.  However, it appears that the java script is running when the form loads and not when I type in the password box.  I'll paste my code below.  If anyone can help I'd really appreciate it.
    thanks!!!
    <html>
    <head>
    <title>HOA Meeting Minutes</title>
    <style type="text/css">
    body {
    font-family: verdana,arial,sans-serif;
    font-size: 10pt;
    margin: 30px;
    background-color: rgb(225,208,188);
    border: thick #000;
    background-repeat: no-repeat
    </style>
    <link href="CSSFiles/imageMenu.css" rel="stylesheet" type="text/css">
    <link href="SpryAssets/SpryValidationPassword.css" rel="stylesheet" type="text/css">
    <script src="JavascriptFiles/mootools.js" type="text/javascript"></script>
    <script src="JavascriptFiles/imageMenu.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationPassword.js" type="text/javascript"></script>
    </head>
    <body>
    <label for="Password">Password</label>
    <form>
    <span id="sprypassword1">
    <input type="password" name="Password" id="Password">
    <span class="passwordRequiredMsg">A value is required.</span>
    </span>
    </form>
    <h6><a href="content.html" title="Return">Return to Main Menu</a></h6>
    <h1>
      <center>
        <p><img src="hoa_meet.png" width="617" height="177" alt="HOA Meeting Minutes"></p>
      </center>
    </h1>
    <script type="text/javascript">
    document.write(sprypassword1);
    var sprypassword1 = new Spry.Widget.ValidationPassword("sprypassword1",{validateOn:["blur", "change"], minChars:6, maxChars:15});
    if(sprypassword1 == "Agent007")
    document.write("Welcome special agent 007");
    else
    document.write(sprypassword1);
    </script>
    </body>
    </html>

    Try
    <!doctype html>
    <html>
    <head>
    <title>HOA Meeting Minutes</title>
    <style>
    body {
    font-family: verdana,arial,sans-serif;
    font-size: 10pt;
    margin: 30px;
    background-color: rgb(225,208,188);
    border: thick #000;
    background-repeat: no-repeat
    </style>
    <link href="CSSFiles/imageMenu.css" rel="stylesheet">
    <link href="SpryAssets/SpryValidationPassword.css" rel="stylesheet">
    </head>
    <body>
    <form name="myForm">
      <span id="sprypassword1">
        <label for="Password">Password</label>
        <input type="password" name="Password" id="Password" onKeyUp="showMessage();">
        <span class="passwordRequiredMsg">A value is required.</span>
      </span>
    </form>
    <div id="message"></div>
    <h6><a href="content.html" title="Return">Return to Main Menu</a></h6>
    <h1>
      <center>
        <p><img src="hoa_meet.png" width="617" height="177" alt="HOA Meeting Minutes"></p>
      </center>
    </h1>
    <script src="JavascriptFiles/mootools.js"></script>
    <script src="JavascriptFiles/imageMenu.js"></script>
    <script src="SpryAssets/SpryValidationPassword.js"></script>
    <script>
    var sprypassword1 = new Spry.Widget.ValidationPassword("sprypassword1",{validateOn:["blur", "change"], minChars:6, maxChars:15});
    function showMessage() {
        var div = document.getElementById('message');
        if(myForm.Password.value == "Agent007")    div.innerHTML = "Welcome special agent 007";
        else div.innerHTML = myForm.Password.value;
    </script>
    </body>
    </html>
    You will have noticed the DOCTYPE declaration to ensure that the browser understands. I prefer to place (links to) JS at the bottom of the document.

Maybe you are looking for

  • NEW FOLDER, for word processing, like Page and others?

    We're with a new IMac & iWork. We want to start a folder for docs if not also templates. It is for a word processing folder under Page, iWork and new Mac OSX.

  • Need a script to move files to folders

    Hi guys.  I have found a lot of similar threads but not something exactly like what I need. I have a ton of files that need to be sorted into folders of the same name.  I found scripts to help me with that however, I have some variations on the files

  • How can I put text on individual photos

    I would like to put text on some of my photos,,,,How?

  • Frustrated!!

    I have an ipod shuffle. 2nd generation. When I put it in it's station I can't get the autofill to work?? It has always just set itself up fine with a random selection from my music file. Now I can't get any music to copy to the ipod. Can anyone help?

  • Crystal Reports version XI Rel 2 Evaluation Copy Uninstall

    Post Author: ebh CA Forum: Data Connectivity and SQL I downloaded the evaluation copy of Crystal Reports XI rel 2, after satisfying myself that it would do what I needed, I uninstalled it.  Now my version of Visual Studio 2005 will not function when