Youview stuck at nearly ready

Had my humax dt1000 about 10 months and now it just refuses to get past the nearly ready screen, have tried all the maintenance things from software update to full factory reset but says the latter cannot be performed, the last time I got past nearly ready there were no channels did the scan and stuck at 99%.is the box (hdd) broken ?

Hi Mattbbarratt,
Thanks for posting and welcome to the forum, please use the 'contact the mods' link in my forum profile to send in your details and we'll be happy to help you get this sorted. You can find the link by clicking on my username.
Cheers
Neil
BTCare Community Mod
If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

Similar Messages

  • Why are messages not dequeuing and stuck in the ready state?

    Messages are successfully enqueueing but not dequeuing and are stuck in ready state (STATE = 0).  The ENQ_TIME is 5 hours ahead of system time.  In one environment, AQ is working (10g 10.2.0.4.0).  In the other environment, it is not working (11g 11.2.0.3.0).
    I just did the following:
    1. Purged queue table
    2. Stopped queues
    3. Dropped queues
    4. Dropped queue table
    5. Created queue table
    6. Created queues
    7. Started queues
    I tested once and a record was inserted in the queue table:
    MSGID      <msgid>
    CORRID     
    PRIORITY      1
    STATE      0
    DELAY     
    EXPIRATION     
    TIME_MANAGER_INFO     
    LOCAL_ORDER_NO      0
    CHAIN_NO      0
    CSCN      0
    DSCN      0
    ENQ_TIME      12/23/2014 4:33:43.338902 PM
    ENQ_UID      <enq_uid>
    ENQ_TID      <enq_tid>
    DEQ_TIME     
    DEQ_UID     
    DEQ_TID     
    RETRY_COUNT      0
    EXCEPTION_QSCHEMA     
    EXCEPTION_QUEUE     
    STEP_NO      0
    RECIPIENT_KEY      0
    DEQUEUE_MSGID     
    SENDER_NAME     
    SENDER_ADDRESS     
    SENDER_PROTOCOL     
    USER_DATA      <user_data>
    USER_PROP     
    Notice the RETRY_COUNT is 0.  The ENQ_TIME is 5 hours ahead.  In the procedures to enqueue and dequeue, there are no errors.
    Following is the plsql to enqueue:
    CREATE OR REPLACE PACKAGE BODY
    pkg_2
    AS
        FUNCTION queue_create_thing ( <parameters> )
            RETURN NUMBER
        IS
            enqueue_options     dbms_aq.enqueue_options_t;
            message_properties  dbms_aq.message_properties_t;
            message_handle      RAW(16);
            v_message           msg_type;
            v_thing_id          things.id%TYPE;
        BEGIN
            v_message := msg_type( <parameters> );
            dbms_aq.enqueue(queue_name => '<queue name>',
                            enqueue_options => enqueue_options,
                            message_properties => message_properties,
                            payload => v_message,
                            msgid => message_handle);
            RETURN v_thing_id;
        EXCEPTION
            WHEN OTHERS
            THEN
               errpkg.record_and_stop (SQLCODE);
        END queue_create_thing;
        PROCEDURE queue_delete_thing( <parameters> )
        IS
            enqueue_options     dbms_aq.enqueue_options_t;
            message_properties  dbms_aq.message_properties_t;
            message_handle      RAW(16);
            v_message           msg_type;
        BEGIN
            v_message := msg_type( <parameters> );
            dbms_aq.enqueue(queue_name => '<queue name>',
                            enqueue_options => enqueue_options,
                            message_properties => message_properties,
                            payload => v_message,
                            msgid => message_handle);
        END;
    END pkg_2;
    Following is the code to dequeue:
    CREATE OR REPLACE PACKAGE BODY
    pkg_1
    AS 
        PROCEDURE create_thing ( context IN RAW,
                                    reginfo IN sys.aq$_reg_info,
                                    descr IN sys.aq$_descriptor,
                                    payload IN RAW,
                                    payloadl IN NUMBER )
        IS 
            dequeue_options dbms_aq.dequeue_options_t;
            message_properties dbms_aq.message_properties_t;
            message_handle RAW(16);
            message msg_type;
        BEGIN
            dequeue_options.msgid := descr.msg_id;
            dequeue_options.consumer_name := descr.consumer_name;
            DBMS_AQ.DEQUEUE(queue_name => descr.queue_name,
                            dequeue_options => dequeue_options,
                            message_properties => message_properties,
                            payload => message,
                            msgid => message_handle);
            pkg_2.create_thing( p_thing_id => message.thing_id );
            UPDATE table t
               SET creation_complete = 1
             WHERE id = message.thing_id;
            COMMIT;
        EXCEPTION
            WHEN OTHERS
            THEN
                ROLLBACK;
                plog.error(SQLERRM);
                plog.full_call_stack;
        END create_thing;
        PROCEDURE delete_thing ( context IN RAW,
                                    reginfo IN sys.aq$_reg_info,
                                    descr IN sys.aq$_descriptor,
                                    payload IN RAW,
                                    payloadl IN NUMBER )
        IS 
            dequeue_options dbms_aq.dequeue_options_t;
            message_properties dbms_aq.message_properties_t;
            message_handle RAW(16);
            message msg_type;
        BEGIN
            dequeue_options.msgid := descr.msg_id;
            dequeue_options.consumer_name := descr.consumer_name;
            DBMS_AQ.DEQUEUE(queue_name => descr.queue_name,
                            dequeue_options => dequeue_options,
                            message_properties => message_properties,
                            payload => message,
                            msgid => message_handle);
            pkg_2.delete_thing( p_thing_id => message.thing_id );
            COMMIT;
        EXCEPTION
            WHEN OTHERS
            THEN
                ROLLBACK;
                plog.error(SQLERRM);
                plog.full_call_stack;
        END delete_thing;   
    END pkg_1;

    Following is the code to create the queue:
    BEGIN
      SYS.DBMS_AQADM.STOP_QUEUE ( QUEUE_NAME => '<queue name>');
      SYS.DBMS_AQADM.DROP_QUEUE ( QUEUE_NAME => '<queue name>');
    END;
    BEGIN
      SYS.DBMS_AQADM.CREATE_QUEUE
        QUEUE_NAME          =>   '<queue name>'
       ,QUEUE_TABLE         =>   '<queue table>'
       ,QUEUE_TYPE          =>   SYS.DBMS_AQADM.NORMAL_QUEUE
       ,MAX_RETRIES         =>   5
       ,RETRY_DELAY         =>   0
       ,RETENTION_TIME      =>   0
       ,COMMENT             =>   'Queue for processing creation of things'
    END;
    BEGIN
      SYS.DBMS_AQADM.START_QUEUE
        QUEUE_NAME => '<queue name>'
       ,ENQUEUE => TRUE
       ,DEQUEUE => TRUE
    END;

  • UCCX agent stuck in Not Ready status

    Hi             There
    We are using uccx 7 and 1 agent's status stuck in the "Not Ready".
    We can not see his account in the supervisor but in the "Resource Cisco Unified Contact Center Express Stats" I can see his status is in Not Ready for more than 44 hours.
    Is there any way we can clear the session?
    Thank you in advance.

    Do you think there is an agent logged in and Not Ready, or do you think it's a hung session?
    If you think it's a real login, reboot the PC.
    If you think it's a hung session then you'll have to restart a service of two. I would just plan for a maintenance window and reboot the server along with your CUCM CTI Manager.
    Good luck and happy troubleshooting!
    Sent from Cisco Technical Support iPhone App

  • Free tape stuck as offsite ready?

    I have a tape that’s marked as “offsite ready” despite the fact that I “marked it as free” and subsequently erased it.
    It does not show up as belonging to any protection group and a detailed inventory on the tape doesn’t appear to change its status.
    It also does not show up in the tape management report as a tape ready for offsite despite being marked as such in the console.
    Any help in rectifying this?
    Thanks
    EDIT: sorry additional info, DPM 2012 R2 UR4.

    Sorry to hear about that!
    While we work on root causing/fixing that, you could probably try a workaround which might help here.
    Since the tape is erased/marked free and not associated with any protection group, you can remove the tape from DPM DB and perform inventory thereafter.
    Unfortunately removing tape from DPM DB is not supported in UI. However, you could follow the steps listed down in one of the forum threads to remove the tape from DB. Sharing snapshot of the thread below as pasting links is not working for me:
    To remove a tape media from the over due tape report, you can run a SQL script to remove the media from the DPM database.
    To run the script, perform the following steps:
    1)  Open the DPM console and under the reporting tab, double-click the "tape management" report and select the number of weeks you want a report for (up to 4 weeks).
    2)  Once the report opens- go to the page that list Over Due Tapes.
    3)  Make a note of the "Tape labels"  for the tapes you want to remove from the DPM database so they will no longer show up on the report.
    4) Make a backup of the DPMDB Sql database before proceeding using the following command:
         DPMBACKUP -db (The database will be saved in the C:\Program Files\Microsoft DPM\DPM\Volumes\ShadowCopy\Database Backups folder.
    5) Open SQL Enterprise manager and connect to the Server_name\$MS$DPM2007 instance. (For DPMM 2010 connect to MSDPM2010 instance)
    6) Under DATABASES - Highlight the DPMDB entry - then click on "NEW QUERY" button.
    7)  Copy / paste the following SQL script into the new query window.
    ---------- START COPY HERE -------------
    -- overdue tapes
    -- for clarity, set up the parameter as a variable
    declare @paramTapeLabel as nvarchar(256)
    set @paramTapeLabel = N'SAMPLE_TAPE_LABEL_NAME'
    -- keys
    declare @vMediaId as guid
    declare @vGlobalMediaId as guid
    -- if the delete gives trouble, add keyset after cursor
    declare cur_label cursor
     for select MediaId, GlobalMediaId
     from tbl_MM_Media
     where label = @paramTapeLabel;
    open cur_label
    while (0 = 0)
    begin
     fetch next from cur_label into @vMediaId, @vGlobalMediaId
     -- test for being done
     if @@fetch_status <> 0 break;
     print 'Deleting MediaId = ' + cast(@vMediaId as varchar(36))
     -- do a set of deletes atomically
     begin transaction;
     delete from tbl_MM_TapeArchiveMedia
      where MediaId = @vMediaId;
     delete from tbl_MM_MediaMap
      where MediaId = @vMediaId;
     delete from tbl_MM_ArchiveMedia
      where MediaId = @vMediaId;
     delete from tbl_MM_Global_ArchiveMedia
      where MediaId = @vGlobalMediaId;
     delete from tbl_MM_Global_Media
      where MediaId = @vGlobalMediaId;
     delete from tbl_MM_Media
      where current of cur_label;
     commit transaction;
    end
    close cur_label
    deallocate cur_label
    -------------- END COPY HERE ----------------------
    8)  replace the tape label name parameter in the script with the name of the tape label from the over due tape report that you want to delete.
            set @paramTapeLabel = N'SAMPLE_TAPE_LABEL_NAME'      <--- replace tape label between the single quotes ' '
    9) Execute the SQL script.
    10)  Repeat steps 8. and 9. for each tape label that you want to delete.
    Regards, Mike J. [MSFT] This posting is provided "AS IS" with no warranties, and confers no rights.
    I am not sure if this would work and hence do remember to backup your DB before trying out database operations
    Thanks
    Samir

  • I'm not nearly ready to buy a new computer. How can I keep using Firefox 16?

    Hi,
    I have an I-MAC 10.5.8 and am not about to purchase a new computer anytime soon. How can I keep using Firefox 16?

    You asked,
    Is Firefox 16 still secure for me to use?
    Right now Firefox 16 has the latest security fixes but it won't get future fixes. ''[https://blog.mozilla.org/futurereleases/2012/10/04/we-bid-you-adieu-spotted-cat/ On November 20th, Firefox will end support for users operating Mac OS X 10.5 (Leopard). After this date, users will stop receiving Firefox updates, including new features and security fixes.]''
    When will Firefox 17 be launched?
    November 20th, [https://wiki.mozilla.org/RapidRelease/Calendar according to the release calendar].
    And if I upgrade my Mac to Lion software (which I'm planning to do, but not immediately), will that work?
    Yes. The [https://www.mozilla.org/en-US/firefox/17.0/system-requirements/ Firefox 17 system requirements] listed for Mac include OS X 10.6 (Snow Leopard), OS X 10.7 (Lion) and OS X 10.8 (Mountain Lion).
    More information:<br>
    Here is a list of security vulnerabilities fixed in released versions of Firefox, for reference (you can check this page when Firefox 17 is released):
    *http://www.mozilla.org/security/known-vulnerabilities/firefox.html
    Here is a link to the Firefox 17 release notes (currently in Beta) showing what new improvements will be made:
    *http://www.mozilla.org/en-US/firefox/17.0/releasenotes/

  • YouView DTRT1000 box keeps locking up - advice ple...

    Hi,
    We've had a BT DTRT1000 YouView box for over a year now. In that time i can only recollect one maybe two occasions when it has locked up and needed to be powered off.  We have BT infitinity2 and a good strong TV signal which probably helps.
    In the last 3 days however something has changed.  It has locked up about 10 times becoming unresponsive to the remote or the front panel buttons.  The only option was resetting with the power switch on the rear of the box. Infact it just got stuck on the startup on the 'nearly ready' screen with the blue progress dots still moving.
    I did a check for new s/w and it says I'm up to date.  So I rang BT support yesterday and was told that I needed a s/w update and to do that I needed to do a full reset and will lose all my recordings.  I pointed out that it says I have the latest s/w but he said that wasn't really correct and only a full reset will get me the lastest software.
    I also asked if I could back soem of them up but was told that was not possible.
    I haven't done the reset becasue I'd quite like to not lose all my recordings.  Have I been given good information or does anyone have any better suggestions/advice?
    This is the current software status 
    Software Versions : last updated 2 July 2014
    Manufacrurer software 18.3.0
    Componnent software 2.5.6
    Platform config           1017
    ISP config                  220
    Thanks in advance

    Yes the box does have a trouble with hang ups compare to all my other boxes I have like humax freesat hd ,humax freeview hd 1 tb, cable boxes 3 types that recorded plus two tivo 1 tb boxes.
    My box freeze about once a month from getting the box last August and I have done a reset twice and need to power off and then hold on for some time for the data for the freeview epg to load then mix with the bt epg before you can check that all channels are there and working. The box does not like not being on for two days or more. The box does not like being rushed with operating systems like looking at the full channel guide then going to channel fully then change to players and looking through the listing it will freeze or go slower than before in operation.
    Its a bugy box of tricks but so were most others a sometime until software is right....

  • Original Humax Youview box - no picture.

    Hi.
    Over the month or so my Youview box has been behaving very oddly. When it wakes from sleep very often I get no picture and no sound. My TV says "no input" on the HDMI.
    The box starts booting with the "Nearly ready" graphic showing... then when the TV picture should appear I get nothing. The remote still works though and I can change channels.
    Sometimes it works fine. Sometimes turning it off and on again brings it to life. Sometimes the only thing that brings the box to life is to do a factory reset in maintance mode.
    Maybe this is a software issue? Has anyone else experienced this, or do any of the mods know what my course of action should be?
    Thanks!

    Sorry for the late reply - I've been away... Couldn't see a link in your profile for "contact the mods".
    I don't think is anything to do with the tuner, because the channel name and number are shown in the LED matrix display on the front of the Humax..
    I had a bad night with the box last night, just decided randomly to stop showing the picture and cut off the sound. Put it into standby and back on again and everything would come back to life.. Tried it this morning and got the purple screen. Powered off with the switch on the back, waited a while. Turned back on, this time I'm getting nothing - not even the "nearly ready" screen... But as ever, the channels are still shown on the LED display and Ican change channels with the remote.
    Looks like another maintance mode reset when I get home for work
    Should I just try to get customer services to send me a new box? Is that how this works? Haha. Any further help/suggestions/ideas would be appreciated!
    Thanks

  • YouView no picture but sound

    Hi,
    I'm new to this forum so I'm sorry if this is a repeat.
    Got back off hols today to find the YouView box would not start and gave me the 'Nearly Ready' for ages. After rebooting (off ad on) going through the Maintenance menu and Internet / USB Update Keep recordings, it worked for a while.
    Later on in the morning we got the first instance of sound, but no picture after about 30 - 45 mins of watching a programme. This time after rebooting we tried the Factory Reset Keep Programmes and once again it worked for a while.
    This afternoon it worked for probably over an hour, and then again stopped with sound but no picture. We have once again rebooted the box and now have the 'Nearly ready' again. 
    What do we try next?

    Hi
    MY first post also.
    I think I have the same problem as you...after a while (has been as short as 5 minutes or over an hour) for the last few days the picture disappears and I only get sound. After a little while longer the whole box freezes. Switching it off/on then turning it on doesn't seem to fix it immediately (it fails to boot, maybe a purple screen). It seems I need to leave it for a while so I'm wondering if something is overheating?
    Whatever the problem I suspect it is a hardware fault thereofre the box will need replacing!

  • Youview box starting up woes

    Hi Folks, I'm rather new to all this forum malarkey and not in the least bit technical but here goes.
    I returned from a week away this week to find my BT Youview box won't start up properly, having been left in standby mode and left on at the mains, (I was watching TV the day I left and it was working fine).
    Upon my return I used the remote control to turn it on which brought up the 'BT logo/waking up screen' followed by the Youview screen with the 'adjust eco mode' message followed by the 'Nearly ready' screen; at which point it cuts out and does all of the above repeatedly.
    I've turned the switch off and on at the back of the box which brings up a red light on the front of the box then a blue light as it restarts but it just does above cycle again.
    I've tried the factory reset by pressing the down arrow for several seconds as instructed which then brings up a maintenance message which the box doesn't respond to when I press standby. I've turned it off at the mains and again it cuts out after the nearly ready screen.
    I've had the box 9 months since upgrading to Infinity & its always been working ok up to this point. Does anyone know if it's possible to fix this as I would rather not have to put in a call to the BT helpdesk as I know from past experience its a misson to get anything resolved with them!

    KG40 - welcome to the community.
    Starting up the maintenance mode can be a bit fiddly  so always best to try the process a couple of times - Not sure which Youview box model you have - the guide to using the maintenance mode is at
    http://support.youview.com/articles/Self_Service_FAQ/How-do-I-perform-a-maintenance-mode-recovery-13...
    Given that you have been away - I would be inclined to try the following (seperately)
    -   -reboot your router/home hub and try again
    -  power off the Youview box , take out your ethernet cable from the Youview box  , power back on and see if it will start up.

  • 5800 XM lifestory - get your popcorn ready people

    Hello everyone. This is my first post here as I don't know where else to put it. It is quite long as it will go through alot of problems I have occured and I dont know what to do so please help. It may give you soloutions to some of your problems too.
    I recently got a Nokia 5800 XM with a 1 year music store download subscription card. I got this in August 2009. I started off using the phone as a rookie to Nokia s60 5th edition phones. All I could say was that I was greatly, very greatly, satisfied with the product. It exceeded all expectations and work flawlessly. Until the day when the phone did NOT recognise the 8gb memory card within and the photos in the gallery had their thumbnails missing (even though the photos were listed!). It was strange, this never happened before.
    This happened a few months later from the day i got it. I turned the phone off, took out the battery, put the memory card in, put battery back in and turned it on. The splashscreen with NOKIA in blue came up (as the phone vibrates and then starts). After that these things happened (to keep it short):
    A1) The first time i did this it asked for a lock code (i set it). I put it in and everything is OK.
    A2) Next day I turned my phone on, entered code, went onto home screen and stayed STUCK on it. I tried pressing the menu button but it would take about 2 minutes to get to the menu 2 5 minutes to load any sort of application!
    A3) Same day: I tried accessing the memory card from Windows XP computer (SP3). The computer froze and crashed.
    A4) Same day: I tried accessing memory card from PC suite by choosing PC Suite mode from the phone. This worked for a day and then this too would crash and cause the computer to end the program.
    A5) Same day: I tried accessing memory card by putting the phone into Mass Storage mode. This worked completely and I was able to back up some files (pics, songs, vids etc).
    A6) Next day: As a test I tried accessing the memory card from a different computer. I got the same results as in (2), (3) and (4). This test made me conclude that the memory card was corrupted (which was pretty strange as I never did take it out of the phone ever since I got it!).
    A7) The day after that I turned the phone on and guess what? It took about 20 minutes to get to the lock code and the touch screen was not responding to me pressing the numbers.
    I made the decision to format the memory card by using my computer (windows XP). I could access it through Mass Storage mode so it made things alot easier. I formatted the memory card WITHOUT uninstalling ANY of the applications  that were originally installed to the memory card. This, of course, was a bad move but I was desperate as I needed the phone to work. If you ever do install lots of applications onto a memory card (install them one by one) you will notice that even the phone memory gets used up very slightly. What happened was that I had half a program on the phone (including all of my music Licenses, phone locks and registry for alot of programs and themes).
    SO after the format I put the card back into the phone. It recognised it and showed the message that said something like, "Readying memory card". This took a few minutes but after that it went. I then immediately updated my phone to the latest firmware (which was v21 at that time) and put my backed up files onto it again. That fixed a whole load of errors from before.
    A few months later a few of the thumbails for my pictures went missing again. The day this happened the phone became slow and unresponsive too. I decided to update the phone's applications and firmware again. This, again, fixed the problem but not for long.
    In November 2009 my phone was slowly 'failing':
    B1) It would randomly switch off even during a use of any application and even when I was making a call.
    B2) NEW: every time my phone was left on its own for about 5 minutes the screen would only display lines of colour, not text or anything related to the GUI of the phone. Just lines. I noticed that the phone was stone-cold at that point. So a little heat (rubbing it in hands or leaving it in my warm pockets) would solve it and it did.
    B3) Making phone calls would take AGES! It took about 5 minutes for the sound that shows a connection to the other phone would come up!
    B4) No dial tones - sometimes when I dialled a number there would be no 'beep-beep' of the integers being put in (regardless if I was in Silent profile or General with the volume put at maximum)
    B5) Internet fail - the phone would not connect to any sort of connection wether it be mobile internet to any Wifi spot.
    B6) Transparent images - web graphics and transparent images that should normally blend in witht the background had, for some reason, a grey filling. This never happened before and I took note of it.
    B7) Facebook malfunction - when the new 'touchscreen site' for facebook came out, I was enthralled to see a site that uses the functions of the phone only (just touchscreen). However it worked fine for a few weeks but after that if I clicked on a name of one of my friends it would 'glitch' Basically the same page would load (before I clicked on someone) and the header of the page (that said 'Facebook' with the tabs 'home', 'profile', 'friends' and 'inbox' in a blue background) would all be DUPLICATED to the bottom of the page. This would happen again and again and they would act like separate 'processes' or 'pages' in one page only.
    B8) Facebook transparent glitch - the new touch site has a notifications area on the top-left of the screen. Normally it would show an image of a whiteboard with lines on it if there were no notifications. If there are it would show up as a red square with a number in it showing how many. This happens but the number has white 'cut outs' like scissors cut around it harshly leaving jaggy edges and pixels and NO transparency.
    B9) Connection to WLAN lost - this happened between 20 seconds and 30 minutes of connecting to ANY wifi spot.
    I checked for firmware updates and updated to v31 or v38 (one of those two). This fixed problems (3), (6) and (8) for another few months. After that I was happy with the phone even though it still had all the other problems.
    January 2010. A new year, a new hope and, of course, new dilemmas
    Phone was fine until the memory card got corrupted. How did that happen? I took a picture of my new barbecue machine and when it says 'processing image' underneath the battery DIED and the phone shut off. *sigh* I charged the phone and went to that picture that I took (when the battery died) and it had no thumbnail. This was expected. I opened it and it said 'corrupt file'. After that I deleted it but it couldnt delete it! I tried deleting it through 'File mgr.' and 'X-Plore'. Didn't work. Tried it through windows through USB mass storage. Computer crashed.  Took MMC out of computer. Computer magically fixed! Corrupt memory card. I didnt try it on another computer but I was sure the card had 'gone bad'. So this time I first backed up the stuff I wanted from there, uninstalled everything from the phone (except for some themes which I forgot) and then formatted the card.
    After the format I realised I missed the sisx themes to uninstall. They had not gone from the themes list but It showed that they were installed to the phone memory - something that I had NOT done before the format. I installed everything to the memory card.
    I slowly worked out (over the weeks) that everytime I installed something to the memory card there would be some sort of 'remnants' left behind after a format. I got this because after the 2 formats I got another problem and a solution:
    C1) Music player custom Equalisers - all had been deleted after the format and there were none in the list. However when I went to make a new setting and pressed 'OK' after choosing a name for it and setting the levels it would sound as if all the levels were back to 0. I rechecked and found that the name was saved as Preset 1 and NOT what I chose it to be (I named it 'My Own') and the levels were, in fact, back to 0. What I worked out was that if I wanted them back then I would just leave the name how it came up (Preset 1, Preset 2) and leave the equaliser levels on 0. Guess what it would be saved as?? The first one in the list before the format! It was called 'Pop my way' and the equaliser levels were exactly the same as before the format. I did the same thing 5 more times and I recovered all of my old custom equaliser levels and settings.
    C2) This is EXACTLY the same for the notes application. I had a full list of notes before the format and a blank list after the format. I just entered a blank note and they came up magically as my old ones with all the info' saved on them!
    February 2010 - I made a habit of checking for updates every week. The last update was on 29th December 2009 (software version 40.0.005 custom version 40.0.005.C03.01). Ever since then there had been no software updates. Just application updates. I updated my Nimbuzz application and there was something called Scribble Powered by Python. It was a drawing tool (4 MB?!?!) and turned your phone into a mini version of MS Paint. Rubbish! Didn't need that. Didn't install it. Got errors installed it and error gone.
    March 2010 - Unexpected breakdown of phone. Same problems as (A7, B2, B7, B8. B9) and a few new ones:
    D1) I went onto the Download! app. It wanted update. I gave it update. It changed to Ovi store. Looked nice, a bit sluggish and hard on the RAM but it was fine. I downloaded lots of stuff from there, it was a great app! UNTIL the dreaded update of version 1.05(611) which installed halfway and then somehow, unexpectedly, the progress bar would stop and then it would say 'update error' and close, leaving me blinking foolishly at the screen. I tried again and again and again. Same update, same error. Now there is a new one out and I cant update to that either because it says 'Update error'
    D2) Nokia Music Store application for my phone now cannot even get to the main screen from where i can search or choose tracks from. The only place I can get to is the store selector from which you choose what country you are from. If I click on UK (where I live) it displays an error message saying, "Music Store: Unable to perform operation". I had this error before on the web browser but it soon went later on. No matter how many times I click on it the same message will keep on coming and coming. I even tried the Music store from my PC which leads to the next problem.
    D4) Nokia music store for windows XP. Now updated to Nokia Ovi Player cannot and will not recognise, connect and sync the music from my phone in any of the USB modes the phone is on (PC Suite, Media Transfer, Mass Storage, Image transfer << NONE OF THOSE) this is something completely new and did NOT happen before the formatting of the memory card! The phone isnt even recognised in Music Store/Ovi Player and asks for a phone to be connected whereas PC Suite/Ovi Suite recognises it and fully works. I even tried pressing the 'Sync' button in Ovi Suite on the music page and it says something like 'Could not transfer'.
    D5) The ovi store application will NOT update from Ovi Suite. The error message given says: "Internal error - could not update ovi store".
    <<<<<<<<<<ALMOST FINISHED PEOPLE, JUST 2 MORE THINGS>>>>>>>>>>
    After all this rubbish I decided to do a full master phone reset to the phone memory only. I took out the memory card and did a hard reset. Everything back to normal. Updated everything on the phone. Put memory card back in..... 'readying memory card'... the smart thing was that it scanned the memory card and automatically installed ANY sisx, sis, JAR files automatically and put all the media files into the library automatically. Hence the name smartphone. I, on the other hand, didnt wait for it to finish as it was taking a good hour to do so and I tried cancelling it, tried to turn the phone off, took the card out and then put it back in (which worked but restarted the 'card-readying process') so i took the battery out as the phone went stuck on the readying bit, put it back in and turned it on. The apps were installed but only some of them were and the had their icons missing. This was expected as I had force-stopped the installation processes. I manually installed everything and all was back to normal.
    And now, I am here writing to you people to help me out because I have almost all the problems listed back into operation and I dont know what to do. I am not giving up yet - it took me a year of torture to get to this stage and I think I might win this battle
    So... any ideas for salvation?? lol

    That was something to read! - I don't know any exact solution to your problems.
    It might be your phones hardware, might be a false fw install, might be a corrupted memorycard or even a faulty memorycard making problems again and againg. And you might wanna take it to a Nokia care point for an inspection.
    But what I would check out is those themes and apps youre mention.
    I have both n97 and 5800 with no such problems, but I once had similar issues with my n95 8gb after installing a couple of "homemade" themes from different websites, zedge.com amongst others.
    I use nimbuzz on both of my phones, but have no trouble with it, but there could be other problems.
    Try also not to force stop any installation as things can get corrupted even though it seems ok in the first place.

  • I'm a student, non-earning, how can I get rid of this stuck pixel?

    I recently saved up for a Macbook Pro 13" (2010) for my graphic design college course and I cared for it as soon as it came. It suddently got a red Stuck pixel near the centre on the right. I'm really upset because I have only had it for about 3 weeks. I was going to use it to design and create on, but this red pixel keeps distracting me. 
    I have tried JScreenfix a few times, left it on for about an hour, still was there. I feel bad leaving the screen on for so long anyway, considered leaving it on all night, but don't want to if it won't work. I have also touched it a few times, but that feels bad.
    Any suggestions? I've booked an appointment with the Apple Store near me..

    Hi you have an excellent computer - leaving it on all night will not harm it. If you follow the instructions in the link below the battery should give you years of service:
    http://www.apple.com/batteries/notebooks.html

  • Stuck pixel on new MBP 13

    I bought the new MBP 13" the day they went on sale (feb 24) and I just noticed a stuck pixel near the bottom of my screen. Does Apple usually cover something like this within the first 30 days?

    Hmm, since you said that, they may be a minimum number of dead pixels acceptable until they will fix it. I believe I read that somewhere before. You won't get charged a restocking fee to return the computer, but you only had 14 days from your purchase date to return it (if you bought it directly from Apple). Looks like your past that date. You may be able to swing something by calling Apple, considering your machine is just 3 week sold.

  • IPod 3G stuck in recovery. Nothing is helping

    I am on vacation and stupidly left the iPod in the car, in the sun for 2 hours. I don't have my laptop and am using a friend's. I did a new install of iTunes. I have already tried: temporarily disabling the antivirus, using a new sync cord, and putting the iPod in DFU mode (nothing doing - I can't even get the power off bar to show up). iTunes recognizes the iPod, goes through recovery, says it has been successful, then kicks right back to "iTunes has detected an iPod in recovery mode..." I am nearly ready to surrender and just buy a "new to me" iPod off of Amazon

    Try disabling the computer's antivirus and firewall.
    - Next try the manual install method of:
    iDevice Troubleshooting 101 :: iPhone, iPad, iPod touch
    Place the iPod in recovery mode after the firmware download is complete and then restore using the instructions in the article. Sometimes recovery mode timeouts and returns to disabled before the firmware download is complete.
    - Then try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       
    The high temperature of being in the car may have caused damage. However, usually the battery gets damaged.

  • Ready to take it one higher ...need advice on best way to get more audio in

    Nearly ready to upgrade to LP7...need advice on more gear.
    Longtime Logic user, my old rig running with an Audiowerk 8 card (dont laugh too hard please, its worked great for years! ).
    Now, after purchasing a MBP and LE7 ... how best to upgrade even further, to be able to record say 4-8 tracks (live instrument) at a time, into the optical or Firewire ports. I have an external 750Gb FW drive.
    Also have a Mackie 16 chnl mixer and hoping to find a way to send the Master stereo pair (or maybe even track inserts) from the Mackie to the optical or FW input of my MBP. But how to do this ? Im guessing there's a box or gizmo somewhere that would be perfect.
    Unfortunately, all of the boxes and gizmos Ive looked at so far seem to duplicate functions I already have, esp mic preamps (dont need any more of those !). I prefer 19" rackmount devices as they work well with portability, and fit into my SKB rig easily.
    TIA

    Also have a Mackie 16 chnl mixer and hoping to find a way to send the
    Master stereo pair (or maybe even track inserts) from the Mackie to the
    optical or FW input of my MBP. But how to do this ? Im guessing there's
    a box or gizmo somewhere that would be perfect.
    if you really want to use the pre's on your mackie, and it has multiple bus/aux outputs which I presume it does, then you can easily set up a device such as the 828 to take all your input channels from the mackie, and then to run a bunch of return pairs back out to it.
    depending on your budget there are prob a few others for you to look at. RME and metric halo always get rave reviews from users, but are pricier. also the focusrite sapphire might be worth a look, as well as the apogee ensemble.
    also I just noticed you are using logic express, not pro. so there may be some limitations on the number of simultaneous inputs and outputs that I'm unaware of.

  • YouView is the worst TV experience I've ever encou...

    I've complained about my box being faulty and BT don't seem to want to replace it without running some kind of diagnostic tests. But that never happened. I'm not even sure what tests need to be run, it's quite obvious that the box is faulty. I added a video to YouTube to show how terrible it is: https://www.youtube.com/watch?v=Dag_xYtwocE
    - On most days the box has crashed and needs to be turned off at the plug before it works
    - Some days the box takes about 15 minutes to boot up. "Nearly ready"
    - Channels take too long to change
    - The remote is really laggy
    - On demand doesn't work, it just crashes the box
    - Cannot record certain channels (e.g. BT sport)
    It has been like this since we got it in July. This happens whether the ethernet cable is plugged in or not.
    All this has made me go back to Sky. I should have got my internet connection with them as well, and I will do as soon as I am able to get out of my BT contract.

    Or even a Box reset? What version of the software?
    Life | 1967 Plus Radio | 1000 Classical Hits | Kafka's World
    Someone Solved Your Question?
    Please let other members know by clicking on ’Mark as Accepted Solution’
    Helpful Post?
    If a post has been helpful, say thanks by clicking the ratings star.

Maybe you are looking for