Okay so i had an iphone 5.  I backed it up on icloud. Then i got the new iphone 5s i restored ot from icloud from my previous iphone 5.  Now everything works find execept now the games are slowy and drops the frame rate and look choppy. Please help.

Okay so i had an iphone 5.  I backed it up on icloud. Then i got the new iphone 5s i restored ot from icloud from my previous iphone 5.  Now everything works find execept now the games are slowy and drops the frame rate and look choppy. Then i restarted my iphone 5s as a new device downloaded the same apps even the ones optimized for ios 7 and the games still lag. And i just got my iphone 5s replace.  The funny thing is.  While im playing games and their running choppy and slow and if i take a snap shot inside the phone. They run smooth and HD but just for a few seconds and boom they go back to slow and choppy.  Is it the ios 7 or the iphone 5s it self? Like i said this is my replacement iphone 5s because the other 5s did the same thing. And it was running slowly.

As far as I know you can't delete the primary email address for an iCloud account.  It's assigned when the account is created.  But your neighbor wouldn't have been able to get into your iCloud account without your Apple ID and password.  Are you sure the account wasn't still on your phone when you gave it to him?
You could migrate a copy of your data to a new iCloud account but I would still be concerned that someone else was using my old account, which presumably still has your data in it.
I'm fairly certain that you're going to have to have iCloud support help you sort this one out as they may have the ability to make changes to an existing account that users can't.  Make an appointment with the genius bar at a nearby Apple store and have them take a look at it.  If necessary, they should be able to contact iCloud support for you.

