IOs 7 refusing to activate now , help please? Need for my Business

After the toughest install of iTunes and iOs iv'e ever been through I get to the activation screen thinking its going to be all gravy now , NO. I cannot activate it im stuck on this ridiculous hello screen. I've tried to activate on wi-fi on 3G and through iTunes but each time I cannot reach the activation server. The phone is locked to Telus and the sim card has never left the phone whatsoever , it has never been jailbroken of course and never had anything tampered with. Can someone please tell me whats going on here as far as I know Wi-Fi , Network (3G , 4G LTE ) and iTunes are my only options for activation , someone please tell me they are having the same issue or this is just a traffic issure I am a business owner and lose money every minute this phone is not in use.

Ok , so no need to worry I can assure you its just apples servers getting hammered I was going nuts but then I looked down and it finally activated Keep at it and nobody worry iOs7 installed fine its your phones not broken this just happens when hundreds of thousands of people make a request at once I really wrote this post out of impulse and wanted to see who else it was affecting. KEEP ON TRYING !!!

Similar Messages

  • Help Please Needed for Java Calculator - ActionListener HELP

    Hi. I am constructing a simple Java calculator and need help with the actionlistener and how it could work with my program. I am not too sure how to begin constructing the actionlistener. I would like to know the best and most simple solution to get this program work the way it should, like a real calculator. If anyone can help me, that would be much appreciated.
    package calculator;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class CalculatorGUI extends JFrame implements ActionListener{
    JTextField screen;
    JButton button7;
    JButton button8;
    JButton button9;
    JButton button4;
    JButton button5;
    JButton button6;
    JButton button1;
    JButton button2;
    JButton button3;
    JButton button0;
    JButton add;
    JButton minus;
    JButton multiply;
    JButton divide;
    JButton equals;
    JButton clear;
    private JTextField m_displayField;
    private boolean m_startNumber = true;
    private String m_previousOp = "=";
    private CalculatorLogic m_logic = new CalculatorLogic();
    public CalculatorGUI() {
    CalculatorGUILayout customLayout = new CalculatorGUILayout();
    getContentPane().setFont(new Font("Helvetica", Font.PLAIN, 12));
    getContentPane().setLayout(customLayout);
    screen = new JTextField("textfield_1");
    getContentPane().add(screen);
    button7 = new JButton("7");
    getContentPane().add(button7);
    button7.addActionListener(this);
    button8 = new JButton("8");
    getContentPane().add(button8);
    button8.addActionListener(this);
    button9 = new JButton("9");
    getContentPane().add(button9);
    button9.addActionListener(this);
    button4 = new JButton("4");
    getContentPane().add(button4);
    button4.addActionListener(this);
    button5 = new JButton("5");
    getContentPane().add(button5);
    button5.addActionListener(this);
    button6 = new JButton("6");
    getContentPane().add(button6);
    button6.addActionListener(this);
    button1 = new JButton("1");
    getContentPane().add(button1);
    button1.addActionListener(this);
    button2 = new JButton("2");
    getContentPane().add(button2);
    button2.addActionListener(this);
    button3 = new JButton("3");
    getContentPane().add(button3);
    button3.addActionListener(this);
    button0 = new JButton("0");
    getContentPane().add(button0);
    button0.addActionListener(this);
    add = new JButton("+");
    getContentPane().add(add);
    add.addActionListener(this);
    minus = new JButton("-");
    getContentPane().add(minus);
    minus.addActionListener(this);
    multiply = new JButton("*");
    getContentPane().add(multiply);
    multiply.addActionListener(this);
    divide = new JButton("/");
    getContentPane().add(divide);
    divide.addActionListener(this);
    equals = new JButton("=");
    getContentPane().add(equals);
    equals.addActionListener(this);
    clear = new JButton("Clear");
    getContentPane().add(clear);
    clear.addActionListener(this);
    setSize(getPreferredSize());
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    public void actionPerformed(ActionEvent event) {
    public static void main(String args[]) {
    CalculatorGUI window = new CalculatorGUI();
    window.setTitle("Calculator");
    window.pack();
    window.show();
    class CalculatorGUILayout implements LayoutManager {
    public CalculatorGUILayout() {
    public void addLayoutComponent(String name, Component comp) {
    public void removeLayoutComponent(Component comp) {
    public Dimension preferredLayoutSize(Container parent) {
    Dimension dim = new Dimension(0, 0);
    Insets insets = parent.getInsets();
    dim.width = 421 + insets.left + insets.right;
    dim.height = 494 + insets.top + insets.bottom;
    return dim;
    public Dimension minimumLayoutSize(Container parent) {
    Dimension dim = new Dimension(0, 0);
    return dim;
    public void layoutContainer(Container parent) {
    Insets insets = parent.getInsets();
    Component c;
    c = parent.getComponent(0);
    if (c.isVisible()) {c.setBounds(insets.left+8,insets.top+8,408,64);}
    c = parent.getComponent(1);
    if (c.isVisible()) {c.setBounds(insets.left+8,insets.top+80,96,56);}
    c = parent.getComponent(2);
    if (c.isVisible()) {c.setBounds(insets.left+120,insets.top+80,96,56);}
    c = parent.getComponent(3);
    if (c.isVisible()) {c.setBounds(insets.left+232,insets.top+80,96,56);}
    c = parent.getComponent(4);
    if (c.isVisible()) {c.setBounds(insets.left+8,insets.top+144,96,56);}
    c = parent.getComponent(5);
    if (c.isVisible()) {c.setBounds(insets.left+120,insets.top+144,96,56);}
    c = parent.getComponent(6);
    if (c.isVisible()) {c.setBounds(insets.left+232,insets.top+144,96,56);}
    c = parent.getComponent(7);
    if (c.isVisible()) {c.setBounds(insets.left+8,insets.top+208,96,56);}
    c = parent.getComponent(8);
    if (c.isVisible()) {c.setBounds(insets.left+120,insets.top+208,96,56);}
    c = parent.getComponent(9);
    if (c.isVisible()) {c.setBounds(insets.left+232,insets.top+208,96,56);}
    c = parent.getComponent(10);
    if (c.isVisible()) {c.setBounds(insets.left+120,insets.top+272,96,56);}
    c = parent.getComponent(11);
    if (c.isVisible()) {c.setBounds(insets.left+344,insets.top+80,72,56);}
    c = parent.getComponent(12);
    if (c.isVisible()) {c.setBounds(insets.left+344,insets.top+144,72,56);}
    c = parent.getComponent(13);
    if (c.isVisible()) {c.setBounds(insets.left+344,insets.top+208,72,56);}
    c = parent.getComponent(14);
    if (c.isVisible()) {c.setBounds(insets.left+344,insets.top+272,72,56);}
    c = parent.getComponent(15);
    if (c.isVisible()) {c.setBounds(insets.left+344,insets.top+336,72,56);}
    c = parent.getComponent(16);
    if (c.isVisible()) {c.setBounds(insets.left+8,insets.top+408,408,72);}
    }

    Yeah, I have a rough idea of what the calculator
    should do, like most people would. Its just that I
    dont know how to implement this in Java. Thats the
    problem. Can anyone provide me with code snippets
    that I can try?No I would rather see you make an effort from what has been discussed here. This is not a Java problem this is a general programming problem.

  • HT4097 i cant restore and update my ipad 2 to ios 6 it says error (3194) help please

    i cant restore and update my ipad 2 to ios 6 it says error (3194) help please

    Check your HOSTS file and make sure you are not blocking gs.apple.com.
    Try to launch https://gs.apple.com: It should open the Apple site, and not be redirected to the Cydia server.
    if this redirected to cydia server then
    copy hosts file from this path
    C:\Windows\System32\drivers\etc\hosts
    paste on desktop. open this in notepad.
    add this line in the last .
    #74.208.10.249 gs.apple.com
    in some case this line is there without " #" sign. if this line is there then u simply put" # " at the start of this line
    save this and copy this file and past into this path.
    C:\Windows\System32\drivers\etc\
    replace with existing . yes.
    close and then start the restore process.
    now this will work. Insha Allah.

  • TS1424 i restored my ipad 3 using itune but it is unable to activate any help please

    i succesfully restored my ipad 3 using itune but it is unable to activate any help please

    Welcome to the Apple Community.
    Are you following these instructions.
    Remove ALL cables from Apple TV. (if you don't you will not see Apple TV in the iTunes Source list)
    Connect the micro USB cable to the Apple TV and to your computer.
    Reconnect the power cable (only for Apple TV 3)
    Open iTunes.
    Select your Apple TV in the Source list, and then click Restore.

  • I updated to iOS 7.0.3 and now my iPad needs to connect to iTunes

    I updated to iOS 7 with no issues. Last night I went to update to iOS 7.0.3 and now my iPad wants me to connect it to iTunes. I tried holding down both buttons to restart and get the same message.

    The same thing happened to me but with my iPad 3rd Generation so I just came across this and I'm restoring my iPad now but I'm not sure if you will have to on iPhone but here is the link https://discussions.apple.com/message/23027173#23027173#23027173. Hope this helps

  • I am new to Mac. I have iphone and ipad but I bought a used Mac G4 and all is well except I cannot figure out how to download a program from a CD that I need for my business. I think it's a simple fix so HELP!

    I am new to Mac. I own an iphone and an ipad but have always used a PC for my business use.  I bought a used Powerbook G4 and all is well EXCEPT I cannot get a program to download from a CD. I think it's an easy fix so HELP!

    A few questions ....
    What is the program you are trying to download? It is a mac version?
    Is this a vendor's CD or a copy or ?
    What error message or other indication do you get that says the download won't happen?

  • Iphone 3GS keeps restarting after ios 4.3.2 update! Help please.`

    So I recently updated my uncles iPhone 3GS from a very old version 3 something to the latest. It randomly restarts within about 5 minutes of using the phone. You could be in a call and it would just shut down. Any help on resolving this issue please?

    Sorry unit was upgraded to iOS 4.3.3. Unit is now out of warranty by 23 days. I would like to think out of courtesy that Apple would replace my iPhone for the inconvenience caused by the upgrade as the phone was working perfect prior to the upgrade.
    Please help Apple!!!

  • Error message -3259.  Cannot download iOS 5 on Windows 7. Help please!

    My diagnosis is:
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    LENOVO 4311
    iTunes 10.5.0.142
    QuickTime not available
    FairPlay 1.13.35
    Apple Application Support 2.1.5
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 4.0.0.96
    Apple Mobile Device Driver 1.57.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.3.494
    Gracenote MusicID 1.9.3.106
    Gracenote Submit 1.9.3.136
    Gracenote DSP 1.9.3.44
    iTunes Serial Number 0028A8FC0358D3D8
    Current user is an administrator.
    The current local date and time is 2011-10-16 20:00:14.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    ATI Technologies Inc., ATI Mobility Radeon HD 4200 Series
    **** External Plug-ins Information ****
    No external plug-ins installed.
    iPodService 10.5.0.142 (x64) is currently running.
    iTunesHelper 10.5.0.142 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:          {C0DAAE68-2A61-4907-8D7B-018FA8F8F3B3}
    Description:          Microsoft Virtual WiFi Miniport Adapter
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          Yes
    DHCP Server:
    Lease Obtained:          Wed Dec 31 16:00:00 1969
    Lease Expires:          Wed Dec 31 16:00:00 1969
    DNS Servers:
    Adapter Name:          {E7333F2F-4464-460D-9C1E-F2FF515F08DF}
    Description:          Atheros AR9285 Wireless Network Adapter
    IP Address:          192.168.1.103
    Subnet Mask:          255.255.255.0
    Default Gateway:          192.168.1.1
    DHCP Enabled:          Yes
    DHCP Server:          192.168.1.1
    Lease Obtained:          Sun Oct 16 19:24:46 2011
    Lease Expires:          Mon Oct 17 19:24:46 2011
    DNS Servers:          192.168.0.1
    Adapter Name:          {2BF13FA3-44E0-4FC9-95A3-CEF080497E67}
    Description:          Atheros AR8152 PCI-E Fast Ethernet Controller
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          Yes
    DHCP Server:
    Lease Obtained:          Wed Dec 31 16:00:00 1969
    Lease Expires:          Wed Dec 31 16:00:00 1969
    DNS Servers:
    Active Connection:          LAN Connection
    Connected:          Yes
    Online:                    Yes
    Using Modem:          No
    Using LAN:          Yes
    Using Proxy:          No
    SSL 3.0 Support:          Enabled
    TLS 1.0 Support:          Enabled
    Firewall Information
    Windows Firewall is on.
    iTunes is enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was unsuccessful.
    The network connection timed out.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2011-10-16 19:59:49.

    followed someones instructions and it has worked ios 5 is now working on my iphone 4

  • I bought a 2nd hand iPhone from Craig's list and it says I must put in the pervious owners Apple ID to activate it Help please

    I can't even activate it use it nothing help please

    You will need to get the previous owner to remove it from their account.  Until then it is useless.
    Sorry

  • Can't download iOS 6.0.1 on iPad - help please!

    I can't download the new iOS 6.0.1 on my iPad (the latest one). I've tried doing it through iTunes and on its own- it keeps telling me that there is an error. Could it be bc I tried downloading it earlier and I had to interrupt  it? I reset settings, tried to download it again and nothing.

    How to install iOS 6
    http://www.macworld.com/article/2010061/hands-on-with-ios-6-installation.html
    iOS: How to update your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/HT4623
     Cheers, Tom

  • Desktop Sync stopped working now - help please!!

    Hi,
    This looks a great Forum and I am looking forward to learning & contributing.
    I have a problem now Syncing my Curve with Outlook which has worked fine for the first month.
    Suddenly, Sync in Desktop Manager fails to work with both of our two 8900’s and I get the ‘BlackBerry Desktop Manager has encountered a problem and needs to close’ message.
    Seems to have happened since deleting a Contact in Outlook but might just be a coincidence.  
    I have reloaded DM 4.7 both from the CD and the BlackBerry website but the same thing happens. 
    I have tried deleting the Research in Motion folder as suggested in a Google search on the subject but to no avail. 
    I cannot seem to be able to find the menu where I can recreate my sync settings i.e. Outlook Calendar, Contacts & Tasks. Has anyone else suffered from this and knows the answer?
    I have searched through various postings but have not found my exact problem.
    Thankyou.

    Looks like it may be a problem on the computer side of things.
    Installed DM 4.7 on my other PC along with the Outlook Data Base files and the 8900 syncs no problem.
    Could it be a corruption elsewhere?

  • Camera and led light not working after IOS 7 update on iphone 5 help please!!

    After I installed the update my led light won't work for the flashlight and my camera doesn't work either. Only the front facing camera works. Any suggestions?

    thanks for the suggestions, i tried the ideas you suggested but i dont even get a camera showing for the rear camera, i also noticed the torchlight no longer works.  i did all the steps but no luck.
    So I took my camera to the genius bar this weekend as well as walking through various steps with the apple guys in ohio support over the net. 
    With the guys at the genius bar, after i insisted that it must be software as the rear camera stopped working only after the softwre update, they continued to assure me it was hardware and talked me into letting them replace the camera,  they then took it to the back and tried fixing a camera and 30 minutes later came out and said the rear camera is no longer being detected and wanted me to replace the motherboard for yet more money.  im glad they didnt charge me for the new camera though as it still didnt work.
    anyway the motherboard idea i rejected as it was just 2 months out of warranty and had only stopped working the day after the release of 7.0.2, so im going to wait until the next few releases to see what happens, as i dont believe for a second its hardware.  i expected a stock answer from apple and its exactly what i got even after my explanation of how it was working the day before the release.  not overly impressed with the whole process.
    i wanted to back down to 7.0.1 to confirm the camera still works but they said no chance so i cant even see if it still works ouside 7.0.2.  anyway will update if i get any further progress.

  • How to fix it , i have the code now, help. please

    import java.awt.*;
    import javax.swing.*;
    public class JPanels extends JPanel {
    String s;
      public JPanels()
        setBackground(Color.lightGray);
        JTextField jt = new JTextField(10);
        jt.setText(s);
        add(jt, BorderLayout.EAST);
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.event.*;
    public class TextChange extends JFrame implements ActionListener
         JButton ok1,ok2;
         JPanel topPanel;
         JPanels newjp;
      public TextChange(JPanels jp)
          setTitle("test here");
          setSize(200,200);
         getContentPane().setLayout(new BorderLayout());
         setBackground( Color.gray );
         JPanel topPanel = new JPanel();
         topPanel.setLayout( new BorderLayout() );
         getContentPane().add( topPanel );
        setBackground(Color.lightGray);
        ok1 = new JButton("1");
        ok2 = new JButton("2");
        newjp = jp;
        ok1.addActionListener(this);
        ok2.addActionListener(this);
        topPanel.add(ok1, BorderLayout.WEST);
        topPanel.add(ok2, BorderLayout.EAST);
        topPanel.add(jp,BorderLayout.SOUTH);
      public  void actionPerformed(ActionEvent e)
         if(e.getSource()==ok1)
              System.out.println("hello");
              newjp.s="hello";
         if(e.getSource()==ok2)
              System.out.println("world");
              newjp.s="world";
      public static void main(String[] args)
         JPanels jp = new JPanels();
         TextChange tc = new TextChange(jp);
         tc.pack();
         tc.setVisible(true);
    }when you click ok1 button , will set Text in textfileld "hello", if press ok2
    then textfiled is "world", but this is not working ,any ideas????
    Thanks

    You should also be using.equals not == in your
    actionPerformed method to check thee.getSource().
    Not necessary. '==' is fine there.Yea I wasn't looking closely enough. A little too
    quick on the trigger. Sorry about that.No trouble. ".equals" should work, too. JButton inherits 'equals' from Object, so it will do exactly the same thing.

  • HT201263 my iphone 4 will not turn on after ios7 update tried all the tricks no phone now help please

    my iphone4 will not trn on after downloading ios7 i have tried to restart done all apple web site says looked on internet tried all the tricks they say and still no phone 

    If everything has been tried, the next step would be taking the device to Apple for evaluation and possible replacement.

  • Forgot my mac system account password, so i can't install anything now, help please =(

    so how can i reset the pass?

    Put your install DVD into the optical drive and reboot. As soon as you hear the boot chime, hold down the "c" key on your keyboard (or the Option key until the Install Disk shows up). That will force your MacBook to boot from the install DVD in the optical drive.
    When it does start up,you'll see a panel asking you to choose your language. Just press the Return key on your keyboard once. It will then present you with an Installation window. Completely ignore this window and click on Utilities in the top menu and scroll down to Reset Password.

Maybe you are looking for

  • What do I do when iTunes can't find my iPod Touch 5g?

    I connect my iPod Touch 5g to my computer to sync information, but when I click sync, iTunes says that my iPod can't be found. What did I do? and What am I supposed to do?

  • Making a pdf read only once

    Is there a way to secure a pdf file so that it can only be read once. When re-using the security key, the file will not open a second time. If that is possible how do you do so with Acrobat pro XI Thanks.

  • Bootcamp sleep problem

    Hi, I have installed Windows 7 to my bootcamp partition and everything was working fine until now... now when I close the lid the computer keeps running and the white LED turns on (not blinking)... when I open the lid the LED turns off but the screen

  • Taxes not  capturing in miro

    Dear All,               We have created one import PO. There are materials which are excisable .We have maintained the condition types H edu cess on CVD ,Addnl duty,IN basic customs ,IN CVD ,Edu cess on CVD ,Sec Edu cess on BCD,Ed cess on BCD in cond

  • 5.6 raw converter turns pure white into purple

    i bought a canon 7D in early october and i still can't use PS cs4 to convert my raw files -- even the newest version (5.6) turns the highlights *purple* has anyone else noticed this? is there a workaround? will adobe fix it soon? i hope so -- that's