C5 / facebook fails to open and close correctly

Hi,
I'm using a Nokia C5, up to date and fresh reinstall of the OS/firmware via OVI Suite.
On the very first facebook start I chosse the faster internet connection method and set it as a default. It starts at least once correctly, is usable and I am able to link contacts with friends. Suddenly when I open facebook it doesn't load profile pictures on the start screen, nor does it load profile, friends or message tab. It is possible to navigate trough the tabs, but only the homescreen shows some updates without pictures and loads endlessly. there is no content at all on the other tabs. I am able to create a message. In the options menu I can only open the about screen. Exiting the app via Option and Exit has no effect at all, I have to quit to homescreen via the Red Endcall button. The application cannot be open anymore now and is shown as running in the background. Upon restart of the phone I can reproduce the whole process.
Thanks in advance for any tipps,
Florian
Solved!
Go to Solution.

I have exactly the same problem from yesterday. An update was wanted in Facebook and the troubles began. I tried reset to factory defaults - not working. I tried Software update (just re-install, because I already got the newest one 032.010) - not working. I tried to restore to previous point (2 days ago) - not working.. Please advice me how to fix this manually, or should I visit a repair shop.. tnx in advance!

Similar Messages

  • My facebook doesn't open and closes suddenly. What is happening?

    I have made an atualization of facebook in the iphone and now it doesnt uploado and closes. What can it be?

    Quit all apps.
    Go to the Home screen and double click the Home button. That will reveal the row of recently used apps at the bottom of the screen. Tap and hold on the app in question until it wiggles and displays a minus sign. Tap the minus sign to actually quit the app. Then tap anywhere on the screen above that bottom row to return the screen to normal. Then restart the app and see if it works normally.
    Then delete the Facebook app.
    Next reboot your device. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.
    Finally, redownload the Facebook app.

  • The Apple trackpad won't except the "pinch open and close" command on Firefox version 4. It is configured correctly in the system preferences. HELP!

    I am using the Apple trackpad with Firefox version 4. The trackpad won't "pinch open and close". It is configured correctly in the system preferences. It also worked in version 3. Anyone have any suggestions?

    Do the related browser.gesture prefs on the <b>about:config</b> page still have a value set for those gestures?
    Which Firefox function should be performed with those gestures?
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />

  • What is the better way to open and close connection in bean

    Hello, may i ask about the best way to open and close the connection?
    At the first, the connection code is store in Conn class bean. The JSP page will call a method in Process bean to process the query and update of database. the Process bean is using th Conn to connect to database.
    In my process bean, it have a method for each type of sql like select, insert, update, and delete for each tables. Each method will call the Conn to open and close the connection. The jsp page can simply call a method retrieve or update records.
    However, when calling the processUpdate method, it is a method that update a group of tables base on the query result of another group of tables and calculation. If I calling the query method in the same bean file, it will open and close the connection many times (more than 1000 times). After open and close the connection several times, the connection to mySQL will be fail.
    Currently, i include 2 method in Process that is only calling the Conn to open the connection and close connection. When calling the openConnection method, it will also set the boolean connected in the class to true and call Conn to open connection. When calling the closeConnection method, it will also set the boolean connected in the class to false and call Conn to close connection.
    After that, i add some change to the query method which is when the connected is false, it will open the connection by calling the Conn and close the connection themself. If the connected is true, it will not call the Conn to open and close the connection because it already connected to the database.
    Now, i when i calling the query method in jsp, it can open the connection and close the connection individually. When i call the processUpdate in the jsp, this method will calling the openConnection before calling the query and calling closeConnection at the end. It not only faster the process(less open and close), it also no cause the connect to mySQL fail error again. However, it also make the coding in the bean file more longer and complex.
    Is there have any better solution?

    Use connection pooling. This will put the connection management in the hands of the webserver, not your code. Check out this post:
    http://forum.java.sun.com/thread.jspa?threadID=741788&messageID=4252932#4252932

  • Two intervals in Open and Close Posting Period (OB52)

    What is the purpose of the two intervals (period 1 and period 2) in Open and Close Posting Periods (transaction OB52)?

    Hi,
    Financial statements cannot be prepared on the last day of the accounting period... to find out the correct profit and to determine the correct financial positing... sometimes you may require to make some adjustment  to accounting records after the closing of the accounting year... like adjustments for expenses payable, income receivable, writting off bad debts ...etc. 
    For posting those transactions....period 2 is maintained ..which are also called as special periods... to make the postings in these periods ...special authorisation is required..... 
    Period 1 is for regular postings ...
    Radha

  • [bdb bug]repeatly open and close db may cause memory leak

    my test code is very simple :
    char *filename = "xxx.db";
    char *dbname = "xxx";
    for( ; ;)
    DB *dbp;
    DB_TXN *txnp;
    db_create(&dbp,dbenvp, 0);
    dbenvp->txn_begin(dbenvp, NULL, &txnp, 0);
    ret = dbp->open(dbp, txnp, filename, dbname, DB_BTREE, DB_CREATE, 0);
    if(ret != 0)
    printf("failed to open db:%s\n",db_strerror(ret));
    return 0;
    txnp->commit(txnp, 0);
    dbp->close(dbp, DB_NOSYNC);
    I try to run my test program for a long time opening and closing db repeatly, then use the PS command and find the RSS is increasing slowly:
    ps -va
    PID TTY STAT TIME MAJFL TRS DRS RSS %MEM COMMAND
    1986 pts/0 S 0:00 466 588 4999 980 0.3 -bash
    2615 pts/0 R 0:01 588 2 5141 2500 0.9 ./test
    after a few minutes:
    ps -va
    PID TTY STAT TIME MAJFL TRS DRS RSS %MEM COMMAND
    1986 pts/0 S 0:00 473 588 4999 976 0.3 -bash
    2615 pts/0 R 30:02 689 2 156561 117892 46.2 ./test
    I had read bdb's source code before, so i tried to debug it for about a week and found something like a bug:
    If open a db with both filename and dbname, bdb will open a db handle for master db and a db handle for subdb,
    both of the two handle will get an fileid by a internal api called __dbreg_get_id, however, just the subdb's id will be
    return to bdb's log region by calling __dbreg_pop_id. It leads to a id leak if I tried to open and close the db
    repeatly, as a result, __dbreg_add_dbentry will call realloc repeatly to enlarge the dbentry area, this seens to be
    the reason for RSS increasing.
    Is it not a BUG?
    sorry for my pool english :)
    Edited by: user9222236 on 2010-2-25 下午10:38

    I have tested my program using Oracle Berkeley DB release 4.8.26 and 4.7.25 in redhat 9.0 (Kernel 2.4.20-8smp on an i686) and AIX Version 5.
    The problem is easy to be reproduced by calling the open method of db handle with both filename and dbname being specified and calling the close method.
    My program is very simple:
    #include <stdlib.h>
    #include <stdio.h>
    #include <sys/time.h>
    #include "db.h"
    int main(int argc, char * argv[])
    int ret, count;
    DB_ENV *dbenvp;
    char * filename = "test.dbf";
    char * dbname = "test";
    db_env_create(&dbenvp, 0);
    dbenvp->open(dbenvp, "/home/bdb/code/test/env",DB_CREATE|DB_INIT_LOCK|DB_INIT_LOG|DB_INIT_TXN|DB_INIT_MPOOL, 0);
    for(count = 0 ; count < 10000000 ; count++)
    DB *dbp;
    DB_TXN *txnp;
    db_create(&dbp,dbenvp, 0);
    dbenvp->txn_begin(dbenvp, NULL, &txnp, 0);
    ret = dbp->open(dbp, txnp, filename, dbname, DB_BTREE, DB_CREATE, 0);
    if(ret != 0)
    printf("failed to open db:%s\n",db_strerror(ret));
    return 0;
    txnp->commit(txnp, 0);
    dbp->close(dbp, DB_NOSYNC);
    dbenvp->close(dbenvp, 0);
    return 0;
    DB_CONFIG is like below:
    set_cachesize 0 20000 0
    set_flags db_auto_commit
    set_flags db_txn_nosync
    set_flags db_log_inmemory
    set_lk_detect db_lock_minlocks
    Edited by: user9222236 on 2010-2-28 下午5:42
    Edited by: user9222236 on 2010-2-28 下午5:45

  • Apps open and close

    hello
    i have a iphone 4. My apps open and close immediatly. I can't use them.
    What can I do ?
    thanks for your help
    Chris

    Hey Chris,
    It just happened to me. If all the brought apps are closing immediately (and excluding the built in ones) then try either:
    1. Restart your phone.
    2. Hold the home button for the task bar and hold the app for a few seconds until they jiggle and a red cicle with a line in it shows up. Touch each one (this is just deleting them and "refreshing them", you aren't really deleting the app).
    3. Go to the App store and buy a free app, any, and install it. Try opening one of your apps now. This worked for me. If it works, you can go ahead and delete the free app.
    4. If all fails...restore your phone.
    Good luck!

  • Ipod touch 4 open and close during restore

    Hello,
              I have an error message code 2000. I use windows XP SP3. I ask to update but it was unable to do and ask for a restore. When i try to restore my ipod touch, the ipod touch close and open and at the end have the message that restore have fail on Itunes.
    I try to install newest version of itunes,
    I try remove all apple software product and reinstall it.
    I try to restart my computer
    I have try help pages from the Apple website
    I try to uninstall driver and reinstall it.
    The only things i have no try is trow it on the wall !!!
    I ask a technician at the applestore to take a look, but he use one mac computer that have only Itunes install and was able to do a restore, so he said that he have no knowledge to fix this problem and have 300 days waranty... Now 4 months past i try again to update my version... still have same annoying problem... Open and close than i have to restore without able to restore it at my home.
    Does anyone have the same problem?
    Have a solution found yet?
    Your help is greatly appreciate!

    Send it to Apple or a third-party place.
    Apple - Support - iPod - Service FAQ
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

  • I recently migrated my MacBook from 10.5.8 to 10.6.8, using the Snow Leopard CD I purchased from Apple. Since then I have noticed a strange ozone smell coming from the MacBook in the area where the hinges are to open and close the unit. I was told by Appl

    I recently migrated my MacBook from 10.5.8 to 10.6.8, using the Snow Leopard CD I purchased from Apple. Since then I have noticed a strange ozone smell coming from the MacBook in the area where the hinges are to open and close the unit. I was told by Apple that it probably is not serious and is coming from the fans in the MacBook. It is true that the smell/odor is more intense when the fans are working. Apple said I should take the MacBook to an Apple Store to have the hardware checked out. Everything seems to be working correctly. I am backing up automatically wirelessly to a Time Capsule, which I had not done until recently, although I had purchased the Time Capsule in 2009. I have not noticed this odor before. Does anyone suspect something more serious that may be going on?

    You may be smelling it because with the new OS the processor is having to work harder causing it to get hotter then it would with the other OS.  I can't say there is nothing wrong, but what could be happening is just that, it's getting hotter so the fan is spinning faster and moving more air so you are getting more of the smell then you would before.  I would still continue to back it up, and take it to the Apple Store at a Genius Bar and have them look at it to make sure.  Was the computer ever in a smoky environment??

  • IPad mini acting strange. Apps open and close randomly. Any ideas?

    My iPad mini acts strange. Apps will randomly open and close and I have no control over it. I have reset it to factory and started all over but it is still doing it. Any ideas on what I should do?

    If the unit has NEVER been jailbroke, first try a system reset.  It cures many ills and it's quick, easy and harmless...  Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  It could take well over an hour!  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow the on-screen directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore, go into Recovery Mode per the instructions here.  You WILL lose all of your data (game scores, etc,) but, for the most part, you can redownload apps and music without being charged again.  Also, if you have IOS-7, read this.

  • Can Photoshop 6 documents open and work correctly in CS3 ?

    I just need to know if graphics that I have created in Photoshop 6 will open and work correctly in CS3, which I will be running in Windows XP ?
    I need to make sure that all of the layers will still be there, that the colors will be correct, etc... can anyone please help inform me correctly on this ?

    Congrats on your move up to modern software! 
    Sorry, couldn't resist.
    Actually, there are a lot of things to love about Photoshop CS3 as compared to 6.0.
    Keep in mind you can keep them both installed, assuming you have plenty of disk space, so if you find there's something you just can't find in CS3, you can always close down CS3 and fire up 6.0 (they can't both run at exactly the same time, even though they can coexist on the same computer).
    -Noel

  • I'm trying to draw a candlestrick chart without using the open and close fields

    I'm trying to draw a candlestrick chart without using the
    open and close fields, however I am seeing nothing on the cart. The
    horizontal and vertical axis are displaying their labels correctly
    for the data. Any ideas what is going on here?

    "nikos101" <[email protected]> wrote in
    message
    news:gi5rh4$ptn$[email protected]..
    > Is it not to draw the line between the high and low
    then? The data I
    > recieve has no open and close data :(
    >
    I've never seen a candlestick that didn't have all 4
    properties.
    You may find the floating columns do what you want here
    http://demo.quietlyscheming.com/ChartSampler/app.html
    or possibly the
    vertical line type will work for you.
    HTH;
    Amy

  • Control valve that opens and closes linearly using DSC

    I have to create a control valve that opens and closes linearly.I want to view its variation in percentage wise in the graphical form which uses DSC module.

    Hi Gerardjoe,
    I'm not sure that I completely understand what you're trying to do. In the DSC modules, the valves (2D and 3D) are simply boolean indicators.
    One thing you could do, to see some sort of a percentage change, would be to have an indicator such as a vertical fill slide. Here, you would put a number between 0-100.
    Then, you could have a comparison, such that if this value was over, say, 60, then the boolean value would be true and the valve would turn on. Else, the value would be false and the valve would stay false.
    I hope that this answers your question; if I did not understand correctly, please do respond and clarify.
    -Sam F, DAQ Marketing Manager
    Learn about measuring temperature
    Learn how to take voltage measurements
    Learn how to measure current

  • Find open and close smart quotes

    Dear scripter,
    Here I am trying find whether all the open double smart quotes(") are closed with close double smart quotes("). Here is my small work to find how many open and close quotes.
    myopenqu=app.activeDocument.search("^{", false, false, "^{");
    myclosequ=app.activeDocument.search("^}", false, false, "^}");
    myopenqulength = myopenqu.length;
    myclosequlength = myclosequ.length;
    if(myopenqulength!=myclosequlength)
    alert("Quotes not matched\n"+ myopenqulength +" Open quotes found\n" + myclosequlength +" Close quotes found")
    It works well, the script just alert if I have 25 open quotes and 23 close quotes
    Quotes not matched
    25 Open quotes found
    23 close quotes found
    Now I want to find the quote set where the 24,25th set close quotes are missing?
    Is there any way to find the misisng quotes
    Thanks in advance
    regards
    a r u l
    vpublish.net

    You'd have to look for unmatched quotes, in this case two cases of two open quotes without an intervening closed quote. This is difficult to script in CS2 because it doesn't have GREP natively and because of footnote problems. In CS3/4 it should be possible. But even then it will work only if you don't have quotes within quotes.
    Peter

  • Report OPEN and CLOSE in computers client

    Post Author: B.prata
    CA Forum: Crystal Reports
    I have an application developedin Visual Basic with report in the CR 4.6, but in the computers customers when I will access the application,I try to emit a report , it opens and close the report. What can be?

    There is no FaceTime app for the iPhone if that's what you're asking.  FaceTime is accessible through your Contacts as one of the options in how to contact a person -- there is no standalone FaceTime app for iPhone.
    If you mean how to disable FaceTime, you can do that in Restrictions (Settings/General/Restrictions).

Maybe you are looking for

  • No access point name on E51

    i have already configured Access Point named MI. I use it to browse internet and many applications. Whenever i open Nokia Internet Radio Application it does not show MI Access point but only shows Easy WLAN. Can you help me to fix this

  • Lost Sequence in FCP7 - both in project and in Autosave!!!

    Hey, I've encountered a strange problem with fcp7. I was working on something last night, saved it and when I opened the project this morning, that particular sequence is empty but for one clip. Everything else in the project is intact, including all

  • What are the simple to use COM library in your java code

    Hi, what are the simple to use COM library in your java code

  • Messaging / VoiceOver problem

    When replying to an SMS when VoiceOver is turned on the keyboard does not appear. Instead I get VoiceOver telling me that the cursor is at the end of the text box or the start of the text box. VoiceOver must be turned off, the SMS box tapped before t

  • RSS updating - Episodes in iTunes - many questions

    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=262855503 First off, I am completely HTML stupid. I bought a mac, bought a .mac account and started making podcasts in garageband. Two nights ago I uploaded my fifth episode, just like