Problems with iOS6 not updating correctly

I recentely upgraded my iPhone 4 with iOS6.  However several of the features seem to not have been installed/upgraded, such as Facebook which still has version 3.3.3   Is there something that I need to do in order to 'unlock' all the features?
Some changes (minor) have taken effect, but several other features are still missing.
I've tried uninstalling/installing Facebook but it always comes up with the same version 3.3.3
Any ideas on what I should do?
Thank you!

Are you using any cleanup software like CCleaner that might cleanup the cache?
Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
*Do not click the Reset button on the Safe mode start window or otherwise make changes.
*https://support.mozilla.org/kb/Safe+Mode
*https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
To avoid confusion:
*http://kb.mozillazine.org/JavaScript_is_not_Java

Similar Messages

  • Problems with EVGET not Returning Correct Results

    We have several reports with EVGETs that are not working.  It seems to be limited to gets on a particular datasrc when getting members at the base level.  Here is an example.
    Application: Budgeting
    Deptid: D_07104
    Account: A_612080
    Product: P_070040
    Project: PJ_NOPROJ
    Time: 2009.APR
    Datasrc; ACTUALS
    Category: INPUT
    At this point, all the members above are base level members.  A standard EVGET will not return results at this intersection even though there is data.  If we change any of the following (Deptid, product, time, or category) to a parent level member, data will be returned.  Another action we can take to get data to return is open a new worksheet and write the same EVGET on the same intersection and it will return results.  If we go back to the original sheet edit each formula and hit enter it will return the correct results.  If we refresh the sheet, the results will disappear.  We have also tried EVGTS and get similar results.
    Another thing we have tried is copying a month of data from datasrc (ACTUALS) and category (INPUT) to datasrc (NEW_ACTUALS) and category (NEW_INPUT) through the BPC delivered copy.  That seems to work.  I don't know if the copy does something to load the data that we are missing.  We also updated our fact table with a SQL update changing the datasrc and category the same way and processed the application and the data would return through some EVGETs and not others.

    This issue can happen when you have for onde dimension multiple hierachies and something is wrong into hierachies.
    Usually you have dimension formula where you are trying to do calculation of a member from H1 using members from H2.
    This it is an example but it can be other possible errors.
    Any way for sure your issue is related to one dimension having multiple hierachies.
    Regards
    Sorin Radulescu

  • Problems with javascript not working correctly, have firefox version 15.0.1. Javascript enabled in tools option. What else should I be looking at?

    Certain websites do not load correctly, the webpage sometimes does not display. Upgraded to current version of Java, this did not solve the problem. The most blatant thing I noticed is that when I hit the plus button to open a new tab, the page that displays displays my nine most favorite websites, all nine have descriptions, but only two or three display the actual web page.
    I also have hotmail and when I try to load some pages directly from the e-mail I get the message Javascript needs to be enabled.

    Are you using any cleanup software like CCleaner that might cleanup the cache?
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    To avoid confusion:
    *http://kb.mozillazine.org/JavaScript_is_not_Java

  • Problem with BAPI_GOODSMVT_CREATE not updating Reservation

    Hi,
    When i do a manual MB1A 'Goods issue' with reference to Work Order it is posting the goods issue and updating the RESB ,but when i do the same through the bapi code 03 Table i was not able to post the goods issue at all. am i missing a input field in the bapi .Plz help me out.
    My code.
    gf_goodsmvt_code-gm_code       = '03'. "GI
      gf_goodsmvt_header-pstng_date  = sy-datum.
      gf_goodsmvt_header-doc_date    = sy-datum.
      LOOP AT it_details INTO gf_details .
        MOVE :gf_details-matnr TO gf_goods-material,
              gf_details-werks TO gf_goods-plant,
              rm07m-lgort      TO gf_goods-stge_loc,
              gf_details-charg TO gf_goods-batch,
              rm07m-bwart      TO gf_goods-move_type.
          MOVE gf_details-issue_qty TO gf_goods-entry_qnt .
          MOVE gf_details-meins TO gf_goods-entry_uom.
       gf_goods-mvt_ind = 'F'.
        gf_goods-reserv_no = gf_details-rsnum.
        gf_goods-res_item = gf_details-posnr.
        gf_goods-res_type = gf_details-rsart.
        gf_goods-withdrawn = 'X'.
       gf_goods-orderid = rm07m-aufnr.
       gf_goods-order_itno = 1.
        APPEND gf_goods TO it_goodsmvt_item.
        CLEAR gf_goods.
      ENDLOOP.
      IF NOT it_goodsmvt_item[] IS INITIAL.
        CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
          EXPORTING
            goodsmvt_header             = gf_goodsmvt_header
            goodsmvt_code               = gf_goodsmvt_code
      TESTRUN                     = ' '
         IMPORTING
      GOODSMVT_HEADRET            =
           materialdocument            = g_mat_doc
      MATDOCUMENTYEAR             =
          TABLES
            goodsmvt_item               = it_goodsmvt_item
      GOODSMVT_SERIALNUMBER       = 'X'
            return                      = it_return.

    check below Threads :
    Issue related to EXIT statement
    and see the sample program :
    Structures for BAPI
    data: gdsmt_header   like bapi2017_gm_head_01.
    data: gdsmt_code like bapi2017_gm_code.
    data: gdsmt_headret like bapi2017_gm_head_ret.
    data: gdsmt_item like bapi2017_gm_item_create occurs 1 with header line.
    data: return like bapiret2 occurs 0.
    data: retmatdoc like bapi2017_gm_head_ret-mat_doc.
    Setup BAPI header data.
      gdsmt_header-pstng_date = sy-datum.
      gdsmt_header-doc_date = sy-datum.
      gdsmt_code-gm_code = '06'.                                " MB11
    Write 262 movement to table.
      clear gdsmt_item.
      move '262'         to gdsmt_item-move_type.
      move i_resb-matnr  to gdsmt_item-material.
      move p_bdmng      to gdsmt_item-entry_qnt.
      move i_resb-meins to gdsmt_item-entry_uom.
      move i_resb-werks to gdsmt_item-plant.
      move i_resb-lgort to gdsmt_item-stge_loc.
      move i_afko-aufnr to gdsmt_item-orderid.
      append gdsmt_item.
    Determine cost center
        move '0000041430' to gdsmt_item-costcenter.
      append gdsmt_item.
    Call goods movement BAPI
      call function 'BAPI_GOODSMVT_CREATE'
           exporting
                goodsmvt_header  = gdsmt_header
                goodsmvt_code    = gdsmt_code
           importing
                goodsmvt_headret = gdsmt_headret
                materialdocument = retmatdoc
           tables
                goodsmvt_item    = gdsmt_item
                return           = return.
    Reward Points if it is helpful
    Thanks
    Seshu

  • I've had several problems with pdfs not viewing correctly in ff-- how can we fix it?

    on two seperate occasions, pdfs are rendering completely wrong within firefox (fine in other browsers and when the mozilla pdf is disabled).
    in the first one, the color rendering is completely wrong. the background is navy blue and showing up as bright pink- http://imgur.com/J2se8rs
    in the second instance, the content is pushed to the right and their is a white bar on the left. http://imgur.com/k8WruXA
    we dont want users to have a bad experience viewing our pdf's so please advise if there is anyway i can troubleshoot.

    that solution will just fix the problem for me-- i want to fix the problem globally. we are sending this link to clients and it looks like we messed up making the pdf. is there anyway we can fix the pdf so no one using ff gets this bad looking pdf?

  • I bought new i phone 5 3 days back, after that asked for new update which is 6.1.4, after updating my iphone i am not able to use cellular data services. I called up data provider, they says its the problem with new software update. There is no option add

    I bought new i phone 5 3 days back, after that asked for new update which is 6.1.4, after updating my iphone i am not able to use cellular data services. I called up data provider, they says its the problem with new software update. There is no option add APN. Now when i switch to safari its showing you are not subscribed for cellular data. But I am able to use data on other phone.
    Will you please help me in this regard?
    Another issue, since i bought my new iphone there is dust inside back main camera.
    Your advises are highly appreciated.

    Hey Shaiju isac,
    I'd take a look at the following article, it'll guide you though steps to you troubleshoot cellular data issues on your iPhone:
    iPhone: Troubleshooting a cellular data connection
    http://support.apple.com/kb/ts3780
    Cheers,
    David

  • Updated iphone 5 to iOS 6.1.3, now trouble with keyboard not responding correctly and screen zooming in by itself...

    updated iphone 5 to iOS 6.1.3, now I am having trouble with keyboard not responding correctly and screen zooming in by itself...
    Buttons pressing themself...
    Also, my main screen is permanently zoomed in...
    suggestions?

    Double tap the screen with THREE fingers, that should get it back to normal again.
    Then go into Settings > General > Accessibility > Zoom > OFF.
    Not too sure about the keyboard and random button presses though.  Back it up and restore from iTunes, see if that fixes it.

  • I have a problem with my application update since i updated to iOS6

    i am having a problem with my application update since i updated my iphonw to iOS 6. small updates are taking very long time and even not getting finished after several hours.
    my internet connection is very fine and having good speed. i think updating to iOS 6 was a mistake....

    Do a reset (Hold Sleep/Wake and Home buttons about 10 secs or more till Apple logo appears, ignore the Slide to Power Off that appears)
    Note: You will not lose any data.

  • Having data problems with ios6, seems to be a unique problem?

    My little brother recently bought an iphone 4s and imediately upgraded to ios6. Since the phone has been in use (less than 30 days) the phone company (bell a canadian company) claims he has used up 17 Gigs of data but the iphone counter says he has only used 5 gigs. I realize the counter may not be totally accurate but that big of a difference seems a little crazy. I also have an iphone 4s with the ios 6 and my data usage that my phone counter displays matches what my phone company says almost perfect (a few mb difference). The data amounts come in large chunks on my brothers phone and at very odd times such as: 1456.28 mb at 4:04 am, or 4268.07mb in one session. He does not use his phone for streaming or anything like that, We are aware of what uses large amounts of data and what does not. he uses it for facebook twitter web browing etc.
    When talking to tech support one guy said that we could have a "lemon" phone claiming that a known problem with ios6 can cause the data to somehow get "scrambled" and completely making up data usage numbers to send to the phone company. According to him this makes it an apple problem.
    My main question is has anyone heard of this? If so I am looking for articles talking abut this problem, we are looking at $1000.00 in overage chrges and are preparing for a fight with the phone company.
    The counter has never been reset and I know that I use my iphone 4s much more than my brother (I stream utube and radio stations alllll the time, goole maps etc) and have never once gone over my 6 gb limit. It just seems quite crazy to me that the difference in the iphone data collector (about 5 gb) and what the phone company has (17gb) is so great. To me that is indicating a serious problem. Any input would be greatly appreciated!
    Thanks
    Crystal

    kleptul wrote:
    I have upgraded from a SB Li've! to an SB Li've 24-bit, but I HAVE performed a complete format/clean install of WinXP SP2 to try to correct this problem. WinXP at first recognizes the card as a "Multimedia Audio Controller(the whole yellow "!" found in device manager). Upon installing either the drivers that came with the CD or the updated drivers from the website, the card works fine until I start the system up again, and I'm back at square one, having to install either set of drivers again(and rebooting) to have the card work properly once again. But after shutting down AGAIN... It's like I never installed the drivers in the first place. I'm running in a vicious circle here, like WinXP refuses to acknowledge the drivers permanently. I have formatted and reinstalled WinXP SP2 a total of three times now, to no avail. I'm a computer tech of 2 years and have NEVER seen a problem such as this. Each time the device manager comes up as "drivers for this device has not been installed". And from personal experiences/general knowledge, this does not sound like faulty hardware to me. It's THIS kind of instabilaty that makes me actually MISS dos! Um... help?
    Hi
    Sounds like your system don't recognize the sard (BIOS or OS).
    Does your system recognize the card as a "Creative Li've! 24-bit" or something (is PnP functionality in use?) even it don't work? Is BIOS battery well?
    Have you tried by installing Li've! in another PCI slot?
    Is there some security settings set on XP, and are you installing with full admin rights? Can you find the driver files even when your card is not functioning?
    Also, have you tried install drivers by executing the ctzapxx.exe found on installation package.
    jutapaMessage Edited by jutapa on 0-06-2006 08:53 PM

  • HT1589 problems with itunes after updating..can't locate some of my songs..some have an exclamation point beside them how do i get these songs back in my itunes

    I'm having problems with itunes after updating. I've lost all my playlists,,finally played around with it and got the songs back but some have an exclamation point beside them and can't be located. they are songs i've purchased. I'm not very computer literate so this is a major problem. I have spent hours with this. I just want all my songs to play even though I'm not happy that I have to recreate my playlists. It would be so much easier if I knew and understood how to correct this. Has anyone else had this problem and if so..is there an easy way to correct it?

    Not sure how this is an ipod touch question.
    Perhaps you should post in the itunes forum.

  • Podcast episodes not updating correctly in iTunes

    Hello,
    I am having a problem with my podcast episodes not updating correctly in iTunes.  The last 5 episodes I published appeared in iTunes at the bottom of the episode list, as if they were old episodes--i.e., they appear as if they were the first 5 episodes published.  They also do not have a date assigned to them as the rest of the episodes do.  They were not distributed to podcast subscribers, possibly because iTunes is not recognizing them as new episodes.
    Here is my podcast feed: http://ic.instantcustomer.com/instantcasts/feed/podcast/5047174b90f14efe542431c2 674b1bd9
    And here is the link to my podcast in iTunes: https://itunes.apple.com/us/podcast/small-business-marketing-minute/id896451432
    The problem began with last Wednesday's episode, which was Episode 30, and has continued ever since.  I did not do anything differently when I published that episode than I did when I published the previous 29 episodes, and those updated just fine, or at least seemed to as far as I could tell (i.e., they appeared correctly on iTunes, and appeared as a new episode for me as a podcast subscriber).  Also, after examining the rss feed, I could not see any difference between episodes 1-29 and episodes 30--34, at least as far as the way the feed was formatted.  So, I have no idea what triggered the problem, and no idea how to fix it.  If I can't resolve the issue then I think I'll have to abandon the podcast, since there's no point in publishing a podcast that doesn't distribute new episodes to subscribers. 
    If anyone can shed light on this problem for me, it would be most appreciated.     Thanks!
    -Kevin

    As you say, in the Store the latest episodes don't show a publishing date. When subscribing in iTunes, none of the episodes show a publishing date, and they are listed in the order they appear in the feed.
    In the feed, none of your episodes has a 'pubDate' tag, which is where iTunes gets the date from. Since most of the episodes in the Store have a date, it looks as if originally your episodes had this tag, but that five episodes back you did something in whatever method you are using to create your feed which removed these tags: the Store is presumably getting the dates from its cache since the episodes haven't changed, but obviously doesn't have the dates for the last 5 episodes.

  • I downloaded IOS6 earlier today and my 4S has died twice, it has gone from 45 to 32% in the last 5 minutes and i have icloud, internet, all apps closed with nothing running at all!! There is a serious problem with ios6, my phone was hot at charging time.

    I downloaded IOS6 earlier today and my 4S has died twice, it has gone from 45 to 32% in the last 5 minutes and i have icloud, internet, all apps closed with nothing running at all!! There is a serious problem with ios6, my phone was working hot at chargering time. Apple need to address this asap!!!!

    Hi Suzy Q,
    I can send and receive calls.
    I get "messaging stopped" when doing a lot of texts.
    Texts come up "ghosted" meaning they have the text on the bottom and a transparent one overlaid  on top. they then become one. But I get the ghosting most of the time when I go into a message from a contact to send a text.
    When I go to call logs or text logs, the numbers come up first, and then then the names pop up randomly, meaning not in order down the page, until they are all shown. lots of lag time.
    It runs slow.
    I have 5 apps on here. I should be able to have a  lot of apps on here, and play music, and have files, and...and....and.
    I can get online but doing a Google search, when the page with the choices comes up, it is blurred and I have to tap on the screen for it to become clear and readable.
    When online and scrolling, it hitches sometimes/lags/gets stuck then unstuck
    I get VZWAVS has stopped. (not sure if those are the right letters)
    The status bar that is supposed to be gray with the new update, goes back and forth between green--the old os--to gray. And I have found no continuity with when I get green or when I get gray.
    I get a black screen on occasion.
    sometimes the proximity sensor doesn't work.
    sometimes when I have my bluetooth on and have "hands free mode" on, I get the a text message read through the headset and also through the handset.
    I soft reboot often--turn it off wait a bit and

  • Recordmode data are not updated correctly

    We currently have an issue while using the 3.x data flow in BI 7.0. The same also holds with 3.x versions of BI.
    Suppose you have an ODS sending data in an InfoCube. When you initialize the delta process with data transfer then the recordmode field in the communication structure contains null values even though in the change log table of the ODS it has values. This behaviour does not hold when you send further data with deltas.
    We want the recordmode data to be updated correctly since we use them in a condition. Does anybody know about this problem?
    Best regards
    Theodoros

    Hi again,
    the problem is also not related with any kind of mapping. We are just sending some data from an DSO to an InfoCube. Recordmode values are maintained correctly in the change log table of the DSO. Nevertheless, they are not updated correctly in the InfoCube's update rules communication structure unless we are uploading deltas. My question is why they are not updated also correctly when we are doing an initialization of the delta with data transfer.
    Thanks anyway
    Theodoros

  • Windowed CLOCK does not update correctly

    My floating desktop clock [digital with date] is one hour earlier than it should be and will not update correctly on startup. The time shown is correct if I switch to the menubar version, as is the time in the time update slot on the Time & Date tab in Preferences. But the analog clock below the time update slot shows one hour earlier also. Am not sure how long this has been a problem since I haven't traveled to a different timezone in two months. At this stage in the lifecycle of Tiger, these kinds of petty annoyances should NOT be occurring as new issues.
    14" iBook G4   Mac OS X (10.4.6)   768-Mb RAM

    klimew,
    Welcome to Apple Discussions.
    Go to System Preferences>International>Formats>Times
    and explore the Customize...features.
    Since you are new to Apple Discussions, you may not
    have noticed that there is a Tiger Forum. If my
    suggestion is unproductive, you may want to repost
    your question in the Tiger Forums: Finder, Dock & Dashboard.
    ;~)
    Thanks for the info but the answer does not lie in International. It's a bug in my clock and apparently only for EDT for some cities, like New York NY (my closest city for the summer). When I switch to Ottawa Canada IN THE SAME TIME ZONE everything is OK. Weirdski.
    14" iBook G4   Mac OS X (10.4.6)   768-Mb RAM

  • Problems with IE8 "not responding" on windows 7

    I have a Toshiba Satellite L-355  that has been upgraded to run Windows 7 Home Premium from Windows Vista. I've been having problems with IE8 "not responding" and have tried running it without add-ons, system restore, and banging my head against the wall. All to no avail. Does anybody have any ideas how to fix this? I've tried running other browsers with the same problems.

    Intel(R) HM55 Express Chipset LPC Interface Controller
    Thanks, sav! That's perfect. (Good to know it shows up in Device Manager for people, too.)
    Okay ... although it's the Intel P55 and PM55 chipsets which get all the press about cranky Touch/iPhone connections on Windows 7 systems (the 0xE0000065, -6999 and "Disk can not be read or written to" error messages are the most common, although symptoms can vary further than that), similar sorts of issues look like they could strike other Intel 5-series chipsets ... including your HM55.
    So I'm proceeding precisely as I would with someone with a PM55 chipset.
    *1) Dell updates*
    Some folks with 5-series chipset trouble have got past it by way of BIOS updates. So I thinks it's worth your heading to your Downloads page at Dell, and checking to see if there's any newer versions of your BIOS lurking there. Unfortunately, with the Studio 15s I'm never precisely sure which is the correct downloads page ... so I'd try going to the following Dell page:
    http://support.dell.com/support/downloads/index.aspx
    ... enter your service tag, and then drill through to your downloads page.
    Any improvement with your syncing performance after applying any available BIOS updates at Dell?
    *(2) Adjust power management setting on USB controllers*
    If no joy after updating (if you were behind on your BIOS version), try applying the measures from the following document:
    [iPod not recognized when connected to Windows laptop over USB|iPod not recognized when connected to Windows laptop over USB]
    Reboot the PC after making the changes, and then try another sync. Any improvement?
    (If either set of measures improves your sync performance, please post back to let us know which one helped for you.)

