I need help with my Nokia 5800 update to v40.0.005

Hey im having trouble with updating my Nokia 5800 to v40.0.005.
The version on my phone at the moment is v21.0.025 and when i try to update it on my phone it says no update available.
I tried downloading Nokia Update Software and getting it from there but the program wouldnt work either.
Is there any other way i can get the v40.0.005 were it should work? or even getting the knetic scrolling and applications without needing to get v40.0.005?
Please need help!
Thanks
Solved!
Go to Solution.

Under your battery, there's a product code on a sticker (X: 0586707). Go here: http://europe.nokia.com/support/download-software/device-software-update/can-i-update and type in your productcode to see if there should be an update for your productcode. If there's not, you could take your phone to a Nokia Carepoint and ask if they could do it - no promises. Or else you have to wait untill your productcode gets it.

Similar Messages

  • Hi i need help with my nokia e63 can someone pleas...

    i need help with my nokia e63 all the images on the web have really small when they used to be regular size and it has nothing to do with the zooming settings. someone please help.

    Cannot send or received email
    http://www.apple.com/support/ipad/mail/

  • Need help with the Nokia N8 or I need to send it b...

    I purchased a new N8 from Amazon and I have had nothing but issues. It has been very disappointing and I need to know if it the new firmware will fix any of these or not.
    1. Once a day, while I am on a call, the phone says "insert a SIM card" and then reboots. I have to then turn off (after the reboot), release and reinsert the SIM card and restart. This works about 75% of the time. I have seen this issue reported on here but not answers.
    2. Accuwearther widget stopped working. I called accuweather and they said:
    Thank you for making AccuWeather.com your source of weather information on the go! We are aware that the widget will get stuck in a ?Loading...? mode which does not allow you to view the weather. We have contacted Nokia and have been informed that the application is not having an issue but there is a bug within the phone build that is causing this message. While we regret to inform you that we do not have a timeline from Nokia when to expect this fix,....
    Is there a fix coming?
    3. You cannot manually setup an IMAP Gmail account. The wizard forces you into the default POP3 and then my mail is not synced. I have tried MfE but then HTML does not work correctly.Any chance this can be fixed.
    4. I cannot use data and voice at the same time. During the long drive today, I tried a to navigate while on a conference call. It says "cannot find connection". I had to end the call, update the maps and then redo the call "10 TIMES". I know AT&T supports this because my E71 works fine. What happened to this feature.
    5. The GPS is funky. I walked to a local tavern using the maps. When I got inside, I tried to update my location on Facebook for my friends to find me, but it kept saying that I was 4 blocks away. I thought the GPS/aGPS would be better.
    6. There are only two social networks I can update. **bleep**?
    7. WfE keeps failing on replies.
    8. I cannot get out of "Battery Save Mode" I have released it about 20 times and it still asks me if I want to get out (this could be the data/voice problem above).
    I have switched back to the E71 and am going to send this back to Amazon unless there is a major update on the way.
    I don't mean to rant but as far as quality, this is terrible. Shame on you Nokia. Here is your chance to at least gain back some customers and you put this in the field.
    Don

    Ok, I have to say I was really impressed by the effort. Nokia Support (in The Philippines) called me 4 times over the last 2 days to help with my phone.
    Here is there responses have put them in order of my questions.
    1. I am to reinstall the operating system on the phone. They said that this is the most likely (but not confirmed) fix to the SIM card problem (although they would not confirm it was a problem with the phone).
    2. No answer because we did not get that far.
    3. To setup a gmail IMAP account you MUST us Nokia messaging. Period. Since I have security concerns, that is out of the question.
    4. This is the big one that stopped it. The Nokia N8 is a Class B cell phone meaning that you cannot use data and voice at the same time. They told me that all Nokia phones were Class B, but I told them my E71 is not. After research, I found that the E71 and E72 is Class A (Can do voice and data at the same time) and that the N8 is Class B. Here is an article explaining the difference. This was a deal breaker. I cannot access the internet while I am on a call. Reminds me of a dial up modem.
    5. Reinstall the software and it might fix it.
    6. No answer.
    7. Use Nokia Messaging.
    8. Reinstall the software and it might fix it.
    So, I am sending the phone back because I cannot use it. I cannot imagine a smart phone on the market that cannot do internet and voice at the same time.
    Too bad.The N8 is a terrific camera and you should buy it for that, but look elsewhere for a smartphone.
    Thanks to all that read and helped.
    Don

  • I need help with a NOKIA 7370!!!

    Hello! Please help with this problem. The display is crashed and I need to forward a message that i have recieved on my phone. can someone plese guide me step by step to do this. someting like go to the menu....message......to the message you want to forward...and how many spaces do i go down to select the option forward message ...and type the number i want to send it to?
    I need someone with the same phone to guide me through the keystrokes .
    Thank you!

    Yes, I belive you have good reasons to ask me this question
    The fact is that I just got the phone and he SIM card that it is inside.And nobody know the number  I never used it. And I sent a message on it with some information I really need to know hat it is written down somewhere. Unfortunately the phone is broken and can`t see it anymore.It is the only message I have.
    Well anyway if there is anyone who can help me please do! I know it will take some time to guide me step by step but it would really help me!
    Thank you!

  • Need help with Bulk Collect ForAll Update

    Hi - I'm trying to do a Bulk Collect/ForAll Update but am having issues.
    My declarations look like this:
         CURSOR cur_hhlds_for_update is
            SELECT hsh.household_id, hsh.special_handling_type_id
              FROM compas.household_special_handling hsh
                 , scr_id_lookup s
             WHERE hsh.household_id = s.id
               AND s.scr = v_scr
               AND s.run_date = TRUNC (SYSDATE)
               AND effective_date IS NULL
               AND special_handling_type_id = 1
               AND created_by != v_user;
         TYPE rec_hhlds_for_update IS RECORD (
              household_id  HOUSEHOLD_SPECIAL_HANDLING.household_id%type,
              spec_handl_type_id HOUSEHOLD_SPECIAL_HANDLING.SPECIAL_HANDLING_TYPE_ID%type
         TYPE spec_handling_update_array IS TABLE OF rec_hhlds_for_update;
         l_spec_handling_update_array  spec_handling_update_array;And then the Bulk Collect/ForAll looks like this:
           OPEN cur_hhlds_for_update;
           LOOP
            FETCH cur_hhlds_for_update BULK COLLECT INTO l_spec_handling_update_array LIMIT 1000;
            EXIT WHEN l_spec_handling_update_array.count = 0;
            FORALL i IN 1..l_spec_handling_update_array.COUNT
            UPDATE compas.household_special_handling
               SET effective_date =  TRUNC(SYSDATE)
                 , last_modified_by = v_user
                 , last_modified_date = SYSDATE
             WHERE household_id = l_spec_handling_update_array(i).household_id
               AND special_handling_type_id = l_spec_handling_update_array(i).spec_handl_type_id;
              l_special_handling_update_cnt := l_special_handling_update_cnt + SQL%ROWCOUNT;         
          END LOOP;And this is the error I'm receiving:
    ORA-06550: line 262, column 31:
    PLS-00436: implementation restriction: cannot reference fields of BULK In-BIND table of records
    ORA-06550: line 262, column 31:
    PLS-00382: expression is of wrong type
    ORA-06550: line 263, column 43:
    PL/SQL: ORA-22806: not an object or REF
    ORA-06550: line 258, column 9:
    PL/SQL: SQMy problem is that the table being updated has a composite primary key so I have two conditions in my where clause. This the the first time I'm even attempting the Bulk Collect/ForAll Update and it seems like it would be straight forward if I was only dealing with a single-column primary key. Can anyone please help advise me as to what I'm missing here or how I can accomplish this?
    Thanks!
    Christine

    You cannot reference a column inside a record when doin a for all. You need to refer as a whole collection . So you will need two collections.
    Try like this,
    DECLARE
       CURSOR cur_hhlds_for_update
       IS
          SELECT hsh.household_id, hsh.special_handling_type_id
            FROM compas.household_special_handling hsh, scr_id_lookup s
           WHERE hsh.household_id = s.ID
             AND s.scr = v_scr
             AND s.run_date = TRUNC (SYSDATE)
             AND effective_date IS NULL
             AND special_handling_type_id = 1
             AND created_by != v_user;
       TYPE arr_household_id IS TABLE OF HOUSEHOLD_SPECIAL_HANDLING.household_id%TYPE
                                   INDEX BY BINARY_INTEGER;
       TYPE arr_spec_handl_type_id IS TABLE OF HOUSEHOLD_SPECIAL_HANDLING.SPECIAL_HANDLING_TYPE_ID%TYPE
                                         INDEX BY BINARY_INTEGER;
       l_household_id_col         arr_household_id;
       l_spec_handl_type_id_col   arr_spec_handl_type_id;
    BEGIN
       OPEN cur_hhlds_for_update;
       LOOP
          FETCH cur_hhlds_for_update
            BULK COLLECT INTO l_household_id_col, l_spec_handl_type_id_col
          LIMIT 1000;
          EXIT WHEN cur_hhlds_for_update%NOTFOUND;
          FORALL i IN l_household_id_col.FIRST .. l_household_id_col.LAST
             UPDATE compas.household_special_handling
                SET effective_date = TRUNC (SYSDATE),
                    last_modified_by = v_user,
                    last_modified_date = SYSDATE
              WHERE household_id = l_household_id_col(i)
                AND special_handling_type_id = l_spec_handl_type_id_col(i);
       --l_special_handling_update_cnt := l_special_handling_update_cnt + SQL%ROWCOUNT; -- Not sure what this does.
       END LOOP;
    END;G.

  • I need help with my nokia 9210...please take just ...

    i have 2 main questions and problems at the same time....
    first...can anyone help me with the all_nokia_9210_data.sis?
    my phone is worthless without them....
    and second...can s60 platform be installed on 9210?because i tried to run s60 apps and is requies is...please help me.......thank you so much...promise i will help you with everything i got for 9210
    Moderator note: E-mail address removed.Message Edited by sphere_s on 10-Dec-2007 05:25 AM

    08-Dec-2007 12:25 PM
    xardas wrote:
    can s60 platform be installed on 9210?Moderator note: E-mail address removed.Message Edited by sphere_s on 10-Dec-2007 05:25 AM
    You can't use S60 apps on 9210. And why would you need to From 3rd party sw, you usually see supported platforms. If S80 or 9210 is not mentioned, no need to buy that sw for 9210. Again, platform can't be updated to different version. 9210 has royal S80 platform, why would you like to downgrade that.

  • I need help with my Nokia 6820

    I'm trying to sign on AIM but then it's saying that it's not connected to a server. How is it not connected to a server?? this is a very old phone of mine and i'm sick of using my Motorola so i switched it back to this Nokia 6820 after a few years. do you think because it's really old it wouldn't work? Or...because this is another SIM card. but I really want to work with this IM client because i remember it DID work before. Explanations anyone? thanks : )

    08-Dec-2007 12:25 PM
    xardas wrote:
    can s60 platform be installed on 9210?Moderator note: E-mail address removed.Message Edited by sphere_s on 10-Dec-2007 05:25 AM
    You can't use S60 apps on 9210. And why would you need to From 3rd party sw, you usually see supported platforms. If S80 or 9210 is not mentioned, no need to buy that sw for 9210. Again, platform can't be updated to different version. 9210 has royal S80 platform, why would you like to downgrade that.

  • Need help with sync nokia E65 with mac

    hello,
    I tried to sync my e65 with my macbook [os X leopard] with isync but its not supported. Tho, I read in your site that after adding a plugin, it should work. I tried to find this plugin but your site says links are broken.
    I want to sync my contacts and calendar, i prefer using isync, but if theres another way to backup my info, please let me know.
    eden

    Hi eden100990
    No problems with this link at time of posting: http://europe.nokia.com/A41423552
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • HT4623 Need HELP with this ..since updating my 4S iphone today

    After updating my 4s phone, I suddenly have every facebook friends contact info in my contact list on my phone...all 1000 of them... NOT GOOd... some of them I only play games with.  Where did that come from and how do I get rid of that feature?

    I figured it out...   there is a place on the main contact page where you can actually uncheck Facebook...or check it

  • I need help with java Time Zone Updater for Venezuela Time Zone

    Hi,
    I've run the latest Time Zone Updater (1.3.5) on JRE 1.4.2. It is supposed to support the time zone changes for Venezuela. The problem is that when I set my Windows time zone and run java.util.TimeZone.getDefault() it says that I am on GMT instead of GMT-04:30.
    Am I doing something wrong?
    Thanks in advance for your help.

    I have found the solution for cases in which you cannot update your JRE to anything further than 1.5. You will have to create an extra entry in the Java tzmappings file as follows:
    Venezuela Standard Time:90,90::America/Caracas:After doing this, you will have to create a new String Value in your Windows registry for the HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones\Venezuela Standard Time Key as follows:
    Name: MapID
    Value: 90,90
    Best regards.

  • Z68-GD65 G3 Need help with half bricked BIOS update

    Sorry if this should be in the BIOS forum, wasn't 100% sure.  Long story short...
    i2600k
    16GB Corsair Ram
    Crucial M 128GB
    GTX460
    I was trying to update the board to the latest BIOS.  I didn't realize the file/method from the MSI website was so problematic.  I ran E7681vP8.exe from within windows, the BIOS was updated and it then rebooted the system to update to ME8.  It never got to the ME update and I was stuck in an infinite reboot loop.  Power on for 10 seconds, then off, then back on again.  Tried everything I could think of to get the system back.  Cleared CMOS via button and battery, no change.  Rotates ram sticks in slot 2, disconnected everything but USB keyboard and plugged the monitor into the DVI port on the board, no change.  This was last night and I had already setup my RMA when I decided to try one more CMOS clear this morning before packaging everything up.  Well the Gremlins decided to let it power on and POST this morning!  I hit F1 to enter setup and here is the problem...
    It's now asking me to insert my USB key I'm assuming to now do the ME8 update... Well I formatted the USB drive I was using with the forum tool last night in an attempt to revive the board, so I don't have the extracted files from the MSI EXE from the website.
    I downloaded the EXE again, but I can't get it to run/extract the files since it's only set to run on this board (I'm on a Lenovo laptop).  I tried  WinRAR, 7-Zip, and Universal Extractor on the EXE to try and just get the files back on the USB.  None of those work.
    So the system is on and I'm stuck at the screen asking for the USB key.  I don't want to power it off/cycle it in case that screws up the update somehow.
    Can someone else with this board download the EXE directly from MSI, run it on a USB key (you don't have to update the BIOS to get the files to extract) and maybe upload the contents?  Or Mods do you have another suggestion on how to continue?
    Thanks!

    Quote from: jmunchies1 on 02-April-13, 07:23:05
    Well I'm REALLY regretting upgrading to this BIOS as it's killed my overclock :(
    Before I was stable with a 2600k @ 4.5Ghz with just 1.325 vcore.  Now I'm up to 1.35 vcore and I'm still not stable :(  Keep getting this BSOD:
    "A clock interrupt was not received on a secondary processor within the allocated interval".
    IBT and prime95 keep causing that BSOD.  I don't understand why the BIOS update is requiring such a huge increase in vcore.
    Because it is a 'compromise' UEFI/BIOS designed to allow function of both Sandy and Ivy CPUs on a mainboard originally designed on the Sandy Bridge platform. It's a shame that the GD65(G3) Ivy update does not function as well as the GD80(G3) vJ21 version does.

  • New to ABAP -- Need help with any BAPI to update the vendor master record

    I have a requirement to update the vendor master record ( ie purchasing block data inlfa1 and lfm1 table )directly. i have created the report but my problem is i am updating tables directly by using modify which is not correct according to SAP hence i want to use bapi whereby i can change the fields of the table. does anyone know any bapi which can modify the lfa1-sprem field and lfm1-sperm field. Plz hep me. They have specifically asked me to do it using BAPI's.

    MAP2e_lfa1_to_bapivendor_04
    MAP2e_lfa1_to_bapivendor_05
    will be helpful

  • Need help with DVD model/Firmware update info

    I am sorry to post here but have found no other way to try and get help or information about a Toshiba, (supposedly) slim style internal DVDRW unit, TS-632H, for our computer.  The label on the unit says Toshiba Samsung, and the complete number on the label is Tsst corp CDDVDW TS-632-H. (This is what is also shows in Device Manager/Properties for the unit.  We are trying to find the (real) model of this unit so we can determine the firmware version to make sure we have the latest version on the unit and to see if there are any specific drivers for the unit.  Thank you for your help and again, sorry if this may be the wrong forum and maybe directing us to an appropriate forum would be appreciated if there is such one.  Thank you.
    Message Edited by Cmptrguy on 04-12-2009 04:11 PM

    The information you see in the Device Manager is correct. If you can furnish the full model# be of great assistance.  There, try this-- Free Download TSST DVD Drive Firmware for Toshiba Notebooks  You should be concerned that the driver is up to date as it more of an asset to you.

  • HT4528 need help with i phone 4 update and restore

    When i was at dinner tpnight my i phone lockrd up and now it says activate and i cannot get to settings menu

    so what have you done to troubleshoot?

  • HT4061 need help with my iphone 4 i try to update last five  days but after updating to 6.1.2  it says that    We're sorry, we are unable to continue with your activation at this time. Please try again later, or c

    need help with my iphone 4 i try to update last five  days but after updating to 6.1.2  it says that
    We're sorry, we are unable to continue with your activation at this time. Please try again later, or c

    If the iPhone was hacked and unlocked via unofficial means, it has become locked again. Insert original SIM in the phone to activate with iTunes.

Maybe you are looking for