Similar Messages

  • My iPod camera won't work. The shutter doesn't open at all. I backed up and restored my iPod but it didn't make it work. Now I'm so mad and confused. Please help.

    My iPod camera won't work. The shutter doesn't open at all. I backed up and restored my iPod but it didn't make it work. Now I'm so mad and confused. Please help.

    If you restored to factory settings/new iPod via iTunes (Not via Settings>General>Reset>Erase all Content and Setting) and still have the problem that indicates a hardware problem.
    Make an appointment at the Genius Bar of an Apple store..
    Apple Retail Store - Genius Bar

  • I need to pass a query in form of string to DBMS_XMLQUERY.GETXML package...the parameters to the query are date and varchar ..please help me..

    I need to pass a query in form of string to DBMS_XMLQUERY.GETXML package...the parameters to the query are date and varchar ..please help me build the string .Below is the query and the out put. ( the string is building fine except the parameters are with out quotes)
    here is the procedure
    create or replace
    procedure temp(
        P_MTR_ID VARCHAR2,
        P_FROM_DATE    IN DATE ,
        P_THROUGH_DATE IN DATE ) AS
        L_XML CLOB;
        l_query VARCHAR2(2000);
    BEGIN
    l_query:=  'SELECT
        a.s_datetime DATETIME,
        a.downdate Ending_date,
        a.downtime Ending_time,
        TO_CHAR(ROUND(a.downusage,3),''9999999.000'') kWh_Usage,
        TO_CHAR(ROUND(a.downcost,2),''$9,999,999.00'') kWh_cost,
        TO_CHAR(ROUND(B.DOWNUSAGE,3),''9999999.000'') KVARH
      FROM
        (SELECT s_datetime + .000011574 s_datetime,
          TO_CHAR(S_DATETIME ,''mm/dd/yyyy'') DOWNDATE,
          DECODE(TO_CHAR(s_datetime+.000011574 ,''hh24:'
          ||'mi''), ''00:'
          ||'00'',''24:'
          ||'00'', TO_CHAR(s_datetime+.000011574,''hh24:'
          ||'mi'')) downtime,
          s_usage downusage,
          s_cost downcost
        FROM summary_qtrhour
        WHERE s_mtrid = '
        ||P_MTR_ID||
       ' AND s_mtrch   = ''1''
        AND s_datetime BETWEEN TO_DATE('
        ||P_FROM_DATE||
        ',''DD-MON-YY'') AND (TO_DATE('
        ||P_THROUGH_DATE||
        ',''DD-MON-YY'') + 1)
        ) a,
        (SELECT s_datetime + .000011574 s_datetime,
          s_usage downusage
        FROM summary_qtrhour
        WHERE s_mtrid = '
        ||P_MTR_ID||
        ' AND s_mtrch   = ''2''
        AND s_datetime BETWEEN TO_DATE('
        ||P_FROM_DATE||
        ',''DD-MON-YY'') AND (TO_DATE('
        ||P_THROUGH_DATE||
        ','' DD-MON-YY'') + 1)
        ) B
      where a.S_DATETIME = B.S_DATETIME(+)';
    SELECT DBMS_XMLQUERY.GETXML('L_QUERY') INTO L_XML   FROM DUAL;
    INSERT INTO NK VALUES (L_XML);
    DBMS_OUTPUT.PUT_LINE('L_QUERY IS :'||L_QUERY);
    END;
    OUTPUT parameters are in bold (the issue is they are coming without single quotes otherwise th equery is fine
    L_QUERY IS :SELECT
        a.s_datetime DATETIME,
        a.downdate Ending_date,
        a.downtime Ending_time,
        TO_CHAR(ROUND(a.downusage,3),'9999999.000') kWh_Usage,
        TO_CHAR(ROUND(a.downcost,2),'$9,999,999.00') kWh_cost,
        TO_CHAR(ROUND(B.DOWNUSAGE,3),'9999999.000') KVARH
      FROM
        (SELECT s_datetime + .000011574 s_datetime,
          TO_CHAR(S_DATETIME ,'mm/dd/yyyy') DOWNDATE,
          DECODE(TO_CHAR(s_datetime+.000011574 ,'hh24:mi'), '00:00','24:00', TO_CHAR(s_datetime+.000011574,'hh24:mi')) downtime,
          s_usage downusage,
          s_cost downcost
        FROM summary_qtrhour
        WHERE s_mtrid = N3165 AND s_mtrch   = '1'
        AND s_datetime BETWEEN TO_DATE(01-JAN-13,'DD-MON-YY') AND (TO_DATE(31-JAN-13,'DD-MON-YY') + 1)
        ) a,
        (SELECT s_datetime + .000011574 s_datetime,
          s_usage downusage
        FROM summary_qtrhour
        WHERE s_mtrid = N3165 AND s_mtrch   = '2'
        AND s_datetime BETWEEN TO_DATE(01-JAN-13,'DD-MON-YY') AND (TO_DATE(31-JAN-13,' DD-MON-YY') + 1)
        ) B
      where a.S_DATETIME = B.S_DATETIME(+)

    The correct way to handle this is to use bind variables.
    And use DBMS_XMLGEN instead of DBMS_XMLQUERY :
    create or replace procedure temp (
      p_mtr_id       in varchar2
    , p_from_date    in date
    , p_through_date in date
    is
      l_xml   CLOB;
      l_query VARCHAR2(2000);
      l_ctx   dbms_xmlgen.ctxHandle;
    begin
      l_query:=  'SELECT
        a.s_datetime DATETIME,
        a.downdate Ending_date,
        a.downtime Ending_time,
        TO_CHAR(ROUND(a.downusage,3),''9999999.000'') kWh_Usage,
        TO_CHAR(ROUND(a.downcost,2),''$9,999,999.00'') kWh_cost,
        TO_CHAR(ROUND(B.DOWNUSAGE,3),''9999999.000'') KVARH
      FROM
        (SELECT s_datetime + .000011574 s_datetime,
          TO_CHAR(S_DATETIME ,''mm/dd/yyyy'') DOWNDATE,
          DECODE(TO_CHAR(s_datetime+.000011574 ,''hh24:'
          ||'mi''), ''00:'
          ||'00'',''24:'
          ||'00'', TO_CHAR(s_datetime+.000011574,''hh24:'
          ||'mi'')) downtime,
          s_usage downusage,
          s_cost downcost
        FROM summary_qtrhour
        WHERE s_mtrid = :P_MTR_ID
        AND s_mtrch   = ''1''
        AND s_datetime BETWEEN TO_DATE(:P_FROM_DATE,''DD-MON-YY'')
                           AND (TO_DATE(:P_THROUGH_DATE,''DD-MON-YY'') + 1)
        ) a,
        (SELECT s_datetime + .000011574 s_datetime,
          s_usage downusage
        FROM summary_qtrhour
        WHERE s_mtrid = :P_MTR_ID
        AND s_mtrch   = ''2''
        AND s_datetime BETWEEN TO_DATE(:P_FROM_DATE,''DD-MON-YY'')
                           AND (TO_DATE(:P_THROUGH_DATE,'' DD-MON-YY'') + 1)
        ) B
      where a.S_DATETIME = B.S_DATETIME(+)';
      l_ctx := dbms_xmlgen.newContext(l_query);
      dbms_xmlgen.setBindValue(l_ctx, 'P_MTR_ID', p_mtr_id);
      dbms_xmlgen.setBindValue(l_ctx, 'P_FROM_DATE', to_char(p_from_date, 'DD-MON-YY'));
      dbms_xmlgen.setBindValue(l_ctx, 'P_THROUGH_DATE', to_char(p_through_date, 'DD-MON-YY'));
      l_xml := dbms_xmlgen.getXML(l_ctx);
      dbms_xmlgen.closeContext(l_ctx);
      insert into nk values (l_xml);
    end;

  • Hello, I have long been using Mozilla Firefoh, but I can't restore a theme (in the browser before I used the theme in anime), I do not remember how to install it and where to find, maybe it was not a topic, and skin. Please help me solve this problem.

    (in the browser before I used the theme in anime), I do not remember how to install it and where to find, maybe it was not a topic, and skin.

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • I've tried to install flash player several different times ans each time i get a connection error message.It downloads fine and when i run the file to start install,it installs up to 5% and then i get the connection error message.Can someone please help m

    I've tried to download the flash player several different times and each time i get a connection error message.It downloads fine and when i run the file to start install, it installs up to 5% and then i get the connection error message. I've tried disabling my antivirus software, closing my browser for install and nothing.Can someone please help me? I'm using Firefox.

    Hi!
    I had the exact same issue, being on a mac. If you are on a mac and the connection error message occurs, then use this link http://fpdownload.macromedia.com/pub/flashplayer/latest/help/install_flash_player_osx.dmg
    It allows you to download it offline, which is what I used.
    Hope I was help!
    -Haroon

  • I payed for my creative cloud membership 9.99 / monthe. bought it this morning. I was able to download Lr, but not Ps. I am wondering why is asking me to pay antoher 9.99 if I got the student deal. Can you please help. thank you.

    I payed for my creative cloud membership at 9.99/mo. I got it this morning. I was able to download Lr, but not able to download Ps. is asking me to pay again. Why is that, because I got the student packet deal. Can you please help.

    Mariacazarez what is the exact error message you receive when you try to download and install Photoshop?  For information on how to install the Adobe Creative applications included with your membership please see Install and update apps - https://helpx.adobe.com/creative-cloud/help/install-apps.html.

  • HT1386 Good evening. My iPhone is disabled and everything I have tried is not allowing me to get back on. I do not remember what the passcode is. Will you please help me.

    I need help unlocking my iPhone. I just switched from Samsung of which I never used a passcode. So I don't remember the passcode. I have tried the things they suggest with out avail.

    You will need to connect the phone to the computer and iTunes and restore as new. See this support document for instructions. http://support.apple.com/kb/ht1212

  • I think the new update for the ellipsis 7 killed my tablet, please help?

    I have an ellipsis 7 tablet and yesterday i decided to give it is update. my tablet started to up date and then the screen turned black. when i finally turned off i tried to turn it on, it showed  the powered by android screen and then turned black while still lit up. ever since i tried to update it that is all it will do besides show me the battery symbol when i plug it in. Ive have tried everything, charging it, factory reset letting it die completely and trying to reset it, everything. Why has this update killed my tablet and can you please help?

        Oh no! That's definitely not good, Krista001. We're here to help out with your Ellipsis tablet. I appreciate all the troubleshooting steps you have done thus far. Just to confirm, the alternate restart method where you hold down the power button for about 15-20 seconds did not restart your tablet like normal either?
    If it is still experiencing issues, please reach out to customer service at 1-800-922-0204 for further assistance. You may also send us a DM to if you like. Please accept my Follow request, and then Follow me back. You should now be able to send us a DM.
    NicandroN_VZW
    Follow us on twitter @VZWSupport

  • I have an iPhone 6.  For the first two weeks my bluetooth worked fine but then started having issues.  Now, although it shows that it is connected to Bluetooth, I can't hear any of the calls.  The radio continues to play.  Please help!

    I have an iPhone 6.  For the first two weeks my bluetooth worked fine but then started having issues.  Now, although it shows that it is connected to Bluetooth, I can't hear any of the calls.  The radio continues to play.  Please help!

    Hello there, Srushevics.
    It sounds like you may be having issues with the connectivity of your iPhone with the Bluetooth in your vehicle. The following Knowledge Base article offers up some great steps for troubleshooting that Bluetooth connectivity with your iOS device:
    If you can’t use a Bluetooth accessory or car kit
    To resolve the issue, you'll need to first sign in to iCloud and review your devices:
    Sign in to iCloud on your iOS devices and Macs with OS X Yosemite (available this fall).
    On one of your devices, tap Settings > Bluetooth and look under My Devices. You'll see all devices that are connected to Bluetooth, but make sure that you see your Apple devices that are signed in to iCloud and are using iOS 8 or OS X Yosemite.
    Sign out of your iCloud account from any devices that you don't want to use. To sign out of iCloud on an iOS device, tap Settings > iCloud > Sign Out.
    Then, remove any inactive devices from iCloud:
    Sign in to iCloud.com.
    Select Find My iPhone.
    Select any devices that aren't active anymore.
    Wait for Find My iPhone to stop trying to find the inactive device.
    You should see the option to remove this device from your account. Select it to remove the device.
    After following the steps above, restart the device with the issue. Then try to use it with your Bluetooth accessory.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Okay so I recently bought an IPhone 4S from a friend, and when I had gotten home, his old iTunes/apple/ICloud account wa still logged in and after a few  attempts of it, I don't know the way through it, could anyone please help?! thank you so much!!

    Okay so I recently bought an IPhone 4S from a friend, and when I had gotten home, his old iTunes/apple/ICloud account wa still logged in and after a few  attempts of it, I don't know the way through it, could anyone please help?! thank you so much!!

    You've encountered iCloud Activation Lock. Contact you friend and have him follow the directions here:
    Find My iPhone Activation Lock: Removing a device from a previous owner’s account

  • Hi, I set up my new iPhone S4 with iclouds. So the data of my old S3 should move to the S4. However, some applications could not be loaded on the S04. Now some apps are loaded and others not . How can I progress?

    Hi, I set up my new iPhone S4 with iclouds. So the data of my old S3 should move to the S4. However, some applications could not be loaded on the S04. Now some apps are loaded and others not . How can I progress?

    Thanks. I can change the forwarding settings in Gmail to be either POP or IMAP. That is quite simple. I just looked at those settings on the Gmail server and, to my surprise, both are enabled. In order for outlook client on my computer to receive IMAP emails I have to change the email account settings in my current outlook from POP to IMAP. I don't need to be using the Exchange version of Outlook to receive IMAP. I guess I'll do a little research tomorrow on Exchange so i can figure out what, if anything, it might do for me.
    I glanced at the link you sent me and it looks like it might be very helpful - another project for tomorrow.
    BTW: I hit "This Solved my Question" by accident. I meant only to "like' your response so you would get some benefit from the help you've given me so far. I hope I haven't discouraged others from taking a shot at helping me. I suspect there is more than one way to approach this and, as you know, my problem isn't really solved until I have what I need all set up and running smoothly.

  • Help! I just put a US sim card (i am from Canada) and got a monthly pre paid plan, and when I went to restore the iphone, it didn't work. I can't find backup that i did right before the sim was changed. I really need the info that was there! Please help..

    Help! I just purchased a US sim card/monthly pre-paid plan (i am from Canada) as I am travelling in the states for a month, and when I went to restore the iphone, it didn't work. I can't find backup that i did right before the sim was changed. I really need the info that was there! Please help..

    Hold on,
    Have you talked to your carrier to confirm the unlock?
    What was the procedure you did to unlock the phone?
    Standard unlocking procedure once processed by the carrier:
    Backup in iTunes
    Erase the phone (ignore restore terminology here)
    Plug the phone to the computer and then launch iTunes
    Wait for unlock notification.
    Restore the backup.

  • This morning the Iphone prompted me to update software. After that it said my phone was in recovery mode and I had the restore my phone. Now most of the apps are muted and don't respond, help!

    This morning the Iphone prompted me to update software. After that it said my phone was in recovery mode and I had the restore my phone. Now most of the apps are muted and don't respond, help!

    First, in iTunes, launch Preferences and go to the Devices tab. Check the date and time of the last backup. If it is recent you can restore it. However, if you mean you have the photos back in your Camera Roll then the backup was already restored. To get your music and apps back it should just be necessary to click "Sync".

  • I have a problem with itunes when I sync the saved music and want to sync my iphone 5 ios 7.0.6 no longer passes the music thing is that just stays on "waiting for sync" and not worry please help are more than 400 songs that do not want to hear who are wi

    I have a problem with itunes when I sync the saved music and want to sync my iphone 5 ios 7.0.6 no longer passes the music thing is that just stays on "waiting for sync" and not worry please help are more than 400 songs that do not want to hear who are wi

    Plawexki wrote:
    ...  do you know if the contacts, photos, messages etc will be wiped?
    Yes... Everything will be Wiped and Replaced with what is currently on Your Mac.
    SYNCING with iTunes
    See here  >  http://support.apple.com/kb/HT1386
    From Here  >  http://www.apple.com/support/iphone/syncing/
    You may find this information of interest...
    Have a read here...
    https://discussions.apple.com/message/18409815?ac_cid=ha
    And See Here...
    How to Use Multiple iDevices with One Computer

  • HT1386 I have Mac itunes and a touch 2G.  My wife has Win7 and touch 4G (both iOS 4.2.1). She got a new iphone, I now have her touch 4G, and am trying to sync it to my Mac itunes.  The music and videos sync, but apps & podcast will not. All checked to syn

    I have Mac itunes and a touch 2G.  My wife has Win7 and touch 4G (both iOS 4.2.1). She got a new iphone, I now have her touch 4G, and am trying to sync it to my Mac itunes.  The music and videos sync to the 4G, but apps & podcast will not. All are checked to sync.  During sync, it gets to "determining apps to sync"  then immediately goes to "finished syncing".   No apps or podcasts from my Mac itunes are on the touch 4G.

    You can only sync to one iTunes library but you can manage music and videos among different computer/libraries.
    It appears that you are trying to sync with a different library.
    - If you want to make the Mac you syncing computer:
    --- Connect the iPod to the computer and make a backup by:
    iOS: How to back up
    --- Restore the iPod from that backup. Note that synced media like apps and music are not in included in the backup.

Maybe you are looking for

  • Search and replace string not work as per required

    please find the attachment. i am trying to replace the variable names but it doesnt replace the variable as i expected. Please help me in this Attachments: Replace String.vi ‏8 KB Replace String.vi ‏8 KB

  • Significance of FRE

    hi in pricing proced for a cond type FRA1 am maintaing acct key as FRE , accrual key as FR1 when am taking GR accounts are updating like this for Ex Inventory ac Dr   BSX  110 Rs/ GR/IR ac Cr    WRX   100 Rs/ Frt ac Cr          FR1   10 Rs/ here am n

  • Looking for photo files

    I have the latest Macbook Air with Lion preinstalled, and while I love iPhoto, I can't find my files. When I turn on iPhoto all the photos are there, but when I look for them with finder, I can't find them anywhere.  I assumed that they would be unde

  • Toolbar

    I am newbie to swing can anyone help me on tollbar separators How to use this

  • Object changed by date,person required for table TADIR

    HI Experts,     I required this         the entries in tadir table has belonged to different object types.   i required the last changed by ,last change date.if u recommended that depending on object type select those changedby ,date from different t