Maybe you are looking for

  • How do I make my PDF fill-in form "savable" for other team members?

    Hello, everyone!  Name is Petra; I'm an admin asst.  May I ask, I have created a form with Adobe Pro 8 (via Livecycle Designer) and I was wondering how do I make it savable for other people in my office?  I created it, saved it on "my" machine (which

  • How to reinstall OS X 10.8 without internet?

    Hey guys, I had a crash on my Macbook Air MD231 - Mid 2012, and my system won't boot, and  unfortunately my friend erase my partition from disk utility. Now I have three question 1)my internet speed is very low, for re-installing I have to download a

  • Updating SOL MAN 4.0

    Hello everybody We have just installed the Solution Manager that came with the NetWeaver 2004's Software box. We want to configure the Maintenance Optimizer but our level is SP06. How do we get the SP if we don't have the maintenance optimizer in lev

  • Time capsule and Apple TV2 ?

    Is it possible to use my Time capsule as itunes-server. So that i can stream movies directly to my Apple TV2 ?

  • How to install my 5.1 speaker system

    Hi, I'm going to purchase a new 20" iMac once Leopard is out in October, I will be moving from a Windows PC and would like to continue to use my Creative Inspire T6060 5.1 speaker set. I have noted that the iMac only comes with a headphone jack, curr