My wifi has gone grey???? PLease help me in this regard

After updating my iphone 4S with iOS 6.1, my wifi has gone grey , please help me in this regard??

IOS: Wi-Fi or Bluetooth settings greyed out or dim.
http://support.apple.com/kb/TS1559

Similar Messages

  • My ipod 7th generation is not recognised by itunes and my computer. I am not able to transfer any songs. Please help me on this regard. I tried all the steps from apple website

    my ipod 7th generation is not recognised by itunes and my computer. I am not able to transfer any songs. Please help me on this regard. I tried all the steps from apple website

    This article should give you the options
    https://discussions.apple.com/docs/DOC-3991

  • Getting Error "Apple ID does not have permission to access iTunes Connect" while logging to iTunes. Please help me in this regard

    Getting Error "Apple ID does not have permission to access iTunes Connect" while logging to iTunes. Please help me in this regard
    Regards,
    Amar

    See the "More Like This" section over there ===============>
    In the future, search before posting.

  • How to restore/view the deleted records - Please help me on this regard

    Hi All,
    Please help me in restore/view the deleted data.
    I had removed 2 records from a table without back up and commited the same. Now I want to restore/view it, can you please guide me on this regard.
    Oracle Version: 10g
    OS: Windows XP
    Database in Archive Mode.
    With Regards,
    Jamearon

    Aman.... wrote:
    <snip>
    If all what you want is to view the data, you can use the Flashback's as of query which would enable you to go back either by SCN or by Timestamp. If you want to restore those rows back in the time( and losing the changes that has happened in that time ), you can use the Flashback Table option. An example of this is given below,
    http://www.oracle-base.com/articles/10g/Flashback10g.php
    HTH
    Aman....As promised, here's one way to use flashback to restore the one deleted row without having to impact the rest of the table with a general FLASHBACK TABLE.
    =~=~=~=~=~=~=~=~=~=~=~= PuTTY log 2011.01.23 15:17:56 =~=~=~=~=~=~=~=~=~=~=~=
    login as: oracle
    oracle@vmlnx01's password:
    Last login: Sun Jan 23 15:13:10 2011 from 192.168.160.1
    [oracle@vmlnx01 ~]$ sqlplus /nolog
    SQL*Plus: Release 10.2.0.4.0 - Production on Sun Jan 23 15:18:11 2011
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    SQL> @doit
    SQL> col col_ts for a15
    SQL> conn scott/tiger
    Connected.
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
    PL/SQL Release 10.2.0.4.0 - Production
    CORE10.2.0.4.0Production
    TNS for Linux: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    5 rows selected.
    SQL> --
    SQL> alter session set nls_timestamp_format='hh24:mi:ss.FF';
    Session altered.first we will create a test table and populate it. Pay close attention to the row identified by col_id=2
    SQL> drop table flashtest;
    Table dropped.
    SQL> create table flashtest
      2   (col_id number(1),
      3    col_ts timestamp,
      4    col_txt varchar2(10)
      5   );
    Table created.
    SQL> --
    SQL> insert into flashtest
      2    values (1, systimestamp, 'r1 v1');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> exec dbms_lock.sleep(5);
    PL/SQL procedure successfully completed.
    SQL> --
    SQL> insert into flashtest
      2    values (2, systimestamp, 'r2 v1');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> exec dbms_lock.sleep(5);
    PL/SQL procedure successfully completed.
    SQL> --
    SQL> insert into flashtest
      2    values (3, systimestamp, 'r3 v1');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> exec dbms_lock.sleep(5);
    PL/SQL procedure successfully completed.
    SQL> --
    SQL> select * from flashtest;
        COL_ID COL_TS          COL_TXT
             1 15:18:14.896167 r1 v1
             2 15:18:21.841682 r2 v1
             3 15:18:28.772038 r3 v1
    3 rows selected.
    SQL> --
    SQL> update flashtest
      2   set col_ts = systimestamp,
      3       col_txt = 'r2 v2'
      4   where col_id = 2;
    1 row updated.
    SQL> commit;
    Commit complete.
    SQL> select * from flashtest;
        COL_ID COL_TS          COL_TXT
             1 15:18:14.896167 r1 v1
             2 15:18:35.929847 r2 v2
             3 15:18:28.772038 r3 v1
    3 rows selected.
    SQL> exec dbms_lock.sleep(5);
    PL/SQL procedure successfully completed.So at this point we can see that we have 3 rows, and row 2 has been modified from its original values.
    Now we will delete that row.
    SQL> --
    SQL> delete from flashtest
      2  where col_id=2;
    1 row deleted.
    SQL> commit;
    Commit complete.
    SQL> --
    SQL> select * from flashtest
      2  order by col_id;
        COL_ID COL_TS          COL_TXT
             1 15:18:14.896167 r1 v1
             3 15:18:28.772038 r3 v1
    2 rows selected.Now let's do a SELECT...VERSIONS and see what flashback knows about the row.
    SQL> --
    SQL> select col_id,
      2         col_ts,
      3         col_txt,
      4         nvl(versions_startscn,0) START_SCN,
      5         versions_endscn END_SCN,
      6         versions_xid xid,
      7         versions_operation operation
      8  from flashtest
      9  versions between scn minvalue and maxvalue
    10  where col_id=2
    11  order by col_id, start_scn;
        COL_ID COL_TS          COL_TXT     START_SCN    END_SCN XID              O
             2 15:18:21.841682 r2 v1               0    2802287
             2 15:18:35.929847 r2 v2         2802287    2802292 0200260082060000 U
             2 15:18:35.929847 r2 v2         2802292            0A002300A4060000 D
    3 rows selected.
    SQL> --And having seen the above, we can use a more selective form to provide the values for an INSERT statement to put the row back.
    SQL> insert into flashtest
      2     select col_id,
      3            col_ts,
      4            col_txt
      5     from flashtest
      6     versions between scn minvalue and maxvalue
      7     where col_id=2
      8       and versions_operation = 'D'
      9  ;
    1 row created.
    SQL> --
    SQL> select * from flashtest
      2  order by col_id;
        COL_ID COL_TS          COL_TXT
             1 15:18:14.896167 r1 v1
             2 15:18:35.929847 r2 v2
             3 15:18:28.772038 r3 v1
    3 rows selected.
    SQL>One could also query FLASHBACK_TRANSACTION_QUERY to get the actual DML needed to UNDO an operation on a single table.

  • I have unlocked my iphone and when tried to upgrade it, i got an error, so i restored it.But i was not able to activate my iphone 3gs now...it is showing a message like ' sim card not found'..please help me with this regard

    I have unlocked my iphone and when tried to upgrade it, i got an error, so i restored it.But i was not able to activate my iphone 3gs now...it is showing a message like ' sim card not found'..please help me with this regard

    Try popping out the SIM card and turn off the phone.
    Pop in the SIM card once again and turn on the phone, make sure that the SIM card is placed and seated perfectly in the tray!
    Tell me how did you unlock your phone!?

  • My display has gone crazy, please help!!!

    Well folks, you can count me in as another victim of the "checkered/blocked" display problem. It suddenly came up just a few hours ago and I,m going crazy. Have been reading some of the posts and Apple should definitely look further on this issue since it's affecting a considerable number of users. I,m not clear if my system is covered under Apple's Extension Program. My S/N begins with W8526xxxxxxx, please help us Apple.

    Hi Chasnufa!
    Basically your screen looks like an old-fashioned TV test card with blocks all over it? That happened to my imac G5 when I had only had it a short while back in 2005. I had just switched to mac and was devastated. When I rang Apple they said it was the logic board which is the most expensive part to replace apparently. I had it fixed under Applecare. I would find out if you can get it fixed under the Apple program as now it is a known fault with these models.Here is a link to the page Apple have set up about the extended repair program, it does look like your model could be one of the affected ones:
    http://support.apple.com/kb/HT2390
    I hope this helps!

  • APPLICATIONS FOLDER HAS GONE BESERK - PLEASE HELP!

    For the past few weeks, most of my apps no longer are visible in the applications folder. 
    The apps work; finder shows them as residing in the apps folder. 
    If I go to the applications folder, though, all I see are the apps with names that begin with "A", plus the CALCULATOR app.
    Everything else [Quicktime, MS Office, etc.] does not appear.
    However, all the applications are working, and finder shows them as being located in the apps folder.
    Today, I found I cannot ADD new apps to my apps folder. 
    It will not accept new apps. 
    I am trying to install dashline 2.0 [a new app for me].
    When I drag the app to the apps folder, the time bar appears and runs through the move.
    However, the app never appears in the apps folder.
    When I search in finder, dashline does NOT show up as being in the app folder.
    If I try again, to drag the app to the apps folder, I get a prompt telling me the app is already in the apps folder.
    I googled these problems but all the answers I find have to do with setting up new computers, transferring from one computer to another, or 'losing' apps from the computer altogether.
    Here is the info on my computer.
    MacBook Pro
    17" late 2011
    Mac OSX 10.7.5
    1.4Ghz Intel Core i7
    16GB Memory
    not networked or shared
    Please help if you can.  I am hugely confounded on this one.

    Hello, Thomas, and thank you for this suggestion.  Here is my list:
    total 56
    drwxrwxr-x+ 108 root      admin   3672 Jun 10 09:15 .
    drwxrwxr-x   35 root      admin   1258 Jun  5 16:10 ..
    -rw-rw-r--    1 root      admin  21508 Jun 10 09:14 .DS_Store
    -rw-r--r--    1 root      wheel      0 Jun 13  2011 .localized
    drwxr-xr-x+   3 root      wheel    102 Oct  5  2012 Address Book.app
    drwxr-xr-x    7 root      admin    238 Jun  6 17:52 Adobe
    drwxrwxr-x@   7 root      admin    238 Feb  9 09:19 Adobe Acrobat X Pro
    drwxrwxr-x@   8 root      admin    272 Mar 28 12:02 Adobe Acrobat XI Pro
    drwxrwxr-x@  13 root      admin    442 Feb  5  2012 Adobe After Effects CS5
    drwxrwxr-x@  13 root      admin    442 Feb 22 17:46 Adobe After Effects CS5.5
    lrwxr-xr-x    1 root      admin     64 Jun  6 17:40 Adobe Application Manager -> /Applications/Utilities/Adobe Application Manager/core/PDapp.app
    drwxrwxr-x@   6 root      admin    204 Jul 23  2012 Adobe Audition CS5.5
    drwxrwxr-x@   9 root      admin    306 Jul 23  2012 Adobe Bridge CS5.1
    drwxrwxr-x@   8 root      admin    272 Jun  6 18:07 Adobe Bridge CS6
    drwxrwxr-x@  13 root      admin    442 Jul 23  2012 Adobe Contribute CS5.1
    drwxrwxr-x@   5 root      admin    170 Feb  4  2012 Adobe Device Central CS5
    drwxrwxr-x@   5 root      admin    170 Jul 23  2012 Adobe Device Central CS5.5
    drwxr-xr-x    3 501       admin    102 Mar 22  2012 Adobe Digital Editions.app
    drwxr-xr-x    3 giovanna  staff    102 Oct  9  2012 Adobe Download Assistant.app
    drwxrwxr-x@  12 root      admin    408 Jul 25  2012 Adobe Dreamweaver CS5.5
    drwxrwxr-x@  10 root      admin    340 Jun  6 17:59 Adobe Dreamweaver CS6
    drwxrwxr-x@   5 root      admin    170 Jul 23  2012 Adobe Encore CS5.1
    drwxrwxr-x@   8 root      admin    272 Feb  4  2012 Adobe Extension Manager CS5
    drwxrwxr-x@   8 root      admin    272 Jul 23  2012 Adobe Extension Manager CS5.5
    drwxrwxr-x@   6 root      admin    204 Jun  6 18:07 Adobe Extension Manager CS6
    drwxrwxr-x@  10 root      admin    340 Aug  4  2012 Adobe Fireworks CS5.1
    drwxrwxr-x@  21 root      admin    714 May 18 18:01 Adobe Flash Builder 4.5
    drwxrwxr-x@  14 root      admin    476 Mar 28 16:52 Adobe Flash CS5.5
    drwxrwxr-x@  20 root      admin    680 Jul 23  2012 Adobe Flash Catalyst CS5.5
    drwxrwxr-x@  12 root      admin    408 Jul 23  2012 Adobe Illustrator CS5.1
    drwxrwxr-x@  11 root      admin    374 Jun  6 18:07 Adobe Illustrator CS6
    drwxrwxr-x@  13 root      admin    442 Feb  5  2012 Adobe InDesign CS5
    drwxrwxr-x@  13 root      admin    442 Jul 23  2012 Adobe InDesign CS5.5
    drwxrwxr-x@  12 root      admin    408 Jun  6 17:53 Adobe InDesign CS6
    drwxrwxr-x@   5 root      admin    170 Jul 23  2012 Adobe Media Encoder CS5.5
    drwxrwxr-x@   5 root      admin    170 Jun  6 17:53 Adobe Media Encoder CS6
    drwxr-xr-x    3 root      wheel    102 Feb  4  2012 Adobe Media Player.app
    drwxrwxr-x@   6 root      admin    204 Feb  4  2012 Adobe OnLocation CS5
    drwxrwxr-x@   6 root      admin    204 Jul 23  2012 Adobe OnLocation CS5.1
    drwxrwxr-x@  16 root      admin    544 Sep 26  2012 Adobe Photoshop CS5.1
    drwxrwxr-x@  12 root      admin    408 Jun  6 17:58 Adobe Photoshop CS6
    drwxrwxr-x@   8 root      admin    272 Feb  5  2012 Adobe Premiere Pro CS5
    drwxrwxr-x@   8 root      admin    272 Jul 23  2012 Adobe Premiere Pro CS5.5
    drwxrwxr-x    3 root      admin    102 Feb  4  2012 Adobe Reader.app
    drwxrwxr-x@   5 root      admin    170 Feb  4  2012 Adobe Soundbooth CS5
    drwxr-xr-x    3 root      wheel    102 Jul 23  2012 Adobe Story.app
    drwxr-xr-x    3 giovanna  staff    102 Oct 24  2012 Amazon MP3 Downloader.app
    drwxrwxr-x    3 501       staff    102 Jun  4  2012 Android File Transfer.app
    drwxr-xr-x+   3 root      wheel    102 Oct  5  2012 App Store.app
    drwxr-xr-x    3 root      wheel    102 Oct  5  2012 Automator.app
    drwxr-xr-x    3 root      wheel    102 Oct  5  2012 Calculator.app

  • I just updated firefox and now when i play online games ,my home button and my login in button does not work,also my refresh button is gone. Please help me with this problem. THANKS

    i updated firefox to the newest version,now my login and home button does not work,also my refresh button dissapeared. I play alot of games and need those buttons to switch back and forth to other games. THANKS

    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!

  • How to store jpeg images in SQL server using NI database Connectivity Toolset. Can anyone please help me in this regard.

    Please tell how to store jpeg images in SQL Server using NI Database Connectivity Toolset.

    http://www.w3schools.com/sql/sql_datatypes.asp
    You setup a field as BLOB and store the binary of the picture there. Depending on the database it can be called differently as you can see in the link, in SQL server there's even a Image datatype.
    /Y
    LabVIEW 8.2 - 2014
    "Only dead fish swim downstream" - "My life for Kudos!" - "Dumb people repeat old mistakes - smart ones create new ones."
    G# - Free award winning reference based OOP for LV

  • Please help me in this error

    Hi all,
    I am new to solaris platform. I am using List template in my program. I wrote a makefile to compile this program. While compiling it is giving the following errors. I am struggling with this error for the past 3 days.
    errors
    "/opt/SUNWspro/SC5.0/include/CC/Cstd/rw/rwdispatch.h", line 63: Error: RWis_integral_type(int) already had a body defined.
    "/opt/SUNWspro/SC5.0/include/CC/Cstd/rw/rwdispatch.h", line 121: Error: Multiple declaration for _RWdispatch<int>.
    Anybody please help me in this regard. I will be thankful to you.
    My platform Forte Developer 6 update 2.
    Thanks
    venkat

    Get the latest patches for the compiler and see if that fixes the problem.
    http://developers.sun.com/prodtech/cc/downloads/patches/

  • My iPhone 4 ios5 has suddenly stopped giving me the option to join any wifi network. The 'wifi' line in settings has gone grey and does not respond to touch. How can I get it back? AW

    My iPhone 4S ios5 has suddenly stopped letting me connect to any wifi. The wifi line in settings has gone grey, reads 'no wifi' and does not respond to touch. How do I get reconnected?

    HI there,
    You may want take a look at some of the troubleshooting steps found in the article below.
    iOS: Wi-Fi settings grayed out or dim
    http://support.apple.com/kb/ts1559
    Hope that helps,
    Griff W.

  • I bought apple iPad on this July , it's been only two months but now I'm getting a problem like no wifi it's greyed out sometimes and showing no wifi... Please help I'm frustrated on this , did they provided me a fault device ??

    I bought apple iPad on this July , it's been only two months but now I'm getting a problem like no wifi it's greyed out sometimes and showing no wifi... Please help I'm frustrated on this , did they provided me a fault device ??

    See:
    iOS: Wi-Fi or Bluetooth settings grayed out or dim
    It is frequently a hardware problem and an appointment at the Genius Bar of an Apple store is in order.

  • Once I downloaded the new IOS 5.0 I've lost all of my photos that were stored on my PC, and I no longer have access to them on the IPOD.  Cannot figure out what has happened.  Please help.

    Once I downloaded the new IOS 5.0 I've lost all of my photos that were stored on my PC, and I no longer have access to them on the IPOD.  Cannot figure out what has happened.  Please help.

    Thanks lllaass, but I am not computer literate and do not understand exactly what it is I am supposed to do.  All of my photos were stored on Microsoft Windows Live Photo Gallery.  When I now access the gallery the only thing that is there are the folders with the title of the folders.  The pictures that were in those folders are now gone. I can no longer access them on my IPOD either.  My photo library on my IPOD is now empty. 
    Thanks again for your help.

  • Hi. i updated my iphone 4s to iOS 7.0.4 but after that, wifi is not enabled. please help in this regard.

    Hi. i updated my iphone 4s to iOS 7.0.4 but after that, wifi is not enabled. please help in this regard.

    Apple has provided a useless workaround... [http://support.apple.com/kb/ts1559]
    Else the only option you have is to fight with the Apple Store "geniuses" to get a free replacement for out of warranty 4S devices. Or try a third party repair like iFixit. The wifi chip might cost you 60-80$ but it is better than paying Apple 200$.
    Overheating is the culprit in 4S devices. And its been getting worse with ever successive iOS 7 update. I think 7.0.4 was the final nail in the coffin.
    They are not getting my money anymore.. I've had iPhones every since they launched... but no more. Feels like a dead investment after facing this issue. I can never sell my iPhone 4S even if I want to. There have been cases where users just sold their 4S devices, the new owner updated to 7.0.4, wifi stopped working and the seller had to give a refund.
    I'm basically sitting on a 650$ white brick. Hmm... I wonder if white bricks sell higher than the standard red bricks
    Guess it's time for you to sign up this ongoing campaign [https://www.change.org/petitions/apple-to-get-apple-to-replace-all-units-affecte d-negatively-by-the-update-of-ios7-or-patch-an-update-that-will-remedy-the-issue s-many-loyal-customers-are-experiencing#share]
    TBH, I can't get a replacement because I am in India where 4S was never launched as an unlocked device and there are no Apple retail stores. Only resellers here like Vodafone/Reliance/Airtel. But if this petition can help the one who can take advantage of having retail stores around... why not? Sign up please. Thank You.

  • I am not able to launch FF everytime i tr to open it, it says FF has to submit a crash report, i even tried doing that and the report was submitted too, but stiil FF did not start, and the problem still persists, please help me solve this issue in English

    Question
    I am not able to launch FF everytime i try to open it, it says FF has to submit a crash report,and restore yr tabs. I even tried doing that and the report was submitted too, but still FF did not start, and the problem still persists, please help me solve this issue
    '''(in English)'''

    Hi Danny,
    Per my understanding that you can't get the expect result by using the expression "=Count(Fields!TICKET_STATUS.Value=4) " to count the the TICKET_STATUS which value is 4, the result will returns the count of all the TICKET_STATUS values(206)
    but not 180, right?
    I have tested on my local environment and can reproduce the issue, the issue caused by you are using the count() function in the incorrect way, please modify the expression as below and have a test:
    =COUNT(IIF(Fields!TICKET_STATUS.Value=4 ,1,Nothing))
    or
    =SUM(IIF(Fields!TICKET_STATUS=4,1,0))
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

Maybe you are looking for