Can't get back my Apple ID, please help.

Hello,
Yesterday, like everyone else, I wanted to sync my account to iCloud, the thing is my Apple ID wasn't verified, and whatever I did, I couldn't send a "Verify mail" via the https://appleid.apple.com/ site. So after searching here and there, I read that what you needed to enter a new apple ID, verify it, and then change it back to the prior Apple ID, The first part worked (of course...) but now for some reason I cannot go back to my original Apple ID, when I try to save it, the screen just load, refreshes like nothing changed...
Could someone please help me?
Thank you.
Jharryone

Click here, explain to them that you can't call, and see what they say.
(120676)

Similar Messages

  • 10.9.1 used terminal with rm-rf and deleted my user data. Can I get back the deleted data? Help.

    10.9.1 used terminal with rm-rf and deleted my user data. Can I get back the deleted data? Help.  I really just need mail file and desktop files recovered.

    If data were on the SSD drive with TRIM - practically no chance. If HDD - use DIY recovery software such as DiskDrill or DataResue.
    As quickly as possible turn off the drive where deleted data.
    Use an external HDD with installed OSX for data recovery.
    Alex
    Apple Certified Support Professional

  • HT204074 can we get back the apple id if we deleted?

    once we delete icloud apple id then we create new one..can we get back the old icloud apple ID back?

    You can't delete an Apple ID, all you can do is stop using it. You can delete the iCloud account associated with an Apple ID, but this does not delete the ID, just the account. And yes, you should be able to set the iCloud account back up using that ID.

  • After resetting my Airport Extreme, I can't get it to work! Please help!

    Hey everyone!
    I have an airport extreme base station (wireless n-gigabit ethernet) and awhile ago it stopped working on me. I simply reset my aebs and whenever I open airport utility and try and configure my aebs, it tells me I have an error and can't connect to the aebs. I have comcast internet service and my aebs is connected to my router. It's been working successfully for about a couple months and now it's stopped working. : (
    I've tried this both in manual setup and the regular setup. I've gone through the trouble of doing a hard reset (pressing the reset button until it flashes amber), I've unplugged the power while holding the reset button, connecting my laptop with the aebs via ethernet, making sure everything is updated (and it is), resetting the router, and even reinstalled my airport utility disk.
    Please help! Any suggestions would be greatly appreciated!

    I also tried setting up my aebs on my neighbor's internet and it worked like a charm! Setting up aebs was as easy as when it first worked. Now if only I can get it to work on my internet...

  • Trying to create HTML5 Video Playlist in Edge Animate - I can't get it to work. Please help!?!?

    Hi All,
    I am creating an interactive site through Edge Animate and am in the process of trying to create a HTML 5 Video Playlist to function within Edge Animate.
    Current Process - Example:
    I have 3 videos that need to be played on a certain page.
    I created a symbol and dragged the videos to the stage and hidden them within that symbol's timeline.
    I then use thumbnail images in a side playlist to either .remove(); .hide(); a video and .show(); the next.
    However when I do a hide / show option, the video continue to plays in the background if I don't also create an if/else statement to pause it.
    My concern with pausing it is that it will continue to load and dramatically slow down the load time of the site.
    References:
    I found this which looks very helpful but don't know how to add this to edge composition.
    http://demosthenes.info/blog/909/Create-An-Automatic-HTML5-Video-Playlist
    Please help or put me in the right direction to create a playlist would be hugely... AMAZINGLY.. helpful.
    Thanks,
    Jason

    Hi Joe,
    Thank you so much for your help on this one. It is hugely appreciated!!
    I have been working frantically to implement your solution to get this working. I used the 'change src' method.
    I have added all my code below in case anyone wants the solution in the future.
    Could you please help below as I am now totally stuck with the <track> and 'event listener issues' !!
    Issue #1:
    I am having major problems with loading the 'closed captions' track element.
    Everything I click for the video to change source / to the next video, the closed caption track adds to the video and doesn't 'unload' the previous one. You then end up with multiple different subtitle tracks on the video screen
    - The closed captions / subtitles are not showing up in Google Chrome either?
    Issue #2:
    I can't get the event listener in edge animate to work for 'playing' and 'ended'. Can you please help and point me in the correct direction??
    Screenshot (showing what happens after the 3rd video is loaded)
    This is the Code I am currently using in the "Creation Complete" of this Symbol.
    SET UP OF VIDEO PLAYER AND FIRST VIDEO
    var vid = sym.$("video_Chapter5");
    vid.html('<video id="ch5video" width="100%" height="auto" margin= "0 auto"  \
    position ="relative"  poster="video/video1_poster.jpg"  controls="controls" </video> \
    <source id ="videomp4src" src="video/Video_mp4_1.mp4" type="video/mp4" </source> \
    <source id ="videoogvsrc" src="video/Video_ogv_1.ogg" type="video/ogv" </source> \
    <source id ="videowebmsrc" src="video/Video_webm_1.ogg" type="video/webm" </source> \
    <track id ="trackvtt" kind="subtitles" src="video/Video_1_Script.vtt" srclang="en" label="English" hidden </track>');
    VARIABLE IDS
    $(document).ready(function() {
      var videoID = 'ch5video';
      var sourceID1 = 'videomp4src';
      var sourceID2 = 'videoogvsrc';
      var sourceID3 = 'videowebmsrc';
      var trackID = 'trackvtt';
      var vid1mp4 = 'video/Video_mp4_1.mp4';
      var vid2mp4 = 'video/Video_mp4_2.mp4';
      var vid3mp4 = 'video/Video_mp4_3.mp4';
      var vid4mp4 = 'video/Video_mp4_4.mp4';
      var vid1ogv = 'video/Video_ogv_1.ogv';
      var vid2ogv = 'video/Video_ogv_2.ogv';
      var vid3ogv = 'video/Video_ogv_3.ogv';
      var vid4ogv = 'video/Video_ogv_4.ogv';
      var vid1webm = 'video/Video_webm_1.webm';
      var vid2webm = 'video/Video_webm_2.webm';
      var vid3webm = 'video/Video_webm_3.webm';
      var vid4webm = 'video/Video_webm_4.webm';
      var script1vtt = 'video/Video_1_Script.vtt';
      var script2vtt = 'video/Video_2_Script.vtt'; 
      var script3srt = 'video/Video_3_Script.vtt'; 
      var script4vtt = 'video/Video_4_Script.vtt';   
      var newposter1 = 'video/video1_poster.jpg';
      var newposter2 = 'video/video2_poster.jpg';
      var newposter3 = 'video/video3_poster.jpg';
      var newposter4 = 'video/video4_poster.jpg';
    VIDEO PLAYLIST THUMBNAIL BUTTONS - TO CHANGE VIDEO IN PLAYER
      sym.$('btn1').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid1mp4);
      sym.$('#'+sourceID2).attr('src', vid1ogv);
      sym.$('#'+sourceID3).attr('src', vid1webm);
      sym.$('#'+trackID).attr('src', script1vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter1);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn2').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid2mp4);
      sym.$('#'+sourceID2).attr('src', vid2ogv);
      sym.$('#'+sourceID3).attr('src', vid2webm);
      sym.$('#'+trackID).attr('src', script2vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+trackID).load();
      sym.$('#'+videoID).attr('poster', newposter2);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn3').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid3mp4); 
      sym.$('#'+sourceID2).attr('src', vid3ogv); 
      sym.$('#'+sourceID3).attr('src', vid3webm);
      sym.$('#'+trackID).attr('src', script3srt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter3);
      sym.$('#'+videoID).get(0).play();
      sym.$('btn4').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid4mp4);
      sym.$('#'+sourceID2).attr('src', vid4ogv);
      sym.$('#'+sourceID3).attr('src', vid4webm);
      sym.$('#'+trackID).attr('src', script4vtt);  
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter4);
      sym.$('#'+videoID).get(0).play(); 
    EVENT LISTENER FOR PLAYING - TO CREAT BACKGROUND /LIGHT BOX SCREEN
    sym.$('#'+videoID).get(0).addEventListener('playing', function () {
    sym.getSymbol("backscreen_Ch5").$("backscreen").show();
    sym.getSymbol("backscreen_Ch5").play("play");
    EVENT LISTENER FOR ENDED - TO PLAY NEXT VIDEO IN SERIES
    sym.$('#'+videoID).get(0).addEventListener('ended', function () {
    //code to play next video

  • Can't get on internet.. PLEASE HELP!!

     I thought I was computer savvy and told a friend at work that has an issue with her internet that I could fix it. I am having more trouble than I thought. She told me it was a Windows 7 and it is a Dell Windows XP Professional service pack 3. I am not
    very familiar with them. 
    She told me that she had uninstalled some programs she felt were slowing her computer down and now her wireless is not working the light is not on, the switch is on but when I go into network adapters all there is, is a 1394 Net Adapter and a Broadcom NetXtreme
    and it acts like it needs a cable plugged in to get online when she has never had to use a cable before. I can not find anywhere where there is wireless settings or anything.
    Someone please help, this lady is super nice and I would hate to let her down. I have the computer here with me now and if anyone could help I would appreciate is so much

    I think you are confusing the connection to your AirPort as being the same thing as a connection to the internet. The fact that you are connecting to the AirPort is great, but you can get a legitimate DHCP address and full signal strength even if the AirPort is completely disconnected from your cable/DSL modem.
    1) Crack open AirPort Admin Utility and click the "Internet" tab. What address does the AirPort have? Hopefully not one that starts with 169. Tell us what you have for IP addrss, subnet, router and DNS (even if the DNS are any greyed out).
    2) In the Utility folder crack open Network Utility and ping this: 64.142.120.111 the address for just-ping.com. They won't mind! Do you get dropped packets or does the ping return? If the packets are dropped, then your AirPort has no connection to the net. If the packets successfully return, then your IP connection is good, but you have no DNS service.
    3) Open Safari, enter 64.142.120.111 into the address field. Does it resolve to just-ping.com? Again, if it does, then your connection is good, but you have no DNS service. If it times out, then the internet connection is NFG.
    Let us know!

  • Can't get passed this install problem - Please help Adobe.

    I've downloaded the TRIAL version of PRODUCTION PREMIUM CS6. Once running / installed and tested it I will purchase it.
    But cannot get past this ERROR problem.
    Here is my install ERROR log ADOBE..  Please help.
    URGENT.
    Exit Code: 6
    Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DF027, DW063 ...
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 4 error(s), 0 warning(s)
    ----------- Payload: {9124DF4E-617D-486B-A970-8FA632244F24} Adobe Photoshop CS6 Core 13.0.0.0 -----------
    ERROR: DF027: Unable to copy file from "/private/tmp/.tempdir6Qpuljrb/Assets1/Application/Adobe Photoshop CS6.app/Contents/Resources/PS_LevelsIcon.icns" to "/Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Resources/PS_LevelsIcon.icns" (Seq 1205)
    ERROR: DW063: Command ARKCopyFileCommand failed.(Seq 1205)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe Photoshop CS6 English Language Pack_AdobePhotoshop13-en_US: Install failed
    ERROR: DW050:  - Adobe Photoshop CS6 Core: Failed due to Language Pack installation failure

    You can try resolving your issue using following document :
    http://helpx.adobe.com/creative-suite/kb/error-exit-6-exit-7.html
    and
    http://helpx.adobe.com/creative-suite/kb/error-unable-copy-file-tmp.html
    Regards,
    Sharath Holla.

  • I can not get my iTunes to work, please help

    ok when i click to open itunes, i get the window asking me whether or not I agree to the Itunes software license agreement. I click agree and then i get an error message stating that "The itunes application could not be opened. An unknown error occured [-48].
    Can somebody please help me or if anyone even knows a number i could call for support regarding itunes, i would greatly appriciate that.
    Thank you

    Do you have a valid payment method entered in your account? If yes then contact iTunes.
    Contact iTunes

  • Can not get my iphone to work please help

    i done every thing to get my iphone to work with straight talk please help me i need a phone i have bad health famiy members

    https://discussions.apple.com/message/23872549#23872549

  • BlackBerry z10 can't get access to mobile network, please help!

    Hi, i got my unlocked z10 a few days ago and still i can't get access to mobile network. Only wifi have worked for me till now.. i used the same sim card as my old phone (where i i got access fine). I've tried rebooting and switched every setting on and off etc. Could any one please help me with this..

    Since you are using the same sim I suggest you contact your service provider to check your provisioning.
    Let me know if this help.

  • I have a new MacBook Air and I set my password the other night and forget what I selected. Now I can't start using the computer because I can't get through password gates! Please help!!

    I have a new MacBook Air. I set my password the other night when I was half asleep and can't remember it. Im still working on my old MacBook Air and can't get through the password gate on my new one. How can I reset it on that computer? I can't even get to the internet.
    Thanks!

    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Select Terminal from the Utilities menu. At the Terminal prompt enter:
    resetpassword
    Press RETURN. You will get a GUI in which you can reset your password.

  • How can I get back my Apple ID? Nothing works!

    Someone stole it or hack it! Not even my info or email works to get it back!
    Does somebody knows?

    Contact apple in your country http://support.apple.com/kb/HE57

  • Airport connected but can't get internet....PLEASE HELP!!!

    I am a college student who went to college and used an apple airport base station for my mbp and everything worked fine, and before i went to school i used my parents linksys wireless router and it all worked fine. i came home from college today and used the internet (over the linksys router) for about 5 minutes, then came back a few hours later. after i came back my computer said i was connected via airport to the linksys router but i cant load any page at all with any internet browser, also aim and msn messenger wont work. when i get on the internet i get this message "safari can’t open the page “http://www.yahoo.com/”. The error was: “lost network connection” (NSURLErrorDomain:-1005) Please choose Report Bug to Apple from the Safari menu, note the error number, and describe what you did before you saw this message." i can connect if i plug my mbp in and i have tried the network diagnostics for airport several times, and it comes back saying that i am connected and it is all working fine, but its not. any help would be great. thanks.

    I have the same problem...New MacBook Pro connects fine to Airport at home. Shows connected to WPA network at work but no Internet connectivity - or it takes a VERY long time to pull anything up. Have run the Network Diagnostics successfully and Mac thinks it is connected, but still not able to reach web sites.
    Have followed instructions here: Article ID: 106799 Mac OS: Long Delay Before Web Pages Start to Load, Then Load Suddenly at Normal Speed without success. Can hardwire my MacBook Pro and use the network in this way.
    I am a network admin and I set-up the wireless so I am familiar with the details, but am truly baffled why my Mac will not connect to the Internet.

  • Mac start up wont work. I have tried safe start, command s / v , command r, pram, and more. Nothing helps!!! I really need to get back onto it. PLEASE HELP ME

    My mac is only a year old. I am still under warranty but don't want to have to go to the store. I know it has something to do with not connecting to my hard drive and I want to make it clear that IT HAS NOT BEEN DROPED,BANGED OR DAMAGED IN ANY WAY!!
    Here is what I have tried so far:
    For safe start The loading bar shows up but then doesn't load. After a few seconds it disappears and the wheel continues to spin.
    I have tried PRAM but it doesn't help at all.
    The only way I can get it off the start off page is to either go to fsck or Mac OS utilites.
    Fsck comes up as an error message for me when I put in fsck -FY. /sbin/fsck -FY also doesn't work.
    Mac OS utilities really also doesn't much. When I try to back up my hard drive it recognizes the external drive but then has no where to put it to??? So then I tried reinstalling the lion software part bit it won't allow me because for some reason it is locked. So I also try to verify and repair my drive. An error message comes up so I know there is something wrong. But not what to do about it. So now I am here on the Internet.
    I Really need to get this fixed!!! PLEASE SOMEONE PROVIDE ME WITH AN ANSWER TO HELP FIX MY PROBLEMS.

    My mac is only a year old. I am still under warranty but don't want to have to go to the store. I know it has something to do with not connecting to my hard drive and I want to make it clear that IT HAS NOT BEEN DROPED,BANGED OR DAMAGED IN ANY WAY!!
    Here is what I have tried so far:
    For safe start The loading bar shows up but then doesn't load. After a few seconds it disappears and the wheel continues to spin.
    I have tried PRAM but it doesn't help at all.
    The only way I can get it off the start off page is to either go to fsck or Mac OS utilites.
    Fsck comes up as an error message for me when I put in fsck -FY. /sbin/fsck -FY also doesn't work.
    Mac OS utilities really also doesn't much. When I try to back up my hard drive it recognizes the external drive but then has no where to put it to??? So then I tried reinstalling the lion software part bit it won't allow me because for some reason it is locked. So I also try to verify and repair my drive. An error message comes up so I know there is something wrong. But not what to do about it. So now I am here on the Internet.
    I Really need to get this fixed!!! PLEASE SOMEONE PROVIDE ME WITH AN ANSWER TO HELP FIX MY PROBLEMS.

  • Can't get PayPal to work. Please help.

    First I go to iTunes Store => My Account Info => Edit Payment Options => Click Paypal Bubble => Then Continue, and prompts me to a paypal site where I have "have successfully created a Billing Agreement."
    Than when I click "Continue to iTunes Store" it does absolutely nothing. Is there anyway I can pay purchases with paypal?
    Or is there even a way I can get a digital gift certificate thats not done through iTunes as that would produce the same issue? Thank you.

    Yet another user having same problem. Can't set up PayPal payment in the web version of the store. In Windows desktop iTunes version of my account view, there is the PayPal choice, but when I pick it I am directed to my BROWSER, where I "successfully" link to PayPal, and then I am directed back to the BROWSER version of the Apple store, where...I cannot pay with PayPal. And back in the desktop version of iTunes, my account information is the same as before...NOT set up for PayPal. Hopeless?

Maybe you are looking for

  • Crash, Bang, Boom......

    I have recently been experiencing multiple daily crashes that are rendering Safari essentially unusable. I can not connect these events to specific situations but my best guess is that they occur when loading multiple tabs and/or accessing Java based

  • After upgrade to outlook 2013 Contacts have the default picture in reading pane

    I'm using Windows 8 on a domain (using a domain account not a Microsoft account) connecting to Exchange, all my Contacts were outlook contacts with pictures and other data, I could see the picture of the contact in the reading pane and people pane wh

  • Dunning notices before due date

    Hi experts, Is there any option to get the items not due in dunning letters, as per my understanding dunning shows the due items only. but my requirement is to get the items due and items not due in the same dunning letter. my intention is for items

  • Cannot communicate from weblogic 10.3.5 to weblogic 8.1.4 (OIM 11gR1)

    Hi all, when i run java class adapter in oim 11gR1, which contain ejb class from other weblogic(8.1.4), i facing problem that request which i run cannot finish or process is looping forever. my code : public String create(){ SecurityMngr = (SecurityM

  • How to deploy a WAR file to Sun One Portal Server

    Would someone please tell me the instruction of how to deploy a WAR file to Sun One Portal Server 6.2. Thank you.