HT201401 Iphone4S wifi disable/Grey

Hi
I have iphone 4S with 7.0.4 iOS,
i am unable to use my WIFI because , its goes grey, i am unble to turn on my wifi from settings
can anyone help me
thanks
tauqeer

Honestly, apple should be ashamed, i bought about 7 iphones, 6 ipads and 6 mac books over a short period of time, i am using the iphone 4s and as many people mentioned the wifi is greyed out, i went to the apple store and they said its a hard ware issue and i need to pay 200 usd (in china shenzhen)
I mean my phone is 1,5 years old and it seems like millions of users have these issues
Apple you guys should be ashamed!!! I will switch away to samsung
In the long run you guys will loose apple, jobs would have never allowed this

Similar Messages

  • 4s ios 6.1.2 wifi disabled,grey

    4s ios 6.1.2  wifi disabled.grey.gone.what can i do?

    I've the same problem.
    I've changed 3 Iphone for this problem.
    The only solution is change the telephone and pray... This problem is caused  by the IOS update.
    My problems started in the same time with the update on IOS 6 and they are still present. I've contacted the apple support and they told me switch telephone.
    Do you have any different news?
    Manuela from Italy

  • Why Apple is silent about 4s wifi getting greyed out and not responding to this issue? many ppl suffer from this and this is absurd!

    Why Apple is silent about iPhone 4s wifi getting greyed out with iOS updates 8.0.2 and 8.1 and did not respond to this issue officially? Many people are suffering from this affected service. How can you trust us to buy new iPhones when you stop supporting us with the ones we have since they are still upgradable to the latest iOS.
    Is there any chance that we will be given the support and would this issue be fixed with any upcoming updates? My iPhone when its battery is drained totally and I start it again the WIFI works until I try to choose another network or somehow I disable it then blackout!
    This is definitely a software issue that we never had problems before this update.
    Show us that you care for your products at least and provide us with a solution please.

    nartal wrote:
    That doesn't help at all.. I can only have it enabled if the battery gets drained out totally then when I restart it the WIF is on. then back greyed out.. that is not a serious reply, really!
    Yes, it's a serious reply. Did you actually read the information at the link I posted? Especially the last sentence? The fact that it appeared when you updated to iOS 8 has no bearing on the validity of the article. It is not specific to any version.

  • Ios 6 wifi now greyed out, unable to turn on

    Upgraded both myself and partners 4s handsets and ipads. ipads and one handset fine, my wifi has greyed out, Tried all the usual help guides any other suggestions? rebooted, reinstalled, reset network etc am baffled and pretty hacked off tbh!!!!
    Nearest apple store is brighton (20 miles away) so am guessing i have to make and appointment and get it replaced? (its 6 months old)
    Chris

    LISTEN EVERYONE WHO HAS PROBLEMS WITH WIFI WHEN UPDATING iOS6
    If your wifi is greyed out:
    you need to go to the apple store. You're wifi chip has expired! Wifi chip experation dates were checked upon the new software, that is why some  iPhones still work and others don't. They will replace it for you free of charge (don't quote me on this). It was free for me.
    I myself have an iPhone4S and they told me exactly this.

  • I have a iphone 4s. Recently the wifi greyed out when i was on ios 7.0.4 and itunes said to update the phone to ios 8.0.2 to solve the problem. Today i did it and still wifi is greyed out. In the "About" under Settings, it shows N/A infront of wifi

    i have an iphone 4s. Recently the wifi settings greyed out when i was using ios 7.0.4. When i connected it to itunes, it showed that update your iphone. At an apple forum they said that updating will solve this problem. I just updated it to 8.0.2 but still wifi is greyed out. In settings>general>about, there is an option of wifi address which shows N/A. What is the problem? Is is the hardware? Kindly guide me.

    There are many threads on this forum about this issue. Do a forum search for "wi-fi greyed out" and see if any of the solutions therein will work for you. Best of luck.

  • TS1559 I have done all of the steps that Apple have said to do, including completely restarting my phone and registering it as a new one, but still my wifi is greyed out, can anyone help me?

    I have done all of the steps that Apple have said to do, including completely restarting my phone and registering it as a new one, but still my wifi is greyed out, can anyone help me?

    http://support.apple.com/kb/ht5621

  • My wifi is greyed out my bluetooth n hotspot is not working and its showing problem in resetting all setting plez help.. :(

    my wifi is greyed out ..my bluetooth n hotspot is not working and its showing problem in resetting all setting plez help..

    Hello Prakharfromindia,
    Thank you for using Apple Support Communities.
    For more information, take a look at:
    iOS: Wi-Fi settings grayed out or dim
    http://support.apple.com/kb/ts1559
    iOS: Troubleshooting Bluetooth connections
    http://support.apple.com/kb/TS4562
    Use iTunes to restore your iOS device to factory settings
    http://support.apple.com/kb/ht1414
    Have a nice day,
    Mario

  • How to disable (grey-out) the ticks of a JSlider?

    Hi everyone,
    In my GUI, I have a JSlider that I want to be disabled (greyed out)
    because it should be only actived on my application next version.
    (It is important though to have it to preserve GUI appearence).
    Problem is that I was unable to greyout the ticks even though
    already managed to grey out the slider and the number labels.
    Right now, it is pretty uggly to have a partial disabled slider,
    because due to ticks not being disabled.
    Questions:
    1) Does anyone have an idea of how to do it?
    A small part of my code is shown below:
    JSlider dynSl = new JSlider();
    dynSl.setMajorTickSpacing(1);
    dynSl.setValue(0); //Default
    dynSl.setMaximum(7);
    dynSl.setMinimum(0);
    dynSl.setPaintLabels(true);
    dynSl.setPaintTicks(true);
    dynSl.setFont(new java.awt.Font("Dialog", 0, 9));
    dynSl.setSnapToTicks(true);
    dynSl.setEnabled(false);
    // small code just to put the numbers of the slider smaller
    Enumeration enum = dynSl.getLabelTable().elements();
    while (enum.hasMoreElements()) {
    JLabel elem = (JLabel)enum.nextElement();
    elem.setFont(new Font("Dialog",0,8));
    elem.setEnabled(false);
    2) If not possible, how do I change the colour of a JSlider (including
    the Ticks)?
    My idea is to change Slider's colour to the same grey colour one used
    to disable it, making at the end the slider look as if it was disabled.
    Thanks in advance,
    Jorge

    Hi again,
    Thanks for the help.
    I was trying to avoid not having the ticks at all but it seems to be
    the best choise because I could not solve the problem of greying out
    them.
    I did some more troubleshooting though and for my surprise, if I use
    the same code alone, i.e, a simple frame with just the slider it works
    fine. I even thought that it was related with having Windows LnF as
    opposed to Metal (Java) LnF, but that was not the problem.
    The only thing it comes to mind, is that there may be some problem by including the slider on a GridBagLayout !?!?!?
    Anyway,
    What has no simple solution, solved is! :-)
    Jorge

  • About a month ago my wifi switch greyed out. I went through all the trouble shooting and ended up going to the Genius Bar and got a new iPhone 4S. Now the switch greyed out on the new one.. help!

    About a month ago my wifi switch greyed out. I went through all the trouble shooting and ended up going to the Genius Bar and got a new iPhone 4S. Now the switch greyed out on the new one.. help!
    I've had my new one for less than 3 weeks. What gives? I'm loosing faith in apple

    no body?

  • TS1398 My iPhone Wifi is greyed out.In Uruguay in Cellular Center that is where I buyed it told me it has no solution,it´s a problem of hw accepted by Apple,and they didn´t change it by another one cause their warrantee is 3 months and I bought in decembe

    My iPhone Wifi is greyed out.
    In Uruguay in Cellular Center (+598 2 903 3333) that is where I buyed it told me it has no solution, it´s a problem of hardware accepted by Apple, that Apple change the phone in this cases, but that they can´t change it by another new one because their warrantee is 3 months and I bought in december, 2012. It cost me US$ 1,250 and I want a solution because I saw in the Apple web that iPhone warrantee is 1 year and I am still covered by it.
    I have the invoice dated December 24, 2012.
    Do you have any solution to my problem?
    It is hard to believe that a so expensive iPhone has a life of 6 months.
    Do I need to take my iPhone to anywhere they can solve its problem?
    Thank you so much.

    Your Service and Support Coverage
    iPhone 4S
    Serial Number: C8PJHGELDT9V
    Check another serial number 
    Valid Purchase Date
    A validated purchase date lets Apple quickly find your product and provide the help you need.
    Telephone Technical Support: Expired
    You are eligible to purchase telephone technical support from an Apple Advisor.
    Contact Apple Support
    Repairs and Service Coverage: Active
    Your product is covered for eligible hardware repairs and service under Apple's Limited Warranty.
    Estimated Expiration Date: 10 December 2013
    Learn about Apple's coverage information for your product.
    Set Up a Repair
    Eligible for the AppleCare Protection Plan
    Get the AppleCare Protection Plan to extend your hardware repair coverage and add technical support for 2 years from your iPhone purchase date

  • BADI/user exit for me22n - disable/grey out field quantity (MEPO1211-MENGE)

    Dear all SAP gurus,
    When changing PO (ME22N), I need to disable (grey out) the quantity field on item (MEPO1211-MENGE), when all scheduled quantity is already received (EKET-MENGE = EKET-WEMNG).
    Have tried using LMEIGICJI and Handle_event method in CL_SCREEN_VIEW_MM. But still doesn't go to the screen that wants to be disabled.
    Tried using BADI ME_PROCESS_PO_CUST, but couldn't find how to disable the quantity field.
    (IF_EX_ME_PROCESS_PO_CUST~FIELDSELECTION_ITEM only works for custom field).
    Please kindly advise
    thanks in advance

    Hi Ahmad,
    No need of ABAP, follow this IMG Path.
    Material Management -> Purchasing - Purchase Order ->  Define Screen Layout at Document Level
    After Executing it . Choose ME22 from list and then choose display icon.
    than double click Quantity and Price here uncheck opt. Entry and check display.
    save your work.
    Hope this works.
    Regards
    Ahsan

  • Upgraded to iOS7 - WIFI still greyed out.. Any fixes?

    I previously had the problem on the previous iOS 6.1.4 or whatever the most up to date was.
    I've now upgraded to iOS7, reset network settings, reinstalled the operating system, full phone resets etc.
    Unfortunately I STILL have the problem that my WIFI is greyed out!
    I'm running an iPhone 4S by the way.
    Can't believe for one minute, that after all the problems on the previous iOS that a fix hasn't been put in place - so if anyone knows of one, i'd really appreciate it.
    That android devil is becoming more angelic!
    I've also had my phone just over a year, so I assume that the warranty is now expired?? I know - i've had the problems for some time and I really should have got my arse into gear and took it in for repair before now!
    Regards,
    Andrew.

    I guess I don't have to wait
    I got it fixed
    someone delete this post please

  • My wifi is greyed out on my iPhone 4S

    My wifi is greyed out on my iPhone 4S and tried almost everything like putting it in the freezer and the hair drying method and draining the battery and restore my phone and I even contacted the Apple Store and they said I had to pay $19.99 to get it fixed but they dont guarantee that it will work. So I dont want to pay for something that they arent even sure about. I have been looking for a solution to this for weeks now and I dont want to keep using my cellular data and get charged for going over my limit! HELPPPPP!

    It seems you contacted AppleCare who would have charged you a fee of $19.99 for troubleshooting the issue as you must have been out of your 90 days complimentary phone support. The $69.99 would have been for AppleCare Protection plan which would extend your hardware coverage for another year making it 2 from the date of purchase.
    To have your phone evluated at an Apple Retail Store is completely. Also if you are still within your 1 year limited warranty and you need a replacement that would be free of charge. The only time you need to pay for a replacement would be if there was physical or liquid damage to the phone or depending on your country/region if you are out of your 1 year limited warranty.

  • WiFi Was Greyed out

    My iPhone's WiFi was working great on iOS 6.0.1 till 13th Feb'13 no problems whatsoever, until yesterday it failed over night without me knowing. The WiFi option was still available but unable to connect to my home network and when I rebooted the phone, the WiFI was greyed out. It has not been working since.
    Somehow i manageed to install 6.1.1 and i thought it may fix the problem but same problem...the WiFI is still greyed out. I do not understand why it has failed. I bought this 4S in July and have never dropped it .The WiFi was working great till yesterday and suddently this happened. I won't understand what kind of application/phone Apps have released. Its seem they are just want to stay in the market instead giving a good service to their customer.
    I have reseted the network settings, restored the phone and even tried using the phone as new and this has still not fixed the problem.
    Never expect such kind of phone from a company like Apple.

    It takes two to Tango. But it was technically a Software Error in the boot sequence, but the Hardware is actively reading the boot information and has to respond accordingly. Sounds like it was a one time glitch. Keep an eye on it. You iPhone still has full Warranty.

  • Macbook pro wifi symbol greyed out and will not recognize networks

    My Macbook Pro has had an issue since this past fall of having its wifi symbol greyed out with an "X". It also does not recognize wifi networks as in simply no networks show up. Talked to Apple last week and they said to upgrade to Yosemite, but I am still having this issue. Help?

    Have you used DVDs that have different region codes?  It may be that your DVD drive is locked for a region code different from what Netflix is programmed for.
    Ciao.

Maybe you are looking for

  • Multiple iPhones on the iTunes account

    Can we sync multiple iPhones to same iTunes account on one computer? Thanks

  • Unable to install DB Console

    Hi all, i have a 4 node rac 10.2.4 on windows 2003r2 Clusterware installation 10.2.0.1 was fine, database engine 10.2.0.1 installation was fine and patching to 10.2.0.4 too. I created ASM and then i created the database with DBCA including OEM Config

  • Is there a way to obtain the text item's value when the mouse pointer at?

    Hi, Is there a way to obtain the text item's value when the mouse pointer at? Mouse pointer may be located somewhere out of current record and even out of current block.

  • How to create wiki pages in portal

    Is there any way available to create wiki pages in portal? All the users logged in portal can be able to create the pages. The users can have the option to search for the wiki's.             How can we achieve this? Help us to drive this.

  • Error when implementing JPA domain model in separate JAR module

    Hi, I'm using JPA/TopLink Essentials to implement my domain model and services. From an architectural viewpoint I want to implement this as seperate Java project, while my View/Controller is implemented in another Java project. This last project has