I have created a new account and have been waiting for my verification email

I have created a new account and have been waiting for my verification email

If you are in South Africa then you can only use the South African store - to use the US store you will need to be in the US with a US billing address on your account.
If you are not getting the email then check your spam folder and/or request that it be resent.

Similar Messages

  • I have been trying to get my daughter's iPod Facetime to work. But when we log on it won't let us. When we put in our ID and password it attempts to verify but fails and when we have create a new account and had confirmation email it still wont verify???

    I have been trying to get my daughter's iPod Facetime to work. But when we log on it won't let us. When we put in our ID and password it attempts to verify but fails and when we have create a new account and had confirmation email back it still wont verify???

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime: Set-up, Use, and Troubleshooting Problems
    http://tinyurl.com/32drz3d
     Cheers, Tom

  • HT5622 My family shared an itunes account and now i'm moving out and have created a new account just for myself. Is there a way to transfer my previous purchases on the other account to my new account?

    My family shared an Itunes account and now i'm moving out and have created a new account solely for myself. Is there a way to transfer my previous purchases on the family account to my new account?

    In order to continue to play and sync the music you purchased with your old account, you'll need to authorize your new computer/iTunes library to do so.  You can do this by choosing Store -> Authorize This Computer and then entering in your old account credentials.
    That's all you should need to.  Then just create your own account and start purchasing and using it the same you have with the old one.
    B-rock

  • I have created an iTunes account on my current computer for my daughters ipod touch and tried connecting my ipod nano and it won't sync and says that it is associated with another iTunes library so how do I merge the two libraries?

    I have created an iTunes account on my current computer for my daughters ipod touch and tried connecting my ipod nano and it won't sync and says that it is associated with another iTunes library so how do I merge the two libraries?

    You do not merge libraries.
    iDevices sync to one and only one computer.
    If you want a single library, you manually move the content from one library to another... all content will still be associated with the Apple ID it was acquired with.

  • I just restored my 13" MBP i5 at the apple store to the newest version of Lion after issues with a previous Time Machine backup from Snow Leopard- this time I created a new account and just ported files and folders, and now MS Office doesn't work. Help?

    I just restored my 13" MBP i5 at the apple store to the newest version of Lion after issues with a previous Time Machine backup from Snow Leopard- this time I created a new account and just ported files and folders, and now MS Office doesn't work.
    ^^ that's the main problem. Here's the full history.
    I bought a new 13" i5 MBP, early 2011 edition. I had an old white Macbook 2.14 ghz core2duo on Snow Leopard. I attempted to port over my time machine backup, but encountered problems in that my User was inaccessible from the new computer after the import finished, and I had to go in and change the root password, etc, and for some reason or another, I couldn't install any programs at all from that administrator's account. By "couldn't" I mean I could install them, but upon installation they would never boot. So, I took it to the apple store and did a clean install from the most up to date Lion OSX. Then, I created a brand new admin account, instead of trying to import the old one, and things seemed great. Then, I just imported my old files from the TM backup, but not any system settings, permissions, or user data. Just my Docs, pics, vids, apps, and itunes stuff.
    Here's where things get weird again. I imported this stuff under the name "old", but all of these folders have a red negative sign on them, marking them as restricted. So, from my main admin account, I cannot even peruse these folders. Since I didn't import user data, I can't sign in to the "old" account to change permissions. I already tried to change the permissions from system preferences, but that didn't change anything. And now, for whatever reason, of all the apps that were imported then, MS Office is the only set of apps that does not work. When I click on it, it just says there was a problem and asks if I'd like to send a report to apple. I tried reinstalling it to no avail. I'm an English student, so i really need access to Word. Can anyone help? The Apple store is a major detour for me and would like to fix this issue myself.

    Most likely you have Office 2004 which are PPC-only applications and will not work in Lion. Upgrade to Office 2011. Other alternatives are:
    Apple's iWork suite (Pages, Numbers, and Keynote.)
    Open Office (Office 2007-like suite compatible with OS X.)
    NeoOffice (similar to Open Office.)
    LibreOffice (a new direction for the Open Office suite.)

  • How do I move all my files from one User Profile (account) into another? I needed to create a new account and want all of my files accessible in the new one.

    How do I move all my files from one User Profile (account) into another?
    I needed to create a new account and want all of my files accessible in the new one.

    ok, what you're learning right now is 101 unix, which is good. Unix is a good thing
    now: the way unix works, and macos (which uses unix underneath) the files and folders work like a hierarchy.
    the start of that tree is /
    so, if you were to do:
    cd /
    (cd means change directory)
    it will bring you at the highest branch of the file system.
    cd /Users
    will bring you to where all the users are.
    to see whats in /Users you can use your friend ls command
    ls means list files/directories
    so:
    cd /Users
    ls -la
    (the -la here means show all (even hidden) and long format (very verbose))  this flag is very optional.
    you will see
    fred
    user2
    for example.
    if you want to see the desktop of user2 you would change directory to it then list the files.
    for example:
    cd /Users/user2/Desktop
    Note that the files and directory are case sensitive, so, desktop is NOT the same as Desktop, or DESKTOP
    ls -la
    you should then be able to see everything in users2 desktop
    you could have done as well the same thing in smaller steps, for example:
    cd /
    cd Users
    cd user2
    cd Desktop
    this is the equivalent of cd /Users/user2/Desktop
    So, for your file, i don't know where it was, but know that if you log in as user2, it will directly put you in
    /Users/user2
    which most likely the file you had created from the other user was in /Users/user1
    if you copied all the files from /Users/original_user to /Users/secondUser
    most likely yes, all your mail, bookmarks etc would be copied over.
    so in your case.
    sudo chown -R seconduser:staff /Users/secondUser
    should work
    Remember that if you start a path with the character /  it means start from the root of the file system, at the highest top you can ever get.
    so
    cd /Users/fred
    is not the same as
    cd Users/fred
    unless you were in / already
    i know it may be confusing at first but it's actually very logical if you play with it.
    to simplify, think of it that / means C:\  on windows
    you can't go any higher than C:\  (in a way)
    if you're unsure which directory you're currently in, you can always type:
    pwd
    it will tell you where you are.
    for example:
    cd /
    pwd
    this shows  /
    cd Users
    pwd
    this now shows /Users
    cd /System/Library
    pwd will show /System/Library
    cd /
    cd /Users
    cd fred
    cd Library
    pwd will show /Users/fred/Library
    unix can look very scary but it's actually vital and very necessary to do tasks sometimes that would take for ever to do via the windows. This is good learning.
    so for the myfile you had created, i can't tell you where it is, at the time you created, if you can do a pwd command you'll know the path,
    ls -la  (this shows all the files where you are)
    if you see myfile in the list
    do a pwd
    whatever is return, the real location of the file would be:
    whatever pwd returned / myfile
    I hope that makes sense.

  • How to create a new account and copy all settings?

    I think my main user account is corrupted. So I want to create a new account and copy all of my settings, files etc..and more than likely piecemeal just incase my settings are what is corrupted. That way I can isolate the problem.
    I don't plan to delete the main account until satisfied and I also have my Time Machine backup plus my SuperDuper backup.
    I can/should be able to figure out how to create the new account, but I am very unclear on the best/easiest approach to copy in my iTunes files and settings, applications(is this even an issue), address book, email, etc? I should be able to find most everything underneath my home account folders but what else am I missing here? I don't want to find out the hard way.
    Please share some advice or perhaps a link/FAQ on how to approach.
    Thanks in advance.
    --Mickey

    use this [link|http://discussions.apple.com/message.jspa?messageID=6185507].

  • I created a new account and entered a redeem code but i can't sign in

    Hello. I just created a new account and i set the location in United States. I entered a redeem code. when i sumbit, they said that i've redeemed 10$ successfully. then i tried to purchase an app, then it suddenly requeired my to sign in then i couldn't sign in. it keeps on telling me that they couldn't find my account. help please

    Most likely you have Office 2004 which are PPC-only applications and will not work in Lion. Upgrade to Office 2011. Other alternatives are:
    Apple's iWork suite (Pages, Numbers, and Keynote.)
    Open Office (Office 2007-like suite compatible with OS X.)
    NeoOffice (similar to Open Office.)
    LibreOffice (a new direction for the Open Office suite.)

  • I have created a new partition on the Mac HD for Lion as I would like to dual boot. Do I need to install Snow Leopard on that partition before installing Lion? If so, can I use one of my Time Machine backups to do this?

    I have created a new partition on the Mac HD for Lion as I would like to dual boot. Do I need to install Snow Leopard on that partition before installing Lion? If so, can I use one of my Time Machine backups to do this?

    zoominnana wrote:
    Can I set up 2 different time capsule backups? one for the lion partition and one for the snow leopard partition?
    No, you can't partition a Time Capsule's internal HD.  Both partitions will back up to the same sparse bundle. keeping the backups for each partition separate.
    Time Machine will not take the two OSX partitions as two different computers, but for best results, exclude the Snow Leopard drive from backups on the Lion partition, and exclude the Lion partition from backups on the Snow Leopard partition.
    There may be some files on the Lion partition that Time Machine on Snow Leopard won't like, among other things.  See #10 in  Time Machine - Frequently Asked Questions for details.

  • HT201342 Hello, I have an Apple-iCloud account and have used one e-Mail address with that account. I want to add another address for my wife. How do I do it? Thanks

    Hello, I have an Apple-iCloud account and have used one e-Mail address. I would like to add another address for my wife on same account. How do I do it?

    Hey there Raul,
    It sounds like you have an iCloud account, and want to create one for your wife using the same iCloud account. You can do this with an iCloud Alias, and this article will help you do that. Keep in mind that any and all purchases made with the alias will not be transferrable or merged with another account if she wants to have her own account down the road.
    iCloud: Create or change email aliases
    http://support.apple.com/kb/PH2622
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • Can I create a new account and keep all of my purchases and downloads?

    Can I create a new account and keep all of my old content? Recently got divorced and share the itunes account with my ex. I want a new account but do not want to lose all of my old content. Is this possible?

    Kmiller, 
    Get a copy of the entire iTunes library and copy it to the computer that you will be using from now on.
    iTunes Plus songs will still be playable, as will any "normal" MP3s that were purchased from Amazon or ripped from CD. 
    Any "protected" content from the iTunes Store, such as movies, shows, or pre-2009 songs, will not be playable.  If you need to replace any such items with playable copies, a cost will be incurred.  Make sure to account for this in the property settlement.

  • How do I create a new account and get stuff from the old account to the new account

    How do I create a new account and get stuff from the old account to the new account

    There are instructions on this page for creating a new account : Set up an Apple ID in iTunes
    Or if you don't want to give credit card details : Create an iTunes Store, App Store, or iBooks Store account without a credit card or other payment method
    But you won't be able to transfer purchases from your old account to it, all content that you download from the store will remain tied to the account that downloaded it.

  • I have created an iMovie file and have created an iDVD menu file. I am now ready to burn a DVD. But my superdirve is broken. If I put my files on a mac without iMovie or iDVD, can I burn my DVD with Toast 11?

    I have created an iMovie file and have created an iDVD menu file. I am now ready to burn a DVD. But my superdirve is broken. If I put my files on a mac without iMovie or iDVD, can I still burn my DVD with Toast 11?

    no need for Toast ..
    tell iDVD to create a disk-image
    transfer dmg to othe Mac
    launch the Disk Utility, burn that dmg .......

  • I'm trying to set up a sync account but when I get to the window with the "Create a new account" and "Connect" nothing happens when I push either of the buttons.

    I'm trying to set up a sync account but when I get to the window with the "Create a new account" and "Connect" nothing happens when I push either of the buttons.

    By the way, this is in the brand new Firefox 4, not an extension.

  • Hello.  I am about to migrate over to iCloud.  I don't think I see my situation addressed. I have one mobile me account and a separate appleID for purchases.   I have 4 devices and my wife has two. Right now they are all using the same mobile me account t

    I don't think I see my situation addressed. I have one mobile me account and a separate appleID for purchases.   I have 4 devices and my wife has two. Right now they are all using the same mobile me account to sync just the calendar and address book.
    1.)  I want to add email syncing for my 4 devices and email syncing for my wife's two devices separately, but we want to sync and share the same calendar and address book.  Is this possible?
    2.)  I also have 5 different calendars, one for work, one for home, one for... etc.  Is there a way to have different devices only sync certain calendars and not others or is it an all or nothing deal?
    Thanks in advance for any tips!
    S

    To begin with, I would like to try to explain Apple's confusing nomenclature in regard to iCloud.
    Apple have called the whole cloud thing iCloud, there are a number of features under the iCloud umbrella, some of which require their own login. iTunes is one of these, another is what Apple have unfortunately also called iCloud.
    You can use the same Apple ID (account) to login to both iCloud and iTunes, but you don't need to and often users will login to each service using a different ID.
    The part that you need to remember is that the services available when you log into iCloud are completely different and unrelated to those when you log in to iTunes. Your iCloud login enables mail, contacts, calendars, find my phone, Back to My Mac, Documents & Data sharing and photosstream, it does not affect any of your iTunes services.
    To avoid confusion when discussing your problem, when I mention iCloud, I am referring to the services under the iCloud login, Whereas I will refer to the whole cloud thing as The Cloud.
    Generally speaking it is not a good idea to share an iCloud account between different people, it often results in contracts, calendars et cetera being deleted by others. Saying that however you can add secondary iCloud accounts to your devices at settings> mail, contacts, calendars. Secondary accounts do not have all the features of a primary account, but are often very useful. Because you can enable or disable each individual feature of an iCloud account, you can cover almost any situation by using secondary accounts.

Maybe you are looking for

  • How to show States window??

    Hi, I am using Fireworks CS3 and I want to make a button with a rollOver feature but all the tutorials says I need to go t o 'states' but I dont know how to get to it. I have looked all through the Window tab at the top but cant find anything on stat

  • Creating Oracle Model of SQL Server 2000 Model

    Hi, I have encountered couple of T-SQL where such case statements are resides stated below. I have found out that when I erased the distinct, it was parsed correctly by the OMWB. What may be the cause of this. Any comments? CASE [MONTH](dbo.recetat.d

  • PrintWriter has started to use unix style linebreaks.

    Hello, I was running some text files generated under linux through a my Java program under Windows XP. Ever since then any program I write or run in Windows that uses PrintWriter will print to a file using unix style line breaks, ie. if I look at it

  • Workspace error!

    Sometime my workspace environment got freezed when i try to close the opened PDF form without completing it (without pressing submit button). See the attached screenshot. Is this related to flash player? scriting inside PDF or something else? Thanks,

  • Video in video effect?

    How do you make that effect when you're watching something and 2 or more video clips are being shown at once, with each being in their own frame? What is the easiest way to do this on FCP other than having to go through the motion tab and manually se