I want to reset my privacy questions for my apple i.d. But when i request to do so it sends it to a email address that isnt on my file can anyone tell me why its not working?

I want to reset my privacy questions for my apple i.d. But when i request to do so it sends it to a email address that isnt on my file can anyone tell me why its not working?

1)  Apple ID: All about Apple ID security questions
Torrifromny wrote:
I want to reset my privacy questions for my apple i.d. But when i request to do so it sends it to a email address that isnt on my file ?
2)  See Here.  Apple ID: Contacting Apple for help with Apple ID account security
Ask to speak with the Account Security Team...
3)  Or Email Here  >  Apple  Support  iTunes Store  Contact

Similar Messages

  • I was in the apple store today wanting to upgrade my computer from leopard to snow leopard and then to os x lion and the guy sold me a os x lion thumb drive and said thats all i need can someone tell me why its not working

    anyone there

    Did you check that your current Mac meets the System Requirements for Both Snow Leopard and Lion...
    Snow Leopard Specs:
    http://support.apple.com/kb/SP575
    Lion Specs:
    http://www.apple.com/macosx/specs.html

  • I have a TON of bookmarks that I want to back up, but when I open the window to organize them, back them up, etc., none of them are there! Can anyone tell me why this is happening and how to fix it?

    On the dropdown menu where my bookmarks are, I select "show all bookmarks", which opens up a window called "Library". I should have hundreds of bookmarks, but none of them are showing in this window.

    This can be a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • I can't remember my security question for my Apple ID. But when I press "send reset request to email" my email won't recieve it. What should I do?

    I can't remember my security question for my Apple ID. But when I press "send reset request to email" my email won't recieve it. What should I do?

    Wait a few hours and check the spam filter. If you still don't get it, ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (102290)

  • I purchased my macbook pro 2nd hand and then purchased Lion online thru the apple store and today when I tried to update some of the software I got the message that it was corrupt. Can anyone help me?

    I purchased my macbook pro 2nd hand and then purchased Lion online thru the apple store and today when I tried to update some of the software I got the message that it was corrupt. Can anyone help me?

    Did the message say what was corrupt. It is not clear from your description of "...it was corrupt" what "it" is. Sounds like the download of Lion was corrupt. Download it again. Downloaded files sometimes get corrupted due to network connection glitches or interruptions.

  • Can anyone tell me why this doesnt' work please

    Be gentle :o)
    I am trying out this printing in version 1.4 I am wanting to print out the contents of a text file
    Below is the code but it does nothing
    It compiles but doesn't function??
    HELP
    import java.io.*;
    import javax.print.*;
    import javax.print.attribute.*;
    import javax.print.attribute.standard.*;
    import javax.print.event.*;
    public class PrintFile {
         public static void main(String args[]) {
              PrintFile pf = new PrintFile();
         public PrintFile() {
              /* Construct the print request specification.
              * The print data is Postscript which will be
              * supplied as a stream. The media size
              * required is A4, and 1 copy are to be printed
              DocFlavor flavor = DocFlavor.INPUT_STREAM.TEXT_PLAIN_HOST;
              PrintRequestAttributeSet aset =
                   new HashPrintRequestAttributeSet();
              aset.add(MediaSizeName.ISO_A4);
              aset.add(new Copies(1));
              aset.add(Sides.TWO_SIDED_LONG_EDGE);
              aset.add(Finishings.STAPLE);
              /* locate a print service that can handle it */
              PrintService[] pservices =
                   PrintServiceLookup.lookupPrintServices(flavor, aset);
              if (pservices.length > 0) {
                   System.out.println("selected printer " + pservices[0].getName());
                   /* create a print job for the chosen service */
              DocPrintJob pj = pservices[0].createPrintJob();
                   try {
                        * Create a Doc object to hold the print data.
                        * Since the data is postscript located in a disk file,
                        * an input stream needs to be obtained
                        * BasicDoc is a useful implementation that will if requested
                        * close the stream when printing is completed.
                        FileInputStream fis = new FileInputStream("EventFile.txt");
                        Doc doc = new SimpleDoc(fis, flavor, null);
                        /* print the doc as specified */
                        pj.print(doc, aset);
                        * Do not explicitly call System.exit() when print returns.
                        * Printing can be asynchronous so may be executing in a
                        * separate thread.
                        * If you want to explicitly exit the VM, use a print job
                        * listener to be notified when it is safe to do so.
                   } catch (IOException ie) {
                        System.err.println(ie);
                   } catch (PrintException e) {
                        System.err.println(e);
    }

    I too find the same problem not locating all the print services, then i use defualt print service and it works, another error i was getting that of invalid flavor so i then get all the doc flavor supported by my printer and use AUTOSENSE. Following is the code that u can test:
    import java.io.*;
    import javax.print.*;
    import javax.print.attribute.*;
    import javax.print.attribute.standard.*;
    import javax.print.event.*;
    public class PrintText1 {
         public static void main(String[] args) {
              System.out.println("Print Text");
              PrintText1 ps = new PrintText1();
         public PrintText1() {
              /* Construct the print request specification.
              * The print data is Postscript which will be
              * supplied as a stream. The media size
              * required is A4, and 2 copies are to be printed
              System.out.println(0);
              DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
              PrintRequestAttributeSet aset =
                   new HashPrintRequestAttributeSet();
              aset.add(MediaSizeName.ISO_A4);
              aset.add(new Copies(1));
              aset.add(Sides.ONE_SIDED);
              //aset.add(Finishings.STAPLE);
              /* locate a print service that can handle it */
              System.out.println(1);
              PrintService defpservices = PrintServiceLookup.lookupDefaultPrintService();
              System.out.println("Default Printer " + defpservices.getName());
              /* create a print job for the chosen service */
              DocPrintJob pj = defpservices.createPrintJob();
              System.out.println(2);
              try {
                   * Create a Doc object to hold the print data.
                   * Since the data is postscript located in a disk file,
                   * an input stream needs to be obtained
                   * BasicDoc is a useful implementation that will if requested
                   * close the stream when printing is completed.
                   FileInputStream fis = new FileInputStream("file.txt");
                        Doc doc = new SimpleDoc(fis, flavor, null);
                        System.out.println(3);
                        /* print the doc as specified */
                        pj.print(doc, aset);
                        * Do not explicitly call System.exit() when print returns.
                        * Printing can be asynchronous so may be executing in a
                        * separate thread.
                        * If you want to explicitly exit the VM, use a print job
                        * listener to be notified when it is safe to do so.
              } catch (IOException ie) {
                   System.err.println("IOException " + ie);
              } catch (PrintException e) {
                   System.err.println("PrinterException " + e);
    Try this code it will work for you to print the text file.
    Now my problem is i am trying to print the html file and its printing the html file including all the html tags, can anybody help how can i be able to print only that area that viewable to user in the internet explorer and not all the html tags:
    Following is my code which i had written using servlet:
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.*;
    import java.util.Properties;
    import java.net.*;
    import javax.print.*;
    import javax.print.attribute.*;
    import javax.print.attribute.standard.*;
    import javax.print.event.*;
    public class printServlet extends HttpServlet
         public void doGet(HttpServletRequest request, HttpServletResponse response)
              throws ServletException, IOException
              // Set the mime type
              response.setContentType("text/html");
              // Create a PrintWriter Object
              PrintWriter out = response.getWriter();
              /* Construct the print request specification.
              * The print data is HTMl which will be
              * supplied as a stream. The media size
              * required is A4, and 1 copies are to be printed
              System.out.println(0);
              //DocFlavor htmlFlavor = DocFlavor.URL.TEXT_HTML_US_ASCII;
              DocFlavor htmlFlavor = new DocFlavor("application/octet-stream", "java.net.URL");
              PrintRequestAttributeSet aset =
                   new HashPrintRequestAttributeSet();
              aset.add(MediaSizeName.ISO_A4);
              aset.add(new Copies(1));
              aset.add(Sides.ONE_SIDED);
              /* locate a print service that can handle it */
              System.out.println(1);
              //PrintService[] pservices =
                   //PrintServiceLookup.lookupPrintServices(htmlFlavor, aset);
              PrintService pservices = PrintServiceLookup.lookupDefaultPrintService();
                   //System.out.println("Printer Length " + pservices.length);
                   //PrintService service = pservices[0];
              System.out.println("selected printer " + pservices.getName());
              DocFlavor[] sdf = pservices.getSupportedDocFlavors();
              System.out.println("Supported DocFlavors are: ");
              for( int r = 0; r < sdf.length; r++ )
                   System.out.println(sdf[r].toString());
              /* create a print job for the chosen service */
              String urlString = "http://localhost:8080/printengine/jsp/hello.html";
              URL url = new URL(urlString);
              DocPrintJob pj = pservices.createPrintJob();
              Doc doc = new SimpleDoc(url, htmlFlavor, null);
              out.println("<html><body>" + doc + "</body></html>");
              System.out.println(3);
              /* print the doc as specified */
              try
                   pj.print(doc, aset);
                   System.out.println(4);
                   * Do not explicitly call System.exit() when print returns.
                   * Printing can be asynchronous so may be executing in a
                   * separate thread.
                   * If you want to explicitly exit the VM, use a print job
                   * listener to be notified when it is safe to do so.
                   out.println("<html><body>Printing Successful</body></html>");
              catch (PrintException e)
                   System.err.println("PrinterException " + e);
    Please help me out

  • I downloaded Adobe Reader and cannot open PDF files, can anyone tell me why? or what I need to do.

    I am not able to open PDF files or documents.  Why?

    Here is my assessment, Claudio.  I know you are revered among your peers and it's very obvious that you live on these forums.  You have undoubtedly helped a lot of people and you will be rewarded in your afterlife for your endeavors here but here's a reality check for both you and Pat:
    What lesson did D.Call learn from you?  Likely the lesson was, don't post here or you'll be treated as an imbecile by some hotshot bitwhiz named Claudio Gonzalez.
    Did you not see that D.Call said s/he was an inexperienced computer user… and was obviously asking for elementary level assistance?  You were blinded by your belief that your knowledge and expertise is being wasted on anyone who isn’t forthcoming to your expectations.  I merely pointed out that if you think it's such a waste of your time, why dwell?  You should have left Graffiti to work with D.Call and headed off to another thread.  Surely there were other posts requiring your extreme level of higher intelligence.
    Think about this:  You don't like it when someone talks down to you as I have here, now do you?  No one does.  Right now as you read this my guess is you are fuming and likely trying to think of a way to smite me.  You can respond to this post in whatever tone or language you choose but I won't take offense.  I’ll be the bigger man… I promise I won't reply so you can have the last word.
    When you respond, see if you can take it up a notch and maybe even admit you made a mistake with your corkscrew remark.  I don't think you would ever risk being so disrespectful to D.Call, and most certainly, not to me or anyone else if we were face-to-face.  If you worked in my company, you would be fired for disrespecting my customers.
    By the way, do you and Pat have spell check ability?  If you do, you should use it.

  • I have a brand new macbook pro 15" with latest Lion.Can anyone tell me why, when I open word or preview etc that multiple files open?For eg if I open a word doc, the last 1-3 docs that I have worked on all open. why?

    I have a brand new macbook pro 15" with latest Lion. Can anyone tell me why, when I open word or preview etc that multiple files open?For eg if I open a word doc, the last 1-3 docs that I have worked previously on all open. Can anyone tell me why?

    You have a choice as to whether or not applications in Lion like Word or Preview (or even Safari) save and re-open previous documents or windows... just hold down the option key while quitting a program and when you re-open it you won't get the previous documents or windows when you re-open the application. You can see this by selecting the open program in the menu bar and when holding down the option key the quit function will change to quit and discard open windows. This feature in Lion is referred to as "Resume" and is great if you want to restart an app and return to what you're doing (for example in Safari re-opening existing windows and tabs from your previous session). You still have the option to close individual windows within an app before quitting and they will not re-open when the app is launched again.
    This Resume function is not related to saving your work (a word or text document for example). This is handled by Lion's "Auto-Save" and "Versions" functions. See http://www.apple.com/ca/macosx/whats-new/auto-save.html
    Hopefully this is the complete answer you're looking for.

  • I can't find preferences for the notes app. and every once in awhile some of my notes just disappear at start up, I see the name and then it refreshes and they are gone, very annoying. Can anyone tell me why it does this and how to stop it? thanks

    I can't find preferences for the notes app. and every once in awhile some of my notes just disappear at start up, I see the name and then it refreshes and they are gone, very annoying. Can anyone tell me why it does this and how to stop it? thanks

    Hi again, I am on an iMac using OSX 10.7.5, I"ve taken screenshots to show you I think my settings are correct

  • Can anyone tell me why VI is not working.

    Can anyone tell me why VI is not working. I have attached VI and sample excel file to answer to question "How to save excel file after changes made"

    Where is the attached file?

  • HT201317 Can anyone tell me why my photo stream is not loading all of my pics onto my new iPhone 5c. phone plug into iMac, all settings on phone are for photo stream on. it only sent 100 out of 1000. thanks for any help !

    Can anyone tell me why my photo stream is not loading all 1,000 pictures onto my new iphone 5c? i backed up my old phone onto the mac and plugged in my new phone then hit backup. it only gave me 100 pictures????? why?
    thanks for any help!

    Because photo stream photos only remain in iCloud for 30 days, allowing enough time for your devices to download them.  Only shared streams keep photos in iCloud indefinitely.  Your other photos are probably older than 30 days and are no longer in iCloud.
    Also, photo stream photos aren't included in your backup, only camera roll photos are.  If you want to include photo stream photos that are not already in your camera roll in your backup, you have to save them to the camera roll before backing up.

  • Can anyone tell me why my collusion .27 add-on stopped working when I updated to firefox 20 (and now 21?).

    Can anyone tell me why my collusion .27 add-on stopped working when I updated to firefox 20 (and now 21?). I've tried removing and reinstalling to no avail. I even deleted my profile files and had firefox repopulate those automatically to no avail. And it's not the only add-on to have stopped working.

    see here
    *https://support.mozilla.org/en-US/kb/re-enable-add-ons-disabled-when-updating
    Addons are enabled or disabled?

  • I can't select Photos to back up in iCloud from my MacBook Pro. Can anyone tell me why? I have 17 GB of available data that I'm paying for.

    My MacBook Pro data is backed up in iCloud (I pay monthly for 20 GB) but apparently my photos are not backed up and it won't allow me to select Photos from the list for back up. Can anyone tell me why?

    The current iCloud isn't meant for backing up Macs.  It's only for mobile devices. 
    The beta iCloud Photo Library in iOS 8 will store photos in the iCloud for access from other mobile devices for from iCloud.com.  The new Photos app under development for OS X on Macs will not be released until sometime this spring.  It will have the capability of storing and accessing photos from iCloud.
    iCloud Drive is for sharing documents between multiple devices signed in to the same iCloud ID. When the new Photos application is released the space purchased for iCloud will be available for the photo storage system.

  • I try to make purchases from iTunes it says contact them, I do they say they've made adjustments to account sign out or wait 15/30mins then try, it doesn't work. Can anyone tell me why?

    why when I try to purchase from iTunes it says contact them, they say they've made adjustments to my account  sign out /wait 15/30mins then it will work. It doesn't  can anyone tell me why I've been trying for weeks now and is there someone really high up I can complain to?

    Assuming you have (1) signed out, then (2) waited 30 minutes and it didn't work you will need to contact iTunes again.

  • Can anyone tell me why I can not connect my Blackberry or my iPhone to my new Macbook pro? I had no problem with my old Macbook.

    Can anyone tell me why I can not connect my Blackberry or my iPhone to my new Macbook pro? I had no problem with my old Macbook.

    What type of headphones were you using? I have a set of Microssft headsets, with the built-in mic and connected via USB, and have no problems.
    Clinton

Maybe you are looking for

  • Display value in detail portion different than in table

    I'm saving a 1 character value in a table via a form. I'd like to display a longer description of that item in another item when the master item is selected and the execute_query commands runs for the detailed portion of the form. Is there anyway to

  • How to access tones in itunes

    how to access tones in itunes

  • Trying to create tab dividers in Pages

        I would like to print divider tabs in Pages using the 8-tab divider set I purchased at Office Max. I'm having trouble finding an existing template in Pages for this brand, nor have I figured out how to customize. Any advice would be greatly appre

  • Error starting schconfig on Solaris 10 (OBIEE 10.1.3.2.1)

    We're running OBIEE 10.1.3.2.1 on Solaris 10 and receive the following error when starting schconfig: Oracle BI home directory is not defined Incomplete Oracle BI Server Suite configuration Error: Incomplete Oracle BI Server Suite configuration Any i

  • Loading previous version of facebook

    I have an iPhone 3GS, I had problems in August when Facebook was updated and I found that I could not load FB at all. I somehow managed to restore the previous version - cannot for the life of me remember how - and now I've just gone and done Update