HT5312 this method dosnt work at all because there is nothing under the question box....

how do i reset my security questions because nothing ive heard of is workin ive had my ipad for a year now and it says ive never bought anything and to now by stuff i need to answer security questions and when i signed up i didnt set any questions and now i cant reset them *** can someone help please

See Here.  Apple ID: Contacting Apple for help with Apple ID account security
Ask to speak with the Account Security Team...
  Or Email Here  >  Apple  Support  iTunes Store  Contact

Similar Messages

  • HT201210 lost everything on my iphone cannot restore saying need to free up space cannot free up space because there is nothing on the phone

    lost everything on my iphone cannot restore saying need to free up space cannot free up space because there is nothing on the phone

    My Iphone is telling me the same thing. I have already removed all unneeded apps, pics, docs, & even saved photo stream and deleted pics from my phone. I have removed all of my music from the itunes sync process and in addition have checked and unchecked the box for the music sync. It has continuously shown that I do have more than enough free space available. After all of this I have 14.75 gigs free. I will now see if I can put music back and sync. Please let me know if you (or anyone else reading this) has found or has a solution. This is extremely frustrating after I worked so hard cleaning my 382 gigs of music with Tune up. Even though I had this app, it was still time consuming. Ugggg! Would love to see my music correctly on my Iphone but now this! Thanks in advance for any help that anyone can give me.

  • I just downloaded Maverick on my Macbook Pro from 2011.  When I try to open iPhoto, it says that I have an old version that doesn't work with Maverick.  None of the solutions stated on this forum work for me, because there are no options displayed.

    After downloading Maverick on the MacBook Pro that I bought in 2011, I am unable to open iPhoto. The message says "You can't use this version of the application "iPhoto" with this version of OS X.  You have "iPhoto" 9.2.3"  What???  That is ridiculous.  Why doesn't Maverick download everything?  I've tried the "fixes" I found on this forum, but none of them work for me, because there is no workaround via the library.  I can't access the library.

    I have an old iPhoto version and it still works with Mavericks, the version before yours, that is puzzling.

  • I just bought a new macbook air. Now i want to sync my iphone to this computer. I copied all my songs and apps to the itunes. If I sync do i loose all my contacts and notes? because i could not copy it to itunes

    I just bought a new macbook air. Now i want to sync my iphone to this computer. I copied all my songs and apps to the itunes. If I sync do i loose all my contacts and notes? because i could not copy it to itunes

    You need to use the backup of your PC to transfer all the music files to iTunes on the Mac.
    If you have no backup then you have a difficult task ahead of you as iTunes will only allow you to sync purchased music from the iPhone back into iTunes.   Any music you loaded into iTunes yourself will not transfer from the iPhone to iTunes, this is to prevent stealing of music.  To sync iTunes purchased music from the iPhone to iTunes, connect the iPhone and open iTunes, but when asked do NOT sync the device.  then right click on the iPhone in the iTunes source list and select the 'Transfer Purchases' option, you will also find this commend in the File menu.
    If you are in the US, you can use the new iTunes in the Could feature to redownload your iTunes purchased music / apps / books for free.
    If you want to transfer all the content from your iPhone to you Mac then you will need to use Google to find a 3rd party piece of software that will do this for you.

  • Excel 2010: I get the error message "This file can't be previewed because of an error in the Microsoft Excel previewer." even though Advanced Properties is set to Save Thumbnails for all Excel Documents.

    Excel 2010: I get the error message "This file can't be previewed because of an error in the Microsoft Excel previewer." even though Advanced Properties is set to Save Thumbnails for all Excel Documents and I've run Repair on Microsoft Office.
     I don't know what else to try.
    Any help would be appreciated. Thanks.

    A hotfix request has already been submitted for this issue and we have also documented it here
    http://support.microsoft.com/kb/983097
    Thanks.
    Tony Chen
    TechNet Community Support

  • TS1717 All of a sudden I keep getting a pop up that says this song can't be played because Itunes can't find the file...Over 11,000 songs can't be played...Please help..thanks

    All of a sudden I keep getting a pop up that says this song can't be played because I tunes cannot find the file...Over 11,000 songs can't be played ....I really don't want to transfer all the songs over again...Please help...Thanks

    Someone please reply cuz I have the same problem. Help Thanks.

  • Anyone knows whether this method will work?

    Hi,
    I am trying out this method to construct an applet but I couldn't get it to work.Does anyone here know whether this method will work and how to debug it.Thanks.
    import java.awt.*;
    import java.applet.Applet;
    import java.awt.event.*;
    public class Project extends Applet implements ActionListener {
    private Button circle, square;
    private Model aModelInstance;
    public void init() {
    circle = new Button("Circle");
    add(circle);
         circle.addActionListener(this);
         square = new Button("Square");
         add(square);
         square.addActionListener(this);
    aModelInstance = new Model();
    public void paint(Graphics g) {
         aModelInstance.display(g);
         public void actionPerformed(ActionEvent event) {
    if (event.getSource() == circle)
    aModelInstance.getCircle();
    if (event.getSource() == square)
    aModelInstance.getSquare();
    repaint();
    class Model {
         private aModelInstance.display(g)
         public void getCircle() {
         g.setColor(Color.red);
    g.fillOval(145,89,122,122);
    private aModelInstance.display(g)
         public void getSquare() {
    g.setColor(Color.green);
    g.fillRect(145,89,122,122);
    public void display(Graphics g) {
    }

    It will work for the most part put there is a few problems that you would have to work out. Most of the problems are in the inner class Model. I commented out a couple of lines in there that did not make sense. In the getSquare() & getCircle() methods you are referring to the variable 'g' where there was no declaration for that variable, in Model. So I modifed the method to have an input parameter of Graphics, that will need to be passed to the method. Then I modified the code in Project so that it passes Graphics when it calls those methods.
    The code now compiles cleanly but there is still some work for you to do. You should modify the getSquare() and getCircle() methods to return the Graphics. Then in the actionPerformed() method, call the paint method with the returned Graphics. Good luck.
    import java.awt.*;
    import java.applet.Applet;
    import java.awt.event.*;
    public class Project extends Applet implements ActionListener {
    private Button circle, square;
    private Model aModelInstance;
    public void init() {
    circle = new Button("Circle");
    add(circle);
    circle.addActionListener(this);
    square = new Button("Square");
    add(square);
    square.addActionListener(this);
    aModelInstance = new Model();
    public void paint(Graphics g) {
    aModelInstance.display(g);
    public void actionPerformed(ActionEvent event) {
    if (event.getSource() == circle)
    aModelInstance.getCircle(this.getGraphics());
    if (event.getSource() == square)
    aModelInstance.getSquare(this.getGraphics());
    repaint();
    class Model {
    //private aModelInstance.display(g)
    public void getCircle(Graphics g) {
    g.setColor(Color.red);
    g.fillOval(145,89,122,122);
    //private aModelInstance.display(g)
    public void getSquare(Graphics g) {
    g.setColor(Color.green);
    g.fillRect(145,89,122,122);
    public void display(Graphics g) {
    }

  • My Ipad displays a message: Not Enough Storage: This ipad cannot be backed up because there is not enough icloud storage available. You can manage  your storage in settings.... Ive tried closing and settings but it doesn´t work and cant do anything

    My Ipad 3erd Gen... si dsiplayin a message:
    "Not Enough Storage: this ipad cannot be backed up because there is noit enough iCloud storage available. you can manage yor setorage in settings"
    Ihave tride pushing either Close or Settings and it doesnt do anything, i cant shut down or push a command in setteings mode, the message appears to be frozen in the center of the screen!
    HELP!!!!!

    Try a reset:
    Hold the Sleep and Home button down for about 10 second until you see the Apple logo.

  • HT204022 This iphone cannot be backed up because there is not enough iCloud storage available.  Can you help up delete some of our pictures that are backed up so that we can continue to back up the phone?

    This iphone cannot be backed up because there is not enough iCloud storage.  Can you help me take the pictures off the icloud since I backed them up on my pc and would like to continue to use the storage in icloud to back up with.

    you are correct. We are not understanding each other. I am attempting to provide a model for good habits for the OP. You have provided only a short term brief intervention which leaves a gaping hole for data to get lost in.
    At no point did I say that merely backing up the device without saving the camera roll pictures would delete them.  Please stop inferring what you think I mean, you are confusing the issue. I said that doing so was SETTING UP the OP for data loss. This behavior encourages the OP to simply shut off their backup for their pictures. At no point did you instruct the OP to delete the old pictures from the device. The set up part is this... if they simply turn off the camera roll backup, and aren't implementing some form of management for the pictures on the device, then the pictures are only being actually saved, in a "permanent" manner when the OP backs up to itunes. That's all fine and good, but this also presumes that the OP will always do so on a regular basis, will never forget to do so even when there are a ton of new, very important pics to worry about.
    My suggestion allows the OP to continue to use the automatic backup feature the way it was intended...automatically...for the information that has not yet been saved to the user's computer. The whole point here is that the OP can keep their pics AND still benefit from automatic backups without disabling the cameral roll from being backed up into the icloud.
    Should this poster have walked into my fruit themed store, I would recommend that the OP do the following:
    1. back up the pics to the computer (done)
    2. REMOVE THE BACKED UP PICS FROM THE PHONE
    3. Learn about and utilize PHOTOSTREAM (including its limitations like no videos, only 1000 pics and only for 30 days) to make backing up and saving the photos from the phone easy and simple
    4. Explain how backup works and what it backs up
    5. Reassure the OP that even if they haven't backed up to itunes lately or have not bothered to properly save their pictures using another device and PHOTOSTREAM, that their oversight won't be catastrophic in circumstances where failure to do either of these things and being met with tragedy, does not necessarily mean that the OP is SOL. The automatic backup is another line of defense against data loss and can save the OP's precious memories, TEMPORARILY, until they can be transferred to another device for "permanent" storage. Why disable a line of defense?
    I see it all the time. Full icloud, camera roll turned off, device not backed up to itunes nor pics saved for weeks because they were too busy, didn't feel like it or were just plain lazy.  Then, a wedding, birth, Halloween, Naughty time with the hubby, whatever it may be its an event with a LOT of pictures taken. Then, then next day or so, before the manual saves can happen, the device is damaged and needs to be replaced. There's no backup, nothing saved and the user loses ALL of the pics from the special event. IF they had properly managed their pics and only kept stuff on there that they really needed, deleted the rest after saving their pics elsewhere, and thus kept the backup size small enough to use, the backup would happen unattended overnight, and even though catastrophe still happens,  all the pics from the big event are recovered on a new device using the iCloud backup.
    Do you see the difference?  I hope you do, and i hope so does the OP.  I have a great deal of experience here, take advantage of it or not. Accept my help or be stubborn about it, Your choice. I am finished posting into this thread now.  Take care and good luck with your data.

  • Not enough Storage This iPad cannot be backed up because there is no enough iCloud

    Hi, guys, I have 5 iPads are under the same Apple ID. One of 5 iPads freezes, it says "Not Enough Storage, this iPad cannot be backed up because there is not enough iCloud storage availabe. You can manage your storage in Settings." But acutually, nothing works, I even cannot turn off the iPad. I connect the iPad with the iTunese in my MacBook. But it doesn't help except asking me to restore the iPad. There are some students' work in the iPad and I don't want to earse any these work. Anyone can have some idea about how to solve the prolem, I'll appreciate it. Thanks ,Ming

    Welcome to Apple Support Communities
    Hold Sleep and Home buttons for 10 seconds until your device restarts

  • HI,Have 10.10.3 version email system does not work at all it display emails up to the installation of the new version, no incoming or outgoing emails

    HI,
    Have 10.10.3 imac version- email system does not work at all it display emails up to the installation of the new version, no incoming or outgoing emails

    That helped thanks-
    I was able to solve this by deleting all "Envelop Index*"- and "ExternalUpdates*"-files in ~/Library/Mail/v2/MailData. After that I restarted Mail and let it reindex all mailboxes.

  • I just lost files I had been working on all weekend after they synced with the Creative Cloud.

    I just lost files I had been working on all weekend after they synced with the Creative Cloud. This is not what I am paying for. I need these files recovered now, not tomorrow, now!

    I have emailed you about resolving this issue.

  • TS3694 I tried updating my iPod, and ever since it has not worked at all. If I hold in the lock & home button, it will tell me to plug it into iTunes. Once I do that, it says it will restore but every time, restoring it fails. My iPod is not working at al

    I tried updating my iPod, and ever since it has not worked at all. If I hold in the lock & home button, it will tell me to plug it into iTunes. Once I do that, it says it will restore but every time, restoring it fails. My iPod is not working at all, and I really have no idea what to do. It is just a black screen, and occasionally the white apple will appear as if it were turning on, but it won't turn on. I just need some suggestions on what to do!

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iPod fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar

  • I cant open my ipad because of this saying "Not enough storage - this ipad cannot be backed up because there is not enough iCloud storage available. You can manage your storage in settings."

    i need help! my ipad is having a problem~ i cant open my ipad because of this saying "Not enough storage -> this ipad cannot be backed up because there is not enough iCloud storage available. You can manage your storage in settings." if i click the button close it wont close and if i click button settings it wont go to settings as well. What will i do? how can i fix it? here's the pic of it.. need your help anyone?

    Hi jasmin,
    Did you read what Demo wrote? He wasn't saying he had a problem. He was responding to the OP who had a problem, and was providing a solution. Follow what Demo said to do....
    Cheers,
    GB

  • Have a 4S and in the lock screen it is coming up with a screen (Not Enough Storage - This iphone cannot be backed up because there is not enough iCloud storage available. You can manage your storage in settings) it then has option close or settings.....bu

    I have a 4S and in the lock screen it is coming up with a screen (Not Enough Storage - This iphone cannot be backed up because there is not enough iCloud storage available. You can manage your storage in settings) it then has option close or settings.....but i am unable to click on either or turn off the phone. I have plugged it into itunes on the computer and manually backed it up but i cannot use my phone as i cant get past this message

    Welcome to the Apple Community.
    You might try a forced shutdown to begin with, hold down the top and home buttons together until the device shuts down, then restart it.

Maybe you are looking for

  • MyFace Configuration

    I've googled this to death, and have seen folks having similar problems, but no resolutions. What I'm doing seems very straight forward, but I get the following exception. "org.apache.jasper.JasperException: ExtensionsFilter not correctly configured.

  • G/L picking during account assignment P & Q

    Hi Experts, Please help me to clear one doubt: With Q system is picking G/L account as per OBYC settings corresponding to valuation class of material irrespective of what G/L I enter manually here, a default G/L is picked and its understood. But with

  • Finding taglib's from war files

              Within a war file, I have a jsp which lies within a directory called /phase1 underneath the document root,           containing the line:           <%@ taglib uri="../xlab-taglib.tld" prefix="xlab" %> (1)           which is saying that the

  • Can I buy hp touch smart note book 15-r136 windows 8

    I refreshed my computer not knowing It would erase my power on pass word . 24/7 techies have been been trying online .They got to (enter administrator pass word or power on pass word ). He could not get past this . It's a H P - Touch Smart Laptop 15-

  • Simple pricing procedue

    hi friends please give simple pricing procdure eaxple with price , custo/ mat disc related