Icloud activation plz need big help :(

hello apple ,
 here is my situation , in december 2013 my ant lives in usa she bought two iphones 5 one of herself and one for me as a present for my graduation this summer ,so her son ( my cusin ) set them up and he activated the icloud security in both of them , i mean he create an apple account for her device and one another for me , the problem is when my aunt came yesterday from usa to tunisia ( i live in sousse , tunisia ) and she gave me my present , i was really happy and when i came back home i restored it and updated but after i have done that and tried to open it as usual it was stucked in the activation lock of icloud security , i did contacted my cusin and ask him for the apple ID and password but the problem is that he couldn't remember it and even if he tried to reset the password he forgot about the security questions and answers ... please apple help me im really sad and upset about what i have done it was working great before restore ... looking forward for a positive email ,
IMEI: ****
ICCID : **** please i can"t wait to use it ...help me !
<Edited By Host>

Hi essfre10,
Welcome to the Apple Support Communities!
It looks like the iPhone 5 is in a mode called Activation Lock. Please use the following article for reference and for information on how to resolve this situation. If your cousin doesn't know the password he may need to contact Apple support for help resetting it.
Find My iPhone Activation Lock: Removing a device from a previous owner’s account
http://support.apple.com/kb/ts4515
I hope this helps,  
-Joe

Similar Messages

  • ICLOUD activation lock !! help

    My Iphone 4S is blocked about 3 Months on the page of iCloud activation lock, I can't remember it, all I know is my apple ID but it isn't the same unfortunately ( IOS 7.0.4), I need a solution as soon as possible, thanks in advance for ur help !!
    <Personal Information Edited by Host>

    Why can't the seller unlock it? Sounds like it may be a stolen iPad. As others have said do not buy it, it will be of no use to you while Activation Lock is in effect, and there is nothing apart from entering their Apple ID password that can bypass it.

  • Need big help creating PDF/X-1a compliant document.

    Hi all,
    I have tried this on my own but cannot make it work as I am not so computer savy. I have created all the files to specifications as best I can but when I try and use the preset PDF/X-1a it says violation both artbox and trimbox for every page. Ive tried fixing this manually and by using Preflight but it doesnt work for me. Can someone please help me create a PDF/X-1a complient document? I am desperate as I am trying to do this for a friend who needs my help. Looking for a good savior/Samaratin for help. My email is [email removed by host] Any help at all would be greatly appreciated either in an answer here or an email.
    Thank you in advance

    I create the files in photoshop and saved as PDF with the preset PDF/X-1a_2001 but I cant or at least I dont know how to define the bounding boxes like Trim Box and etc. in photoshop. The problem I am facing is that the pages are supposed to be set as 11.5 x8.75 for printing at 11.0 and 8.5. So I made my files the 11.5 x 8.75 size but now I cant set them to be printed at the right size(if that makes any sense-sorry I am a noob). So I am not sure what to do. I thought saving it as a PDF in photoshop and then fixing it in Acrobat was what I was supposed to do? I tried manually to set the artbox to 0 and set the trimbox to where it needed to be 11.0x8.5 with different parts cut off for the odds and even pages. But still when I try to save as PDF/X-1a it gives me error messages. I have searched the web but cant figure it out. It seems so easy for people to do it but I cant figure it out and I am panicking and need help. Can anyone help me?

  • I start to do it but that what all what i can do"i need big help"

    i post last day abut need for code for my project but i just could to do thise code with the help that i got bcz i don't know how to do more& i don't have time with my other projects so i hope that there is eny one have ready look like this simple paint program he will save my life
    this is me mail [email protected]
    //first part
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class CustomPanelTest extends JFrame {
    private JPanel buttonPanel;
    private CustomPanel myPanel;
    private JButton circle, square, oval;
    public CustomPanelTest()
    super("Paint Program");
    myPanel = new CustomPanel();
    myPanel.setBackground(Color.white);
    square = new JButton("Square");
    square.addActionListener(
    new ActionListener() {
    public void actionPerformed(ActionEvent e)
    myPanel.draw(CustomPanel.SQUARE);
    oval = new JButton("Oval");
    oval.addActionListener(
    new ActionListener() {
    public void actionPerformed(ActionEvent e)
    circle = new JButton("Circle");
    circle.addActionListener(
    new ActionListener() {
    public void actionPerformed(ActionEvent e)
    myPanel.draw(CustomPanel.CIRCLE);
    buttonPanel = new JPanel();
    buttonPanel.setLayout( new GridLayout(1,2));
    buttonPanel.add(circle);
    buttonPanel.add(oval);
    buttonPanel.add(square);
    Container c = getContentPane();
    c.add( myPanel, BorderLayout.CENTER);
    c.add(buttonPanel, BorderLayout.NORTH);
    setSize(600,300);
    show();
    public static void main(String args[])
    CustomPanelTest app = new CustomPanelTest();
    app.addWindowListener(
    new WindowAdapter() {
    public void windowClosing(WindowEvent e)
    System.exit(0);
    //second part
    class CustomPanel extends JPanel {
    public final static int CIRCLE = 1, SQUARE = 2;
    private int shape;
    private int x[]=new int[7], y[]=new int[7];
    private int t=0;
    public void paintComponent(Graphics g)
    super.paintComponent(g);
    if(shape == CIRCLE)
    g.fillOval(x[0], y[0], (x[1]-x[0]), (y[1]-y[0]));
    else if (shape == SQUARE)
    g.fillRect(x[0], y[0], (x[1]-x[0]), (y[1]-y[0]));
    private class MouseClickedHandler extends MouseAdapter {
    public void mousePressed( MouseEvent e)
    x[0] = e.getX();
    y[0] = e.getY();
    public void mouseReleased( MouseEvent e)
    x[1] = e.getX();
    y[1] = e.getY();
    if ((x[1]-x[0]) < 0)
    t=x[1];
    x[1]=x[0];
    x[0]=t;
    if ((y[1]-y[0]) < 0)
    t=y[1];
    y[1]=y[0];
    y[0]=t;
    repaint();
    public void draw( int s)
    shape = s;
    repaint();
    hi all I need ready code for a simple paint program today for me ics projct
    plz give me a halp on this give me what you have with you and it is so good if it look like this :
    Design a GUI based drawing Java application that works like a simple paint program
    1-There should be a number of buttons for choosing different shapes to draw. For example, there should be a button for rectangle. If user presses the rectangle button, then he can draw a rectangle using mouse. Similarly, there should be a button for each shape(rectangle, circle, ellipse, and line etc.
    2-The shapes can be filled with different colors.
    3-There should be option of moving .
    4- There should also be three menus including File, Shape, and Color menu.
    i. File menu can have menu items New and Exit. If user selects New, the drawing area will be cleared and all shapes will be erased.
    ii. Shape menu will serve the same purpose as of feature 2 described above. It will have menu items for drawing all the different shapes. For example, there will be menu item for rectangle; so user can draw a rectangle by selecting the menu item for rectangle.
    iii. Color menu will serve the same purpose as of feature 3 described above. It will have menu items for all the colors which are shown in color buttons. The user can select a color from this menu and then click inside a shape to fill it with the selected color.

    add this constructor to CustomPanel
    public CustomPanel()
      addMouseListener(new MouseClickedHandler());
    }

  • NEED BIG HELP PLEASE!!!!!

    ok this is whats happend my ISP is with NTL and i went on holiday and forgot to pay the bill so when i got back i was cut off but i paid the bill and got put back on i was on the 1MB boardband and i tryed to play runescape but when i open it all it dose is stay at LOADING GAME ENGINE and after a little bit of time it will load the game and then i login but after i login i can play it for like 5 mins and then its stats to lag really bad and then i close the program and try to do it all again and it just stays at LOADING GAME ENGINE and thats it so i thorght it was my internet so i got the 4MB broardband and it still dose it have i done something to my java do i need something i dont no if any1 can help me then plz do!?!

    this isn't a broadband technical support forum, nor a RuneScape game support line.
    There's a RuneScape technical support forum you should be using instead
    http://kbase.runescape.com/viewcategory.ws?cat_id=126

  • Need big help from moderator or host!

    I need some urgent help from someone who have the authority to delete my two - and only - post from the forum.
    I made the posts back in 2005 (using another profile) and still after all these years whenever you search for my real name in google, the post shows up 2nd or 3rd in the results! I really find that extremly problematic!!
    Please contact me (if you have the authority to see my current email-address) - or make a comment to this post, If you know who I should contact - or how I should solve the problem.
    Tkanks.

    I will ask the Mods to delete your posts, if it is possible. They would need to know your old profile.

  • MY MSI 7900 GTX pci-512 , plz need ur help and openions

    pc specs :
    intel 3.00 G DUO core
    1 gig kingston 533 MHZ, used to be 2G ( explained below )
    built in audology creative sound card
    MB : gigabyte , 975X
    PSU :Thermaltake 420 watt   u can check it here  http://www.dealtime.com/xPF-Thermaltake-Thermaltake-W0062RU-TR2-Series-420W-Power-Supply-Retail-Free-2nd-Day
    HD: 2x sata 300 gig each
    DVD writer samsung
    OS" WINXP -SP2
    case : ATX A-open
    moniter : 23 inch wide screen (1920x1200)
    VGA: MSI 7900 GTX pci-512
    all my system fully updated ( MB bios , drivers ...security updates ...etc
    my story :
    being a big fan of the game world of the warcraft made me always thinking of getting the best VGA cards , this lead me to the idea of upgrading my VGA from ATI x850xt to get a new MSI 7900GTX 512 PCI-E
    things were great for the first 4 months , nothing was there , best ever VGA i may get and use , almost one months ago i had to install the game again due to many suddens errors ( mainly corrupted files in theg ame folder )
    since then i started to have things i would never had before , what im having now is
    1-  game screen start to have long lines , screen freez then system crash with BOSD saying i have  nvidia error dll file ,
    2- my game kept always having corrupted files and i always had to reinstall ,
    what i have tried are 
    updating , rolling back the VGA driver ( from MSI site and the NVIDIA site) , updating the BIOS of MB form gigabyte site
    formatting and getting a fresh copy of winXP
    reducing the clock speed to min (eventhough my card temp never passed 60 degree)
    i did also a mem test on my rams , i found that my corrupted files was cuased by one of them , so when it was removed corrupted files problem was fixed , however my card still crash and nothing changed
    i tired useing opengl , nosound , and reduced all VGA options to be off at the game setting , but still crash
    i already contacted tech supp at MSI and used the driver they advised me to use , but nothing change ,
    the VGA crash happen in a wiered way , sometimes it can stay for 6 hrs without a crash and sometimes every 3 mins
    and somtimes it crash at the login screen even before i start the game
    i just dont know why it was working for 4 months and crashed now
    now my question , is my VGA became a dead card like my ram and i should buy a new one , was that caused by the PSU , should i get a new VGA and keep the PSU or should i get the two of them new , and is there any way to fix my VGA to make it working as before ,
    btw , i have tried many 3D games and all give the same crash
    ur help will realy appreciated

    Quote from: sambatico on 22-January-07, 00:56:51
    just noticed somthing not written on my psu box and not at  the link of the PSU
    it says        +12v@10amp , +12v@15 amp
    still dont know what that mean , is it 25 amp in total ? ( there is nothing written like total at the box )
    get a better PSU, some good options can be found here:
    https://forum-en.msi.com/index.php?topic=103299.msg757739#msg757739
    its a good idea in same time to test VGA on other machine to check his status as well.

  • I need big help

    I just installed the Java2 standard edition and I am just stuck on what to do period. I have a book called Java2 and I am stuck right at the part with "Class" I don't know how to make the javac run to make a class. The only thing I've done so far is try to create a file called "Saluton.java". I have saved that file and I am stuck from there.
    Can somebody, anybody please help me.

    I'm going to assume you got the latest version of java...
    You'll need to add this line to your autoexec.bat file in c:\
    set path=c:\j2sdk1.4.1_02\bin
    or, if you already have a path set, add it on the end like so
    set path=......;c:\j2sdk1.4.1_02\bin
    Note the ; in between paths.
    Hope this does the trick,
    Radish21
    BTW, you'll need to restart for it to take effect.

  • Hard drive corruption? I need big help!

    Hey everyone,
    I'll make this short and to the point, well as much as possible.
    Basically, my files on my MacBook Pro won't allow themselves to be copied to ANY other item! I've tried on flash keys, external hard drives with USB and Firewire, even on my FTP server! I've also tried to run my MBP as a hard disk on another Mac using a Firewire cable to no avail!
    Basically, there was a problem with my system so I did an archive and install until I was able to back everything up properly and reformat/install. There are some files I really need, which I could open, yet I can't transfer/copy! I get "Error - 36"
    Anything to fix this or help me?!

    Can't read or write the file, often due to Permissions - run Disc Utility and Repair them
    Repairing permissions in Disk Utility will never fix permission issues such as this, assuming it is a permissions problem, and will only repair them for software and not data.
    Now, to the OP, if you Get Info on both what your are trying to copy and where you are copy to and look in the Ownership & Permissions section do you have read & write permissions for both?

  • Need big help with setting up mail account.

    Okay first, I would like to say you guys really need a sticky of basic instructions on how to set up a mail account for different carriers. I use Gmail mainly but I cannot get my mail to sync for the life of me with POP on and everything. I also heard Gmail is buggy and I would like to try an IMAP account which I heard was better. Can ANYONE give me some good step by step instructions on how to set one up. What is the best? What works well? I am willing to create a new email just for the iPhone. Thanks in advanced!

    There are too many email account providers from internet service providers to non-ISP email account only providers for Apple to provide "basic" instructions for each. The iPhone's email client is not much different from an email client on a computer and the require account setup information is provided by your ISP or email account provider.
    You can't just set up an IMAP account. You must have an email account provider that supports/provides an IMAP account and there aren't many that do. Most ISPs and email account providers support/provide POP accounts only.
    Yahoo provides a free IMAP account for iPhone customers but there are advertisements included with each sent message. An Apple .Mac account can be accessed as an IMAP account.

  • Audiobooks - Need big help new user

    I bought audiobooks on itunes and I see it in my playlist on my computer but it will not download onto my nano. What's up with that? Any help is appreciated.

    - You will have to contact the person who setup/administers the network/router.  Sometime the default passwords- is written on a sticker attached to the router.
    - Yu can also go to the router and look for the manufacturer and mdel number and then go to the manufactuer's website and downlot the manual for the router.  It will like the default password and how to reset the password.

  • NEED BIG HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! its a WRT54G V6

    I bought this roughter for my son so he can play on his PSP(Playstation Portable) online. We are getting it set up and everything in and all the lights are on and we click next on the setup cd on step 8 and we get a screen on enter the password.There is already a password in the box. So i click enter and the same screen pops up again this happens every time. I have tried admin,and reset the router and entered the ip address in the internet explorer bar and it dont work and clicked run on the windows start menu and found where you check the ip addess it still dont work. Called linksys they dont know what to do either.

    First, try this procedure to reset your router to factory defaults:
    1)  Power down all computers, the router, and the modem, and unplug them from the wall.
    2)  Disconnect all wires from the router.
    3)  Power up the router and allow it to fully boot (1-2 minutes).
    4)  Press and hold the reset button for 30 seconds, then release it, then let the router reset and reboot (2-3 minutes).
    5)  Power down the router.
    6)  Connect one computer by wire to port 1 on the router (NOT to the internet port).
    7)  Power up the router and allow it to fully boot (1-2 minutes).
    8)  Power up the computer (if the computer has a wireless card, make sure it is off).
    9)  Try to ping the router.  To do this, click the "Start" button, click on "Run".  In the box that is labeled "Open:", enter the following:  "ping 192.168.1.1"  (no quotes).  A black box will appear.  You will see 3 or 4 lines that start either with "Reply from ... " or "Request timed out."   If you see "Reply from ...", your computer has found your router.
    10)  Open your browser and point it to 192.168.1.1.  This will take you to your router's login page.  Leave the user name blank, then in the password field, enter "admin"  (with no quotes).  This will take you to your router setup page.  Note the version number of your firmware (usually listed near upper right corner of screen).  Exit your browser.
    If you get this far without problems, try the setup disk, and see if you can get your router set up and working.  When you get to the password prompt in setup, try to determine if the program is asking for the default password ("admin"), or if it wants a new password.  Also, be sure to leave the user name blank.
    If this does not fix your problem, then there are 3 other possible causes:
    1)  Your firmware has become corrupted.  If you can ping the router, you can probably load it with the latest firmware.  You may need to use the firmware loading program for your router.  Firmware loading programs are usually named TFTP.EXE.  You would need to download both the firmware and the firmware loading program.  Alternatively, you may just want to return the router.
    2)  Your power supply is bad.  Return the router.
    3)  Your router is dead.  Return the router.
    Message Edited by toomanydonuts on 12-30-200604:40 AM
    Message Edited by toomanydonuts on 12-30-200604:40 AM
    Message Edited by toomanydonuts on 12-30-200604:43 AM
    Message Edited by toomanydonuts on 12-30-200604:49 AM

  • Need BIG HELP!!! 6233

    hy everybody! can somebody help me to install old software V3.70 or 4.52 , were I can find it, and how to install i it?! I do not like V4.91. My phone is not working as I hope. I like better old one! PLEASE HELP ME!!! send your answer at "[email protected]"! Thank s!!!!!!!

    Sounds good if this is a contract. Never mind. :-)

  • Need Big Help on my HP Laserjet P1005 via airport express

    I've been using my HP Laserjet P1005 via airport express for about 3 months.
    However, this printer won't act wirelessly anymore.
    It does work fine with USB connected.
    I tried to reset everything, and it's still not working.
    I've read some posts on this forum and installed those three packages, but it seems not works for me.
    By the way, the P1005 driver version is 1.0.6.
    I really hope someone can help me out here. Thanks in advance.

    Yes. I have install the lastest version of HP driver 1.0.6, with Mac OS 10.5.
    Here: http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?os=219&softwareitem=bi- 54970-5&lc=fr&dlc=fr&cc=aa&lang=fr&product=3435676
    But if you update to Show Leopard 10.6, You should use a prior driver HP 1.0.4, if not, the printer would not work. Here:
    http://driverscollection.com/?file_cid=399489231573f9b4ad62f5159c3

  • Plz need ur help in  creating universe

    hai friends
            i am shashank reddy i am new to boxi
    bcz i am a s/w testing engineer , i am interest change to boxi 
    could u explain me creating universe process in live environment(realtime) and also sent me some sample specifications,bcz i am very much knowledge in bo6.5,xi
    but i dont no realtime knowledge? for i got job (how to do job in office )
    is there any specifications, who woll give u this specs to bos developer.
    my
    email id: [email protected]
               [email protected]    mail me the sample specifications   
    this is very very appreciated ur nice help  
    thanks in advance
    regards
    shashank reddy.m

    Hi Shashank,
    Please refer this link and download the ppt file from here as well.
    http://diamond.businessobjects.com/node/3885
    Also, refer the book "Business Objects Complete Reference" for more clarity about the universe.
    This will be helpful to you.
    thanks,
    Amzad Basha.

Maybe you are looking for