Figuring out the correct icloud account

We had to "clear"out our sons iphone 4 (which is not connected to service) because he forgot his password.  He's using it like an ipod.  When we did this and tried to set it up it is asking us to conncect to an icloud account - but we can't figure out which one.  None of our other 3 devices are set up to the one it's prompting us to nor will it recognize the icloud account that it was origanally linked to.  Any suggestions?

Thanks Roger this is uncouraging. I went into my iDisk and I found two things. A folder called Istvan's site that opened to a folder called Blog to a file called rss.xml. This file would not open after I downloaded it. The other thing in the same location was a file called sites.rss that I was able to open. I'm hoping that is the one I need to change. Is it?
The very start of the code has the channel and item tags like you mention in your instructions. Here it is:
<?xml version="1.0"?>
<rss xmlns:admhp="http://www.apple.com/DotMac/Homepage" version="2.0">
<channel>
<title>i.am.istvan</title>
<description></description>
<link>http://web.mac.com/i.am.istvan/iWeb</link>
<item>
<title>Blog</title>
If in fact this is the file I need to alter do I replace the three lines between the two tags with my new location? Or do I do something else? Why do I feel like I'm about to cut the wrong wire? Thanks Roger.

Similar Messages

  • How do I get the correct ICloud account on my iOS devices?

    Hello. A few days ago, I changed my Apple ID username from my old email to my new one. Everything worked fine and I was able to re-login to the App Store, iMessage, etc. A few days later, I got a message from iCloud asking me to login. When I tried to login it failed and I realized that it was using my old Apple ID email to login to iCloud. So I went into accounts and tried to delete that account and add the account with the correct Apple ID. When I tried to delete the account it asked for my iCloud password to confirm, which doesn't work because it is using my old Apple ID. I then tried to add my current iCloud account without deleting the old one, but when I did it said it was already on the device. How do I get the correct ICloud account on my iOS devices?

    Log out of the old ID, then login using the new one with the correct pw.

  • I just bought a MAC and am trying  to figure out the correct version

    I just bought a MAC and am trying  to figure out the correct version of LR4 to install on the Mac.  Someone in support (LR) gave the link for the downloads, and I chose the LR4.4 (but, it said LR5---kind of confusing).  I don't have a DVD drive, so I am not sure if this one will work.  I have the LR icon that says Light Room 4.4 on the screen, but LR does not open when I click it.....????? How do I open this?  Thanks!!!

    I called my ISP to set it to Bridge mode and they said that they couldn't do that (Linksys help desk gave me instructions on the switch to Bridge mode).  However, they then tried to upsell me their own wireless router for $79.99......
    Can I make this change myself or do they need to do it from their end?
    Thanks!

  • Can't figure out the correct syntax for this select statement

    Hello,
    The following statement works great and gives the desired results:
    prompt
    prompt Using WITH t
    prompt
    with t as
       select a.proj_id,
              a.proj_start,
              a.proj_end,
              case when (
                         select min(a.proj_start)
                           from v b
                          where (a.proj_start  = b.proj_end)
                            and (a.proj_id    != b.proj_id)
                        is not null then 0 else 1
              end as flag
         from v a
        order by a.proj_start
    select proj_id,
           proj_start,
           proj_end,
           flag,
           -- the following select statement is what I am having a hard time
           -- "duplicating" without using the WITH clause
            select sum(t2.flag)
              from t t2
             where t2.proj_end <= t.proj_end
           ) s
      from t;As an academic exercise I wanted to rewrite the above statement without using the WITH clause, I tried this (among dozens of other tries - I've hit a mental block and can't figure it out):
    prompt
    prompt without with
    prompt
    select c.proj_id,
           c.proj_start,
           c.proj_end,
           c.flag,
           -- This is what I've tried as the equivalent statement but, it is
           -- syntactically incorrect.  What's the correct syntax for what this
           -- statement is intended ?
            select sum(t2.flag)
              from c t2
             where t2.proj_end <= c.proj_end
           ) as proj_grp
      from (
            select a.proj_id,
                   a.proj_start,
                   a.proj_end,
                   case when (
                              select min(a.proj_start)
                                from v b
                               where (a.proj_start  = b.proj_end)
                                 and (a.proj_id    != b.proj_id)
                             is not null then 0 else 1
                   end as flag
              from v a
             order by a.proj_start
           ) c;Thank you for helping, much appreciated.
    John.
    PS: The DDL for the table v used by the above statements is:
    drop table v;
    create table v (
    proj_id         number,
    proj_start      date,
    proj_end        date
    insert into v values
           ( 1, to_date('01-JAN-2005', 'dd-mon-yyyy'),
                to_date('02-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 2, to_date('02-JAN-2005', 'dd-mon-yyyy'),
                to_date('03-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 3, to_date('03-JAN-2005', 'dd-mon-yyyy'),
                to_date('04-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 4, to_date('04-JAN-2005', 'dd-mon-yyyy'),
                to_date('05-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 5, to_date('06-JAN-2005', 'dd-mon-yyyy'),
                to_date('07-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 6, to_date('16-JAN-2005', 'dd-mon-yyyy'),
                to_date('17-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 7, to_date('17-JAN-2005', 'dd-mon-yyyy'),
                to_date('18-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 8, to_date('18-JAN-2005', 'dd-mon-yyyy'),
                to_date('19-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 9, to_date('19-JAN-2005', 'dd-mon-yyyy'),
                to_date('20-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (10, to_date('21-JAN-2005', 'dd-mon-yyyy'),
                to_date('22-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (11, to_date('26-JAN-2005', 'dd-mon-yyyy'),
                to_date('27-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (12, to_date('27-JAN-2005', 'dd-mon-yyyy'),
                to_date('28-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (13, to_date('28-JAN-2005', 'dd-mon-yyyy'),
                to_date('29-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (14, to_date('29-JAN-2005', 'dd-mon-yyyy'),
                to_date('30-JAN-2005', 'dd-mon-yyyy'));

    Hi, John,
    Not that you asked, but as you proabably know, analytic functions are much better at doing this kind of thing.
    You may be amazed (as I continually am) by how simple and efficient these queries can be.
    For example:
    WITH     got_grp          AS
         SELECT     proj_id, proj_start, proj_end
         ,     proj_end - SUM (proj_end - proj_start) OVER (ORDER BY  proj_start)     AS grp
         FROM     v
    SELECT       ROW_NUMBER () OVER (ORDER BY grp)     AS proj_grp
    ,       MIN (proj_start)                         AS proj_start
    ,       MAX (proj_end)               AS proj_end
    FROM       got_grp
    GROUP BY  grp
    ORDER BY  proj_start
    ;Produces the results you want:
      PROJ_GRP PROJ_START  PROJ_END
             1 01-Jan-2005 05-Jan-2005
             2 06-Jan-2005 07-Jan-2005
             3 16-Jan-2005 20-Jan-2005
             4 21-Jan-2005 22-Jan-2005
             5 26-Jan-2005 30-Jan-2005This is problem is an example of Neighbor-Defined Groups . You want to GROUP BY something that has 5 distinct values, to get the 5 rows above, but there's nothing in the table itself that tells you to which group each row belongs. The groups are not defined by any column in hte table, but by relationships between rows. In this case, a row is in the same group as its neighbor (the row immediatly before or after it when sorted by proj_start or proj_end) if proj_end of the earlier row is the same as proj_start of the later row. That is, there is nothing about 03-Jan-2005 that says the row with proj_id=2 is in the first group, or even that it is in the same group with its neighbor, the row with proj_id=3. Only the relation between those rows, the fact that the earlier row has end_date=03-Jan-2005 and the later row has start_date=03-Jan-2003, that says these neighbors belong to the same group.
    You're figuring out when a new group starts, and then counting how many groups have already started to see to which group each row belongs. That's a prefectly natural procedural way of approaching the problem. But SQL is not a procedural language, and sometimes another approach is much more efficient. In this case, as in many others, a Constant Difference defines the groups. The difference between proj_end (or proj_start, it doesn't matter in this case) and the total duratiojn of the rows up to that date determines a group. The actual value of that difference means nothing to you or anybody else, so I used ROW_NUMBER in the query above to map those distinct values into consecutive integers 1, 2, 3, ... which are a much simpler way to identify the groups.
    Note that the query above only requires one pass through the table, and only requires one sub-query. It does not need a WITH clause; you could easily make got_grp an in-line view.
    If you used analytic functions (LEAD or LAG) to compute flag, and then to compute proj_grp (COUNT or SUM), you would need two sub-queries, one for each analytic function, but you would still only need one pass through the table. Also, those sub-queries could be in-line views; yiou would not need to use a WITH clause.

  • I'm unable to load my Microsoft Exchange account.  Think I'm entering the wrong info for domain and user but haven't figured out the correct inputs...

    I think the problem is with my domain and user name information.  Does anyone have any suggestions...

    I know that when i tried to add a Live/Hotmail account I tried MS Ex but ended up having to forward my Live to my Gmail or just add an IMAP account.

  • Can't figure out the correct xPath for this...

    Hi,
    I'm using Oracle Service Bus and got into a problem with xPath.
    I need to get two parameters - userId and password - from this XML.
    * All I managed to do is get them with _$body//*:userId/text()_ but then I get a string that contacs both occurrences of this parameter on this XML and I only need one!
    * I also tried getting the exact path using _$body/Butterfly/errorData/UserData/userId/text()_ but got nothing. When trying to add the NS (like bas:userId) It's doesn't comply with validation.
    Here's my XML. I would really appreciate your help here!
    <soapenv:Body xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <Butterfly xmlns="http://xml.netbeans.org/schema/Butterfly" xmlns:msgns="http: //j2ee.netbeans.org/wsdl/EquipmentController" xmlns:ns1="http://xml.netbeans.org /schema/Butterfly" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <errorData xmlns="">
    <equ:UserData xmlns:equ="http://xml.netbeans.org/schema/EquipmentSchema" x="" mlns:swap="http://xml.netbeans.org/NewDetails" xmlns:bas="http://xml.netbeans.org /schema/BaseSchema">
    <bas: password >1</bas:password>
    <bas: userId >1</bas:userId>
    <bas:FirstIssue>1</bas:FirstIssue>
    </equ:UserData>
    <operation>CloseArgs</operation>
    <service>FinishProcess_Proxy</service>
    <project>MajorProcess</project>
    <request_data_xml>
    <equ:NewDetailsParams xmlns:equ="http://xml.netbeans.org/schema/Equipment Schema">
    <equ:UserData>
    <bas: password xmlns:swap="http://xml.netbeans.org/NewDetails" xmlns:b="" as="http://xml.netbeans.org/schema/BaseSchema">1</bas:password>
    <bas:FirstIssue xmlns:swap="http://xml.netbeans.org/NewDetails" xm="" lns:bas="http://xml.netbeans.org/schema/BaseSchema">1</bas:FirstIssue>
    <bas: userId xmlns:swap="http://xml.netbeans.org/NewDetails" xmlns:bas="http://xml.netbeans.org/schema/BaseSchema">1</bas:userId>
    </equ:UserData>
    <equ:NewDetailsSetDT>
    <equ:Data>
    <swap:Code xmlns:swap="http://xml.netbeans.org/NewDetails">110</swap:Code>
         <swap:Reason xmlns:swap="http://xml.netbeans.org/NewDetails">60</swap:Reason>
    </equ:Data>
    </equ:NewDetailsSetDT>
    <equ:Off>1</equ:Off>
    </equ:NewDetailsParams>
    </request_data_xml>
    </errorData>
    </Butterfly>
    </soapenv:Body>
    Edited by: kobyssh on 03:28 04/02/2010

    Hi gentleman,
    you need the text of userid and username,I think you need add the namespace which contains tow parts:one is the wsdl defination namespace and the other is
    the namespace which you defination just as bas:http://xml.netbeans.org /schema/BaseSchema.
    by the way you can use the OSB XQuery expression which don't need to write the xpath,you can drag it from variable structrue.
    Rgds,
    Jacky(Yang Yi.)

  • How to figure out the correct screen resolution?

    My 2 year old was playing with my iMac G5 and messed up the resolution setting. I have managed to restore it to something that looks okay, but am not certain what the optimum is. In System Preferences/Displays I have it set to 1600x1200 60Hz, which I suspect is more pixels than this 3.5 year old 17' iMac has. If I go to About this Mac/More Info... I see the iMac resolution says 1440x900 (this is not one of the choices in System Preferences/Displays) and the VGA Display says 1600x1200 @ 60 Hz which I wonder is for any external display or something and I believe just reflects what I have the Preferences set to. Any way to discover what the optimum resolution should be?

    I don't think you can choose more pixels than your machine has, or it wouldn't be a choice. I have always understood that the optimum resolution is the largest available as a choice in Display.

  • TS2446 is there anyway i can figure out the email addresses that i used to make my iCloud account?

    i have forgotten the first icloud account linked to the find my iphone app and my phone has been restarted to the factory settings is there anybody i can calll or anything i can do to find out my old informaion?

    Unfortunately, only you know/knew the ID and password of your account.  This is part of iOS 7's new security that prevents others from accessing your data on a device that has the Find My iPhone service running.
    If you do remember the account ID (but not the password), you might try the following link, click the Manage your Account botton there ..
    My Apple ID

  • I have an ipad&iPhone but used the same iCloud account for both during setup.i now have ran out of iCloud storage!

    I have an ipad&amp;iPhone but used the same iCloud account for both during setup.i now have ran out of iCloud storage! If I delete the account from iPhone will I lose the apps from my ipad?
    And will new account that i set up on iPhone give me 5gb storage? I assume its not as easy it sounds, it never is!
    It is the camera roll on both devices that are using the storage up, and I know I can transfer the photos to a hard copy, which I will but if I can get 5gb from two separate iCloud accounts then that's the route I will take!
    Many thanks in advance for your help.
    Ps I had originally synced the iPad and iPhone but as far as this apple illiterate operator is aware I managed to stop them syncing a few months at lol.thanks

    Welcome to the Apple Community.
    I assume that the same account is required on both devices (it would be rather awkward otherwise) and that most of your space is consumed by back up.
    You will need to buy more storage or back up to iTunes instead of iCloud.
    Being able to back up to the cloud can be very useful, especially if you don't have access to a computer or have infrequent access to one, however unless you specifically need to use iCloud for back up, you will find backing up to iTunes significantly more convenient and possibly more reliable.

  • I bought an iPhone from someone out of the paper and they didn't log out of their iCloud account.

    I Bought an iphone from someone out of the paper and they didn't log out of their icloud account.
    im not too sure how to fix this problem considering I cannot get in contact with them.
    so if someone could help me I would really appreciate it.

    If they left an activation lock on the device, you can't fix it but may be able to get a refund for the iPhone.
    (113082)

  • TS4006 My Apple iPod Touch 4th Generation was stolen if the thief signed out of my iCloud account on the device will it go away on the web map on my computer and keep me from locking it remotely?

    My Apple iPod Touch 4th Generation was stolen if the thief signed out of my iCloud account on the device will it go away on the web map on my computer and keep me from locking it remotely? I was asking my grandmother who works in apple tech support at at&t but she didnt know. so im hoping somebody will come by and say yes to my question because my iPod touch is still appearing in my iCloud.com account.

    Yes. If it was signed out from iCloud, it will disappear from the Devices list in Find my iPhone.

  • TS2446 I can not purchase on ITunes for the first time because I forgot the answer to my security questions, is there a way I can log into my account and figure out the awensers to the questions?

    I can not purchase on ITunes for the first time because I forgot the answer to my security questions, is there a way I can log into my account and figure out the awensers to the questions?

    Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities

  • I can't download any apps, it keeps telling me "There is a billing problem with a previous purchanse"!  I've checked all my account info and can't figure out the prob??

    I can't download any apps, it keeps telling me "There is a billing problem with a previous purchanse"!  I've checked all my account info and can't figure out the prob??

    Contact Itunes support and ask them

  • HT4865 So who believes Apple should be a bit more cautionary about the sharing of iMessages and other content when several members of a family share the same iCloud account and unknowing can audit each other's iMessages, Contacts, and god only knows what

    I think Apple should be a bit more cautionary about iCloud and privacy.  My family shares the same iCloud account as we all enjoy the music we collectively purchase on iTunes; we paid Apple for this feature with some kind of grouped account.  We didn't know, however that this joins our devices so that iMessages, contacts, pictures and just about everything else is shared too.  The unprivate default seems to be to share everything between all devices vs. to allow access by exception or by choice (or by password?).  Sure, when my kids get all my texts I can go figure out why and fix it but that is in my mind the antithesis of privacy and could be quite embarrassing for any family.  I guess it is good for stalking the kids or parents though if they don't know about the partyline approach to privacy.  Maybe a tech solution would be to have the iPhone show somehow the extent of its audience to its user.

    No argument from me about the vagaries of using and sharing Apple IDs.  This can lead to unintended consequences, especially in a family situation.
    If you're sharing the same ID for FaceTime, you might want to go to Settings>FaceTime, tap the ID, sign out, then sign in with separate IDs there too.  Otherwise, you'll end up getting each other's FaceTime calls.
    Also, if you need to migrate everyone's devices to separate iCloud accounts to keep your synced data separated, you can do this by saving any photo stream photos you wish to keep to your camera roll (unless already there) by opening your my photo stream album, tapping Select, tapping the photos, tap the share icon (box with upward facing arrow), then tapping Save to Camera Roll.  If you are syncing notes with iCloud, you'll need to open each of your notes and email them to yourself so you can later copy and paste the text into new notes created in your new account.  Then go to Settings>iCloud, tap Delete Account (which only deletes it from this device, not from iCloud), choose Keep on My iDevice and provide the password to turn off Find My iPhone.  Then sign back in with a different Apple ID to create your new account and choose Merge to upload your data.  Once everyone's devices are on separate accounts, you can go to icloud.com and delete each other's data from your accounts.

  • How to use family sharing when already sharing the same iCloud account

    My wife and I started separate iTunes account many years ago, and thus made many purchases on each account.  Some time later we started using iCloud, and when we did, we decided we wanted to share the same iCloud account so my wife, for example, could add entries in the Notes app and I'd be able to see them, and vise versa.  In addition, we have another iPhone for our daughter, and with that she has her own iCloud account in use on her phone, however, she is signed into my iTunes account on her phone (so her/my purchases were on the same iTunes account, namely mine).
    Now, years later, Family Sharing came along and I'm trying to figure out how I can also make that work with the iTunes and iCloud setup we currently have.  My hope, with the Family Sharing feature, is that my wife's purchases (on her iTunes account) and my purchases on my iTunes account would be able to be shared.  That said, how should I go about setting up Family Sharing such

    sounds like you only need to share with the other account that your daughter used.  the same id in icloud on wifes devie is fine.  this article will help. Sharing purchased content with Family Sharing - Apple Support Peace, Clyde

Maybe you are looking for

  • Flash Builder (4.5.1) iOS on-device debug crash

    Hi all, I've got a Flex app that I'm building for an iPAD and I can debug it on the simulator and on the iPad device (if I select 'fast' packaging method). The problem is when I want to debug on the device using the "Standard" option for packaging (w

  • Strange high pitches noise

    So, when I'm doing anything on the computer, I'm getting a really high frequency note, about an f# 8 (not sure about the octave). When i move the scroll bar on a window up or down, the noise goes away but comes back when the movement has stopped, it

  • Modem relay or passthrough? Power meter trying to be read...

    Hello Everyone! I am stuck with a problem and don't know how to proceed. Our power company has a modem (old as cold) in their power meter. We have a PRI hitting a VGW (2921 router), this VGW hands off the call to a VG204. They are negated to upgrade

  • APEX on 10.2.0.3 & HTML Server from companion cd 10.2.0.1

    Hi, I am preparing to install Oracle Application Express(APEX) on already installed oracle 10.2.0.3 database on sun sparc(64) and hence I need to install Oracle HTML server also, as it's not already installed As I do not have access of Oracle 10.2.0.

  • Counting number of elements

    Suppose you have xml that has repeated nodes, like: <foo> <bar>some</bar> <bar>stuff</bar> <bar>here</bar> </foo> What query would I give to count the number of <bar> elements? Also, is there a query that would concatenate the contents of all of them