Issues with Siri & Downloads.. iphone 4s

I just bought a new iphone 4S a few days ago.. it was working fine, however, today I am having problems... I can't get Siri to work and I cant download any apps from the app store. I did a hard reset, and I'm still having the same problem.. Please help.

Apple server is probably down, there has been a lot of threads on this already today.

Similar Messages

  • Issue with mail download - iPhone 4S

    Hi,
    I am using 4S (IOS 7).
    I have configured my Hotmail and office exchange mail  on my iPhone, which has been working fine till recently. Last 2 months, I have been facing issues, where some of my mail folders in both my mail accounts go missing, and the mails dont download, neither can I send/delete mails. Also, during those times, the Hotmail contacts is also not synched and they go missing from my iPhone.
    I have tried to delete the mail accounts and add them again, a few times, but sometimes it doesnt help, and sometimes it is temporary fix, and after a few days, it goes back to the same problem.
    For configuring Hotmail account, I use the Outlook option, and for my office mail, I use the exchange option.
    Due to this, I can 100% rely on my iPhone. Many a times, some important information/contacts I am looking for is not there at those crucial times.
    Has anyone encountered such issues? Any help  to resolve this will be much appreciated.
    Thanks,
    Roopesh

    The change the ID used for purchasing, go to Settings>iCoud & App Stores, tap the ID shown, sign out, then sign back in with the ID you wish to use.

  • Is anyone having issues with Siri on iPhone 4 with iOS5?

    Siri worked fine prior to updating to iOS5.  It worked on both the iPad II and iPhone 4.  Now I get a message there is a problem reciving response from the server.

    The version of Siri that used to be available in the App Store, which is what you had on your iPhone 4 has been discontinued. It has been removed from the Store and there is no more server support for it. As you've discovered, it no longer works. Sorry.

  • I am having an issue writing texts with Siri on iPhone 5 iOS 6.  When I do it just talking to the phone it works fine. However if I speak through the ear pod headphones or Bluetooth headset it only writes about 5 works before trying to send.

    I am having an issue writing texts with Siri on iPhone 5 iOS 6.  When I do it just talking to the phone it works fine. However if I speak through the ear pod headphones or Bluetooth headset it only writes about 5 works before trying to send.
    Does anyone know why this might be?

        Hello APVzW, we absolutely want the best path to resolution. My apologies for multiple attempts of replacing the device. We'd like to verify the order information and see if we can locate the tracking number. Please send a direct message with the order number so we can dive deeper. Here's steps to send a direct message: http://vz.to/1b8XnPy We look forward to hearing from you soon.
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

  • HT4972 Is anyone having issues with facebook on iphone 3?

    Is anyone having issues with Facebook and iphone 3?

    If you're using IOS 4.2.1, you can not download facebook. I have had the same problems and now just use safari to go on facebook. Hope this helps

  • IOS 8.0.2 issues with Whatsapp on iPhone 5c

    I have an iPhone 5c. Upgraded from iOS 7.0.4 to iOS 8.0.2.  After that Whatsapp stopped working.  I can see all the groups, but if I click on any group it just takes me back to home screen.  Network Status says connecting....

    Hello SuryaSN,
    The article linked below details a number of troubleshooting steps that can help resolve issues with apps downloaded from the App Store.
    iOS: An app you installed unexpectedly quits, stops responding, or won’t open
    http://support.apple.com/kb/TS1702
    Cheers,
    Allen

  • Issue with File Download(messageDownload) on Search Page.

    Hi,
    I created a custom OAF search page which fetches values from one table. The document in getting stored in my custom table in a BLOB colums and NOT in FND_LOBS.
    The table has 3 collumns along with others:
    1st is primary key (Record_Seq) ==> number data type
    2nd to store actual file name (File1Name) ==> varcahar2 data type
    3rd to store the actual uploaded data (File1Data) ==> BLOB data type
    The reason for having the “File1Name” is so that I can display the original file name of the document that was uploaded, instead of just the “view” in the search page results .
    On the File1Data BLOB and created a messageDownload for that under query results table with following details:
    ID : File1Data
    ItemStyle : messageDownload
    FileMIME Type : pdf
    Datatype : BLOB
    View Instance : LacEmpExposureVO1
    view Attribute : File1Name
    File View Attribute : File1Data
    When I click on the "File1Name" data hyperlink, it is opening only the first document corresponding to the first record in the search page results.
    For example, If my search page returns 10 rows then when I click on the file1name on any row, It is open the first row file name only.
    I have a primary key column(RECORD_SEQ) in the Table / EO / VO which is displayed in the search page results.
    Also one weird thing is happening:
    If I try to do this more than 2 times then it is opening the update page with the first record from the search page results…
    I tried to print the context and it is nul the first time, But the second time then context is changing to "update". Dont know how this is happening????
    Any advice is greatly appreciated as it is very crucial for me to get this resolved ASAP. I have looked at several forums and did a lot of things as advised in the forums . But nothing seems to work for me.
    Thanks,
    Mir
    CO code for the search page
    ===========================
    if (pageContext.getParameter("Create")!= null)
    System.out.println("Into LacEmpExposureCO in PROCESS FORM REQUEST with Context of CREATE");
    pageContext.setForwardURL
    ("OA.jsp?page=/lac/oracle/apps/lac/lacempexposure/webui/LacEmpExposureCreatePG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    true, //Retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES,
    OAWebBeanConstants.IGNORE_MESSAGES);
    else if ("update".equals(pageContext.getParameter(EVENT_PARAM)))
    System.out.println("Into LacEmpExposureCO in PROCESS FORM REQUEST with Context of UPDATE");
    System.out.println("LacEmpExposureCO ==> RecordSeq in PROCESS FORM REQUEST is: " + RecordSeq);
    HashMap params = new HashMap(1);
    params.put("RecordSeq", RecordSeq);
    pageContext.setForwardURL
    ("OA.jsp?page=/lac/oracle/apps/lac/lacempexposure/webui/LacEmpExposureUpdatePG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    params,
    true, //Retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO, // Do not display breadcrumbs
    OAWebBeanConstants.IGNORE_MESSAGES);
    else {           
    String strEvent = pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM);
    System.out.println(strEvent);
    System.out.println("Into the last ELSE part in LacEmpExposureCO.java");

    Duplicate post -- Issue with File Download(messageDownload) on Search Page.

  • Is there an issue with Safari in Iphones and Ipads where it does not recognize option disabled="disabled" tag properly?

    Greetings everybody,
    I have run into a peculiar problem with the Safari browser on mobile platforms (IPad, IPod, IPhone) which I hope I can find a solution for in this community.
    I just launched a new website where I sell products with certain variations, for example please view this link: http://www.finerribbon.com/aegean-single-face-satin-ribbon.html
    On this particular product, the product variants are supposed to work in such a way where:
    If you select the value "1/8" from the "Choose Ribbon Width" field
    THEN
    The only options active and available to choose from in the "Choose Roll Size" field should be: 500 Yds, 20 Yds & Sample Swatch
    Now, if we browse to the above link in Safari using a desktop or a laptop, there are no problems at all, but if we browse to the above link using an IPhone or an Ipad, then we have a problem where all the options are available regardless of the values chosen, basically the above functonality does not work.
    I was told that there an issue with Safari in Iphones and Ipads where it does not recognize option disabled="disabled" tag properly, is this true? Can anyone advise me if there is a solution to this problem? I would sincerely apperciate it.
    Thank you very much for your time and help!

    Hi...
    I have run into a peculiar problem with the Safari browser on mobile platforms (IPad, IPod, IPhone) which I hope I can find a solution for in this community.
    Now, if we browse to the above link in Safari using a desktop or a laptop, there are no problems at all, but if we browse to the above link using an IPhone or an Ipad, then we have a problem
    At the top of this window you'll see the following:
    Apple Support Communities > Mac OS & System Software > Safari > Discussions
    This the Safari forum for the Mac OS X.
    Better that you post your topic here  > Developer Forums: Apple Support Communities
    I do see on my iPad what you are rreferring to. But you shoudl get the feedback you need in the developer forum.

  • I've got a death grip issue withe my new iphone 4s 16GB.

    I've got a death grip issue withe my new iphone 4s 16GB. When I touch lower left corner of the device signal goes down and NO SERVIS pops up. When I do not touch this part of device everything is fine.
    I am from Slovakia.
    I have unlocked device and using T-mobil / Telekom carrier.
    Please help me slove this problem. Thank you for any advice / response.

    get a case.  That's the solution.  Simple.

  • Is anyone having volume issues with the new Iphone 4S?

    Is anyone having volume issues with the new Iphone 4S?

    Yes, the volume on my iPhone 4s will max out without me touching any button or setting.  When opening mail, for instance, the ringer icon will appear and the volume level goes to max volume - and I'm not touching the volume buttons.  It seems to happen randomly, at least I can't identify a pattern, but thankfully it doesn't happen all the time, but at least once a day.  
    Anyone else seen this?

  • I'm having issues with connecting my iPhone 4 to iTunes?

    Here's some information:
    Apple product: iPhone 4
    Computer: Windows 8 (originally) to Windows 8.1 (upgraded version)
    Okay, I'm having issues with connecting my iPhone 4 to iTunes. I've connected it via U.S.B. and now everything's not working right the 10th time. Am I to redownload the iTunes software once again or will I never be able to add music anymore?

    OffTime wrote:
    What do you mean with logging?
    Hans
    Close any open applications.
    Click the Apple icon top left of the screen.
    Select the bottom option in the cascading menu: Log Out (your user name).
    Log in a Guest.
    This will dertermine if there is a problem with your Admin account.
    Al

  • Issues with Lightroom downloading

    Is anyone else having issues with the download button for Lightroom 4.0 on the Adobe download page?  Nothing happens.

    Troubleshoot Adobe Download Assistant
    Mylenium

  • Facetime problem. am having issues with facetime on iphone 4. Have gone to settings and turned on facetime and it will work (have tested it and my partner can facetime me but no icon comes up on my phone and so doesnt link to any of my contacts

    Facetime problem. am having issues with facetime on iphone 4. Have gone to settings and turned on facetime and it will work (have tested it and my partner can facetime me but no icon comes up on my phone and so doesnt link to any of my contacts

        Oh boy! Acting kind of weird seems to be an understatement, aquaequus!
    What type of troubleshooting were we able to do with you? I want to make sure that we can get some sort of resolution for this problem.
    It is quite possible the battery door may get your phone in working order again. I'm not sure if the store has it in stock, but it is available in our warehouse for $14.99 which can be ordered via customer service.
    Tamara H.
    Follow us on Twitter @VZWSupport

  • HT2693 Having issues with siri thru my nolan ncom bluetooth kit 2.1

    I am having issues with siri thru my nolan ncom bluetooth kit 2.1. It allow me to connect to siri, but siri never responds.  I hear the 2 beeps, i say what I need siri to do , but the light around the microphone continues to spin and siri usually times out. Help!

    I don't think there is anything exotic about the 3G's bluetooth system so that the BMW shouldn't see the contact list. It saw the contact list in my first generation phone, so I'm still puzzled why it doesn't see the contacts in the 3G. I have a query in with BMW to find out why it wouldn't see the list when the first generation phone worked fine. Perhaps there is some setting in the iDrive I'm missing. It's my wife's car so I don't see it often enough to spend the time to dig deeper.

  • Was having issue with original 8G iphone showing 3.5G of "other" info

    Was having issue with original 8G iphone showing 3.5G of "other" info stored on phone. I use multiple computers and at times sync with both and sync using mobileme account. After deleting extra text msg, emails, clearing history and cache in safari adn syncing was still there. Was able to resolve issue by syncing with BOTH computers! Have other iphones that sync with one of the computers. made sure to select sync, but uncheck items that do not want to have on my phone. did not have to sync photo's. now down to 400mb instead of 3.5G of other on phone! Was causing phone to run sluggish. only had 250mb of free space.

    Deepa,
    Okay, 3.0, not so old.
    I am having this strange issue which few of the users are facing.
    If you say that "few of the users" are having a problem, the implication is that not many users out of the whole are facing it and the stress is on the fact that it is such a minority. If, however, you say that "a few of the users" are having a problem, the implication is that although the affected users may be a small number in proportion to the whole, it is a problem nonetheless and this is the focus of the statement. But what is the point of either if there is in fact a technical problem consistently manifest? The statement should be more definitive, e.g., that all (100% of) users who do a particular action experience a problem consistently. I think that's what you want to say but I didn't see it stated. I will assume that to be the case.
    As a developer I am not able to replicate the issue since whenever I click on edit and go the update page , the correct data is fetched.
    Reading ahead, are you using the bookmarked URL? Why would you be unable to reproduce the problem if you do the very same thing?
    The users use a bookedmarked URL for the report and this URL includes the session ID...
    What authentication scheme is used? Is the session ID that is finally used for the request the same as that provided in the URL? In 3.0, I don't believe this should happen.
    Is there a batch job (job 4001) that purges sessions? There should be. Query from dba_jobs.
    Scott

Maybe you are looking for

  • How do I make an animated gif from 2 layers in photoshop CC

    I have a Photoshop (CC) file with 2 layers, I want to make an animated gif...I can find no way of getting the layers into the timeline. There used to be a command to import layers into frames... but I cannot find it

  • Fundamental question on DBMS_SCHEDULER

    DB Version:10gR2 I need to run a stored procedure called PROCESS_SHIP_TRK every 5 minutes. How can i do this using DBMS_SCHEDULER?

  • Error Message to be displayed in Two Languages

    Hi, I am writing my code in an User Exit. My requirement is that when ever an error message is displayed it should be displayed in Two languages i.e in English and Portuguese. Can I do this... if yes then how. Thanks and Regards Suraj

  • Iphone keyboard grey ios 8.0.2

    Just out of the blue my keyboard on my iphone 5c has greyed out. No characters are shown and i cant type. This for everything, including text/imessage, email, notes, and all other apps. This is the second time it has happened to me after i updated to

  • TS3297 I forgot my security questions

    I'm trying to buy an app on the AppStore but I am unable to purchase anything because its asking me security questions and I forgot them. What should I do?