Having problems with ios6 for iPad

Just recently installed ios6 to my iPad witht he following problems:
Cannoct connect to itunes store
Cannot download any apps
The new Maps app is unable to locate my current location
Some Facebook features are disabled. "Tap retry" doesn't respond
Some other apps are not working
Safari is not able to connect to the server.
My internet is fine throhg my apple laptop. No problems on this end
I have shut the iPad off completely and turned back on. No difference
I have accessed all the apps in "Settings" to locate possible problem. No difference
HELP!

with network problems, try toggling airplane mode, leave it on for a solid 10 seconds, then off. if that doesn't help, try resetting the network settings by Setting> General> Reset
if those don't work, perhaps restoring the device would be in order. just be sure to save a backup of the device.

Similar Messages

  • I am having problems with my new ipad that i got for Christmas today, i don't get free wi-fi at my home and it said if the wi-fi is not available, connect to itunes. i have done that and it didnt help me. mind helping me out?

    i am having problems with my new ipad that i got for Christmas today, i don't get free wi-fi at my home and it said if the wi-fi is not available, connect to itunes. i have done that and it didnt help me. mind helping me out?

    Further info - I changed my security settings to allow apps from anywhere, and again tried to install.  I again got an error message
    that the update failed to install, and to contact Customer Support.

  • I am not having problems with wifi but ipad will not accept my password in the secure mode. anyone else having the same problem?

    I am having problems with the Ipad accepting my password in the secure mode in Wifi. I can get into wifi when the secure mode is off. This only started when I downloaded the lastest update for the Ipad. Anyone else having the same problems?  I have rebooted the Rotar and still doesn't work.

    I am not.
    Which secure mode are you using with your wireless network - WEP or WPA?
    Have you tried forgetting this network on your iPad, and/or resetting network settings on your iPad? Both will require rejoining the network and the latter will require rejoining every wi-fi network your iPad has access to when returning within range of the network.

  • Problem with newsstand  for ipad

    Hi there, I have been having a small problem with newsstand on my ipad.
    I have a free copy of Jamie Oliver's magazine on there, which is fine.
    However, now all I can view is this copy. I want to browse the shop for other copies of the magazine, or for a subscription option, but can't do this.
    I had this browsing option before I downloaded the free copy, but now can't browse anywhere. I've gone back to the store, but can't do it in there either... it just seems to offer me the chance to re-open the app.
    I can't work out how to browse the issues of Jamie's magazine.
    Has it glitched, or am I being a noob?

    Rodrigo, I had the same problem, I think what causes it is the spanish keyboard. I asume you are using it. Unfortunately what I had to do to fix was perform a full restore. the problem is that the issue will return if you enable the spanish keyboard again. I hope this helps you.

  • Problems with AIM for iPad

    I am using the free AIM messaging app for iPad and having a problem getting the Buddy list to stabilize.
    The app keeps changing my Buddy's names (actual name reverts to the "username") and when I delete one it reappears as an "offline" Buddy.
    I can't find any form of a user manual or help function to explain what I'm doing wrong.
    Can someone help me figure out how to create and manage a Buddy list with this app?
    Or maybe suggest a better messaging app for iPad?
    Thanks.

    I didn't have the same problem, but many others. Our iPad AIM and iPhone AIM both had issues with not showing as available to each other sometimes, or other buddies not showing up. I could delete them and add them over and over, yet their availability was rare or random. I was also annoyed by the Facebook integration, and the fact that the preference to turn Facebook integration OFF didn't work.
    It turns out that all my preferences that wouldn't stick and buddies that wouldn't show were solved by downloading the Mac version of AIM and changing several settings there. I dragged some fresh buddies from "recent buddies" to the "Buddies" or "Family" group and that account started showing them properly on the mobile devices immediately. The Facebook integration had to be turned off via the Computer version of AIM as well. Once AOL detects the changes on the PC or Mac version of AIM, the mobile version starts to behave.

  • Having problems with mailscript for my flash site :(

    I posted this on another part of this form but thought it may
    be more applicable to this portion of the site so I thank you once
    again in advance for your help!
    I want to say hello to all and thanks for letting me a part
    of this great forum. I am having some problems with my flash site
    (www.alliancedirect.net) and I am using Adobe Flash CS4 now with my
    site with ActionScript 1.0.
    I have a form already made on the site (under contact us) but
    whatever I do....I can't make it work! I use GoDaddy and their
    gdform.psp is what they provide but they don't give the code in
    flash. I downloaded some different flash mail scripts and programs
    but I don't know how to incorporate it within my own site and I
    don't know what to do! I just want the information to be submitted
    to me via email and the other forms I will make away from the flash
    portion if it is too complicated.
    Please let me know what specific information you may need
    from me and how you can hopefully help me as soon as possible as I
    need this website completely up and running. Again, I appreciatre
    the help and look forward to being a part of your community!
    -sasss

    I found this here:
    http://www.actionscript.org/resources/articles/82/3/Send-Email-via-Flash-and-PHP/Page3.htm l
    THE CODE
    stop ();
    function lineAdapt () {
    message_send = message;
    while (msg_count<length(message)) {
    msg_count = msg_count+1;
    if ((substring(message_send, msg_count, 2)) eq "
    message_send = (substring(message_send, 1, msg_count-2))
    +"
    "+(substring(message_send, msg_count+2,
    (length(message_send))-msg_count+2));
    message = message_send;
    delete msg_count;
    delete message_send;
    WHAT THE ABOVE MEANS
    Line 1 - Stops the play head.
    Line 2 - Defines a custom function lineAdapt which will
    convert the flash carriage return marker ( " ") to the PHP
    equivalent (" "). This ensures that if the user types a comment
    with paragraph breaks, these breaks will be reflected in the email,
    rather than it being one very long line of text :o)
    Line 3 - Sets variable message_send to the value of message.
    This is a storage variable: we will adapt message_send rather than
    message because message is being displayed in a text box on screen
    and adapting it may cause strange visual output.
    Line 4 - Begins a loop which will continue until the newly
    created variable msg_count is greater than or equal to the length
    of the string contained in message.
    Line 5 - Increments msg_count by 1.
    Line 6 - Conditional statement which checks if the 2
    characters within the string message_send starting at letter number
    msg_count are equal to the string " ". If you type data into a text
    box in Flash and enter carriage returns, you wills see that the
    variable which stores that text fields value is adapted with a " "
    inserted where each carriage return should be, so we are looking
    for these markers using Line 6.
    Line 7 - If Line 6 returns True, replace the " " we just
    found with " " (which is the PHP equivalent of " "). This code
    looks complicated but it isn't really. Al it does it 'copies' the
    characters before and after the " ", the pastes those before,
    enters " " and pastes those after. The result is the equivalent
    string with " " instead of " ".
    Line 8 - Sets the variable message to the finalized version
    of message_send, which contains no " " markers. We do this because
    when we post our variables PHP will look for variables with the
    same name. Remember in the PHP code we refer to the variable
    messagenot message_send so we must make sure the correct variable
    holds the correct value.
    Line 9 - Deletes the counter variable for our loop from
    memory
    Line 10 - Deletes the temporary message_sendvariable we used
    for altering the new line markers.
    SEND BUTTON CODE
    on (release) {
    if (subject eq "" or message eq "" or from eq "") {
    stop ();
    } else {
    lineAdapt();
    loadVariablesNum ("mail.php3", 0, "POST");
    gotoAndStop (2);
    WHAT THE ABOVE MEANS
    Line 1 - Says "Perform these actions when this button is
    clicked then released"
    Line 2 - Checks to see if any variable has no value. We don't
    want people sending us mail with no reply address for instance.
    Line 3 - Line 2 returns True, stop.
    Line 4 - Line 2 returns False, go on.
    Line 5 - Perform the predefined function lineAdapt () on our
    currently entered variables.
    Line 6 - Send variables, using the POST method, to our PHP
    script which will send the email off. (Note that you could also use
    LoadVars objects in place of LoadVariables if you wish to make this
    more synchornous. See the LoadVariables and LoadVars tutorial.)
    Line 7 - Go to the confirmation message and stop once the
    email is sent.

  • Is anyone else having problems with Office for Mac and Lion?

    Since installing Lion 10.7.1 on a macbook pro 2.53 Ghz 4GB 1067 MHz DDR3 I have had no end of problems. Both Excel and Word hang, crash and saving an Excel file is a pain. A 12mb spread sheet just took 4 minutes to save! I have MS Office for Mac 2011 version 14.1.3.
    Another problem that may not be related to Office is that opening Finder is so slow and most of the time it takes a minute to display folders in Desktop or Documents.
    Any suggestions would be welcome .. I regret installing Lion .. I had no problems with Snow Leopard!

    botro wrote:
    I'm unable to install the MS Office 14.1.3 update - I keep getting "Installation Failure"
    I have not found a solution on this board or Microsoft community
    This thread had some things to try.

  • I'm having problems with Outlook for the Mac, anyone else?, I'm having problems with Outlook for the Mac, anyone else?

    I have recently purchased a Mac.  I'm very dissapointed at the way Outlook 2011(the newest version, what?!?)interfaces with the Mac.  I used the contacts feature all the time when I had a microsoft system.  Now, I can't do that with Outlook for the Mac.  Does anyone have any alternative Apps that they've used for Business contacts?  Thanks much.

    thank you both for your responses.  I'm having trouble mostly with a way to handle my business contacts. I'm self employed and when I had Outlook for Microst(before I switched to Apple)I was so pleased with this softward. Esp the way it would keep track of any correspondense between me and my customer.  I could also track billing thru Outlook contacts. 
    Now, I get my mail thru outllook and use ical and @contacts.  I see that I can have a separate group of contacts thru @contacts, but, it's not the same or nearly as good as Outlook contacts for Microsoft.
    So, right now I'm really disapointed with my Mac purchase and hoping to find an app that will help.  I will investigate Thunderbird.
    thanks again.

  • Having problems with ios6

    Since I have ios6 on my ipad i have no connection with itunes, appstore, safari. My wifi connection is ok.
    How can I solve this problem

    with network problems, try toggling airplane mode, leave it on for a solid 10 seconds, then off. if that doesn't help, try resetting the network settings by Setting> General> Reset
    if those don't work, perhaps restoring the device would be in order. just be sure to save a backup of the device.

  • Is anyone having problems with the new ipad staying connected to wi fi

    My new Ipad 4G + WI FI keeps losing the connection to the internet.  I have to continuously type in the password  to our WI FI.  Is anyone else having this problem?  I didn't have it with the Ipad 2.

    Search before posting please:
    https://discussions.apple.com/thread/3812929?tstart=0

  • My Apple TV is having problems with slideshows for photos synced from iTunes. How can I make it play thew whole slideshow without starting the loop again half way through?

    My Apple TV randomly returns to the beginning in the middle of the slideshow for no reason. I don't habve the photos on shuffle
    I started the slide show many times and somtimes it got through 20 photos, other times 50. Then all of a sudden, it goes back to the beginning and starts again. It's so frustrating as there is no reason for this and it doesn't loop back to the start on the same photo each time. I have about 350 photos in the album and they all loaded fine as thumbnails before I played the slideshow.
    Can anyone help please?
    Thanks, Adam

    Have solved my own problem. My PC sits on the floor so I have a four-port USB hub on my desktop with one port in use. I use one of the other three ports for USB-related task. As I was shutting down for the night I had a - what turned out to be inspired - thought about whether there was an adequate power supply from the hub. I then tried the iPod USB connection directly into the front of my machine and everything worked. It seems that an inadequate power supply was the cause of this strange set of conditions.

  • Anyone is having problems with shared on iPad?

    After ios 6, when I try to watch on my ipad tv shows or movies from my iTunes library, the videos rolls on and the controls doesn't appear when I touch the screen. If I quit the app, the audio continuous in background. Also, if I watch it till the end, iTunes doesn't register that was watched.
    Any ideas?
    Thank you
    Leandro

    A friend lost her imessaging after updating to ios6.  eventually she went to Apple Store and they reset the phone completely and it works now  so possibly try from settings general  reset  reset all.   Suggest you back up phone first

  • Why am I experiencing problems with Facetime for iPad after iOS 6 upgrade?

    I recently upgraded my iPad 3 to iOS 6. Everthing works fine except Factime. Everytime I try to Facetime I get a message saying "email is already in use". I've tried creating a new email account and it still won't allow me access to my Facetime. Any advice?

    You can't downgrade your iOS version.
    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime: Set-up, Use, and Troubleshooting Problems
    http://tinyurl.com/32drz3d
     Cheers, Tom

  • HT1657 I am having problems with sound in my rental movies

    We rent movies all the time but lately we are having problems with sound for our movie rentals.  We watch the first half hour without a problem than the voice is choppy all the time.  Sometimes it is good for five minutes than noting for a while.  We  have tried everything we could think of with no avail.  I could see one movie but the last 5 or so have been the same.  Done trying we need to fix this!  Help!  Any ideas?

    First try resetting your iPad by simultaneously pressing and holding the Home and Sleep/Wake buttons until you see the Apple Logo. This can take up to 15 seconds so be patient and don't release the buttons until the logo appears. Try again to see if the problem persists.
    If you still have the same issue, it's possible that something is lodged in the earphone jack. This can cause the iPad to think earphones are plugged in when they are not. Use a vacuum to try to suck any dust, lint or other foreign matter from the jack. If that still doesn't work, try CAREULLY using a toothpick.

  • HT4539 I'm having problems with my iPad I downloaded I downloaded pro for two dollars and now when I try to download other apps in the app store it wAnts to kno my personal card info on free items and won't let me download items I already erase the I down

    I'm having problems with my iPad I downloaded I downloaded pro for two dollars and now when I try to download other apps in the app store it wAnts to kno my personal card info on free items and won't let me download items I already erase the I downloadeder pro but I don't kno way to do?

    Also, when I go on to safari, another alert pops up that safari cannot verify the identity of the website, anything that I type in to as common as google.com. It gives me 3 options to either cancel, look at details, and continue. I've looked at the details of the website of Google and it is legitimate the site. Any help?

Maybe you are looking for