Why Can't I Change Apple ID Password to a NEW password?

For security purposes, I am changing my Apple ID password swapping out letters in an old password for certain numbers.  (For example, changing As to 4 and O to 0 the word "password" would become "p4sswOrd")  I have changed 2 of the 10 characters in the password yet when I click update, I get an error message that says, "new password must not have been used in the past year" even though the password is different and has never been used.

I'm having the same problem too:
https://discussions.apple.com/message/23679203#23679203
Have you had anyluck solving it yet?
Thanks,
-audiosnob

Similar Messages

  • Why can't I change my apple id / email address associated with my apple id ?

    My apple id is associated with a gmail address.
    I wan't to change it to something else.
    So I went to: appleid.apple.com ---> Change apple id ---> Typed in new email address (everything shows green) ---> Hit Save.-->Edit box disappears as if everything went ok ----> But the box showing my apple id, still shows the gmail address!
    It still shows my gmail address!! Doesn't send any verification email or anything! No matter what I do, it doesn't let me change it from my gmail address!
    It let me change my password though, and also let me change my rescue email address.
    Why can't I change my apple id ?

    Hi KeanuReeves,
    It sounds like you have already done most of the steps in this article relating to changing the email associated with your Apple ID, but you may want to go through them again -
    Manage your Apple ID primary, rescue, alternate, and notification email addresses
    http://support.apple.com/kb/HT5620
    If you are still having difficulty changing the email address, you may want to contact Apple’s account security team using the contact information in this article -
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • HT5312 I changed my email address and apple is ok wih it but iCloud still has my old email address and is not recognising either my original password or my new password. How can I get my iCloud account email address corrected and also get my new password

    Hi
    I changed email addresses but iCloud sill has my previous address registered. It also is not recognising either my original password or my new password. How can I get my new email address into the iCloud system, and also lodge a new password with them?
    I'm using an ipad and all else is ok but not icloud.

    Welcome to the Apple community Ross.
    If you mean that Find My Phone is asking for a password to a different Apple ID to your current Apple ID and that ID is a previous version of your current ID, not an entirely different one.
    This feature has been introduced to make stolen phones useless to those that have stolen them.
    However it can also arise when the user has changed their Apple ID details with Apple and not made the same changes to their iCloud account/Find My Phone on their device before upgrading to iOS 7, or if you restore from a previous back up made before you changed your details and some other circumstances.
    The only solution is to change your Apple ID back to its previous state with Apple at My Apple ID using your current password, you don’t need access to this address if it’s previously been used with your Apple ID, once you have saved these details enter the password as requested on your device and then turn off "find my phone" and delete the account from your device. It may take a short while to remove the account.
    You should then change your Apple ID back to its current state, save it once again and then log back in using your current Apple ID. Finally, turn "find my phone" back on once again.
    This article provides more information about Activation Lock.

  • Why can I not change the apple id associated with iphoto and imovies

    Why can I not change the appleid associated with iphoto and imovies

    Is it not your Apple ID? Is this a used Mac? If so, the Mac, OS X and the iLife apps are all registered to the original owner of the Mac.
    When someone sells a Mac they should erase the Mac and reinstall the most recent version of OS X that came with the Mac. And they should call Apple Care and have the Mac, the OS and the iLife apps disassociated from their Apple ID. Can you call the original owner and request that?

  • Why can't I change my font style, and please don't give me a apple approved generic answer, please give me a reasonable answer as to why, not just because we designed it that way.

    Why can't I change my font style, and please don't give me a apple approved generic answer, please give me a reasonable answer as to why, not just because we designed it that way.i see that we have a choice here but why not in Email

    This is a forum for users to help other users, and there is no Apple presence
    here. Leave your comments at http://www.apple.com/feedback, but do not
    expect a response. Apple does not comment on its internal decisions.
    Check the AppStore to see if there is an alternative mail app that allows what
    you want.

  • Why can't I change the transaction isolation level?

    I was trying to change the transaction isolation level from an EJB. My source codes are shown as the follows:
    ======================================================
    /*********************** Database Routines *************************/
    private void makeConnection() {
    try {
    InitialContext ic = new InitialContext();
    DataSource ds = ( DataSource )ic.lookup( dbName );
    con = ds.getConnection();
    DatabaseMetaData dmd = con.getMetaData();
    show_supported_trans_levels( dmd );
    int status = con.getTransactionIsolation();
    System.out.print( "1. " );
    disp_tx_status( status );
    System.out.println( "con.isReadOnly() = " + con.isReadOnly() );
    con.setTransactionIsolation( Connection.TRANSACTION_SERIALIZABLE );
    System.out.print( "2. " );
    disp_tx_status( status );
    } catch( SQLException ex ) {
    System.err.println( "SQLException: " + ex.toString() );
    throw new EJBException("Unable to connect to database. " +
    ex.getMessage());
    } catch( NamingException ex ) {
    System.err.println( "NamingException: " + ex.toString() );
    throw new EJBException("Unable to connect to database. " +
    ex.getMessage());
    private void disp_tx_status( int status )
    System.out.print( "Transaction Status: " );
    switch( status )
    case( Connection.TRANSACTION_READ_UNCOMMITTED ):
    System.out.println( "TRANSACTION_READ_UNCOMMITTED" );
    break;
    case( Connection.TRANSACTION_READ_COMMITTED ):
    System.out.println( "TRANSACTION_READ_COMMITTED" );
    break;
    case( Connection.TRANSACTION_REPEATABLE_READ ):
    System.out.println( "TRANSACTION_REPEATABLE_READ" );
    break;
    case( Connection.TRANSACTION_SERIALIZABLE ):
    System.out.println( "TRANSACTION_SERIALIZABLE" );
    break;
    case( Connection.TRANSACTION_NONE ):
    System.out.println( "TRANSACTION_NONE" );
    break;
    default:
    System.out.println( "UNKNOWN" );
    break;
    private void show_supported_trans_levels( DatabaseMetaData dmd ) throws SQLException
    System.out.println( "List of Supported Transaction Isolation Levels: " );
    if( dmd.supportsTransactionIsolationLevel( Connection.TRANSACTION_READ_UNCOMMITTED ) )
    System.out.println( "TRANSACTION_READ_UNCOMMITTED is supported!" );
    else
    System.out.println( "TRANSACTION_READ_UNCOMMITTED is unsupported!" );
    if( dmd.supportsTransactionIsolationLevel( Connection.TRANSACTION_READ_COMMITTED ) )
    System.out.println( "TRANSACTION_READ_COMMITTED is supported!" );
    else
    System.out.println( "TRANSACTION_READ_COMMITTED is unsupported!" );
    if( dmd.supportsTransactionIsolationLevel( Connection.TRANSACTION_REPEATABLE_READ ) )
    System.out.println( "TRANSACTION_REPEATABLE_READ is supported!" );
    else
    System.out.println( "TRANSACTION_REPEATABLE_READ is unsupported!" );
    if( dmd.supportsTransactionIsolationLevel( Connection.TRANSACTION_SERIALIZABLE ) )
    System.out.println( "TRANSACTION_SERIALIZABLE is supported!" );
    else
    System.out.println( "TRANSACTION_SERIALIZABLE is unsupported!" );
    =========================================================
    However, I encountered the following exception when running at the highlighted statement:
    ======================================================
    SQLException: java.sql.SQLException: Transaction manager errors. statement not allowed in XA Session.
    ======================================================
    To my surprise, the isolation level TRANSACTION_SERIALIZABLE is supported from the database vendor. So why can't I change the transaction isolation level?

    You can change the setting, you may need to click the lock at the bottom of the preference pane. Be careful what you download and install, Gatekeeper is there to help you. OS X: About Gatekeeper - Apple Support

  • Why can't i change the setting at the security

    Why can't i change the setting at the security & privacy? After I switch to OS X Yosemite, i cant install some application. It says that I can install due unidentified developers. Can anyone help?

    You can change the setting, you may need to click the lock at the bottom of the preference pane. Be careful what you download and install, Gatekeeper is there to help you. OS X: About Gatekeeper - Apple Support

  • WHY can't i change the civility in itunes store always said that there is an error, WHY can't i change the civility in itunes store always said that there is an error

    HELP
    WHY can't i change the civility in itunes store always said that there is an error, WHY can't i change the civility in itunes store always said that there is an error

    try this
    http://support.apple.com/kb/HT1452
    but also, do you already have your itunes account runnig on other computers?  if so how many ?

  • Why can't i change my email junk filter from never to delete after 1 week

    why can't i change my email junk filter from "never" to "delete after 1 week"?

    Error -1
    Attempt to restore your iOS device two more times. If the issue is still unresolved, the device may need service.
    http://support.apple.com/kb/TS3694

  • I forgot my security questions, why can't I change them in my account management screen?

    I forgot my security questions, why can't I change them in my account management screen?

    I suspect that is for security reasons. The following gives instructions on how to reset them:  http://support.apple.com/kb/HT5312
    Note the last paragraph in particular if you don't have a rescue email address:

  • When is Apple going to fix the problems with IOS8 Safari either won't work or is very slow.why can't you contact Apple themselves rather than this method?

    ssince updating my IPad to IOS8 Safari does not work properly ie Marriott website it tells me no server is available yet Google works and other web search have the same problem when is Apple going to get fixes out soon I hope.Also why can't we contact Apple direct on this matter ?

    Try some basic troubleshooting steps. Clear Safari, force close the app and reset the iPad.
    Go to Settings>Safari>Clear History, Cookies and Data.
    In order to close apps in iOS 8, you have to drag the app up from the multitasking display. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the app that you want to close and then swipe "up" on the app preview thumbnail to close it.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    There re are ways to contact Apple directly. Look here for help.
    Contact Apple for support and service

  • Why can i not connect apple tv to the new A&E app with cox cable?

    Why can i not connect apple tv to the new A&E app with cox cable?

    Currently users must be Verizon Fios, Direct TV, or Optimum customers to activate the A&E channel.

  • Why can't I change to size of my test in emails now? CanI go back to previous email version. This one is horrible!!!

    Why can't I change to size of my test in emails now? CanI go back to previous email version. This one is horrible. On my last update I was able to easilt find old emails now they disappear!!!! WTF?
    This version cannot change the text size Do I have to go back to IE?

    Which email site do you use?
    And some general advice:
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    "3-bar" menu button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?

  • HT201210 Why can't I change the location of my device backups?

    Why can't I change the location of my device backups?
    iTunes seems to force me to use my c:\ drive as the destination for all backups. 
    Background: I have set up my c:\ drive only for programs - all data is stored on separate drives - including my iTunes library and all media. So, I can't skinny down the c:\ drive any more without uninstalling programs.
    The issue is that my 10,000 rpm, 280 GB - C:\ drive is fast but small and is now FULL after I got about 1/2 way through a 128 GB backup of my ipad.  (Yes, all movies have been deleted off of the iPad to minimize the size of the backup.)
    I deleted the partial iPad backup, moved all the Mobile Applications to another drive, emptied the recycle bin and tried again with my much smaller iPhone.  You guessed it: the io7 update hung and both of my devices are now paper weights.
    Which leaves me f*cked, anyone know how I can un-f myself? 

    SPURCHASE wrote:
    The issue is that my 10,000 rpm, 280 GB - C:\ drive is fast but small and is now FULL after I got about 1/2 way through a 128 GB backup of my ipad.  (Yes, all movies have been deleted off of the iPad to minimize the size of the backup.)
    iTunes movies are not part of an iDevice backup.
    Videos & photos you take with the camera (in the Camera roll) are part of the backup but those should be sync'd to the computer and removed from the camera roll.

  • Why can't I change colors of objects?

    why can't I change colors of objects?

    Thanks KT.  I did mean the Fill color, but my real issue is that changing the fill color in the inspector doesn't change the color of the selected object.  In tis case, I was trying to chnage the fill color from pale blue to the more ingense blue:

Maybe you are looking for

  • How to do this in Crystal Reports

    hi all, i want to fetch the text line from PO to my Crystal Report [Please see Image|http://i264.photobucket.com/albums/ii184/abing430/PLD-Crystal.jpg] i been able to do this in PLD but i cannot do it in Crystal report. regards, Fidel

  • Left Outer Join In OBIEE

    Hi, I have two Oracle tables in the physical layer: a fact table and a dimension table. The fact table (FACT_TBL) like this: CURR_MTH | PREV_MTH | CURR_GRADE | PREV_GRADE | CITY | VALUE Jun | May | B | A | X | 5 Jun | May | A | A | Y | 10 Jun | May |

  • Can't find Bootcamp at power on.

    I have a MacBook Pro. I had it configured for dual boot via bootcamp with windows 7 and OSX Mavericks. There was a problem and I had to reinstall OSX. Now the Bootcamp partition still exists but is not available when I hold the option key and power u

  • Unlock carrier locked iPhone(perhaps refurbished

    Hello, I've purchased a used iPhone 3GS 16gb 2 years ago. The person selling the phone said that it was carrier locked to 3 in Denmark but it turned out that it was possible to use it with 3 in Sweden( where I live) as well. However when restoring it

  • Tried to do an update,  error 1114

    Tried to do an update, error 1114.