Ovi Maps work, then hang after a period of time

Hi,
When I use Ovi maps for navigation, I am able to set up my route, but then after a period of say 10 or 15 minutes, the application hangs and the screen freezes on the last know location.
I then have to exit out of the app, either by resetting the phone or sometimes just exiting.
I am then able to set up my route, where again after 10 mins or so it freezes
I have the latest firmware that is available in the phone, 21.0.004
The version of maps I am using is V3.04
I have performed several full factory / system resets, ie where I setup the country and time
I have no third party apps installed
I do also notice that quite often the email app does not always automatically push emails to me device, so I again have to turn it off and then back on for it to pick up my emails.
So I think in summary my device keeps half hanging, if that is possible
Anyone have any ideas what I can do before taking the device to my local Nokia service centre?
Thanks.
Solved!
Go to Solution.

ok, I now have a fix,
Not that anyone was able to assist, but it may help some one in the future.
I spoke to T-mobile and explained that Ovi maps works when the phone network connection is switched off, but hangs after about 10mins, when the network connection is switched on.
The guy from T-Mobile then went on to say that there are a choice of two configurations that can be applied to my account, that control picture messaging (Yes I did say picture messaging) He went on to say that he would swap me to the alternative method for picture messaging.
I assume that picture messaging just controls the down and upload of data, so impacts the data throughput.
Anyway, he changed my setting on the account, and to my amazement when I went and tested out on the road Ovi maps no longer hung, and now works very well! 
My biggest shock was that T-Mobile sorted this all out for me in 10 mins! althought it has taken me many months of testing and trying different things
Cheers

Similar Messages

  • JE - Hangs after a period of time.

    Hi,
    I am relatively new to the world of Berkeley DB so please forgive my seemingly meandering request for help.
    I am writing an application which requires 8 hashtable or map structures. These data structures are prohibitively large and thus I require disk access. Persistence is not an actual requirement of the system, merely that the hashtable structures be arbitrarily scalable. The system I am running is single threaded, reading from a file and storing certain key/value pairs which are continuously read and infrequently updated (once off file analysis).
    I have afforded 3G of heapspace to the system and given seven of the hashtables 5% cache size, and a more frequently accessed hashtable 25% cache.
    After a given period of time, my application slows from processing approximately 2M input lines per minute to a single input line consistently every five minutes. This has continued for a number of hours. The time is not spent in the read or write methods of the hashtables (calls to which are in single figures) and is not used up by other parts of the code (I have tested the code without the hashtable features and it scales linearly: no slow down). Also, I have checked the garbage collection and it is not a problem with only minor collections running very quickly. CPU usage is minimal.
    My question is simply, where is the time being spent? Also can anyone suggest a better configuration? I just want 8 simple hashtables that overflow onto disk as heap space requires. Performance is so bad, I question the utility of tweaking but instead would hope that someone points out any glaring mistakes I have made in my implementation.
    The sizes of the hashtables at slow down are as follows:
    299462, 174978, 3543871, 304504, 1173250, 557360, 1859511 (5% cache)
    50429 (25% cache)
    Key size is about 40 bytes. Value size is somewhere in the low hundreds of bytes range.
    Version is je-3.2.76
    The following is my constructor... No changes are made to the database or environment setup outside of this. The only other interaction with the databases are through simple get() put() methods.
    public PersistantHashtable(String rootDir, int cachePercent, Class c) throws IOException, DatabaseException {
    DatabaseConfig dbConfig = new DatabaseConfig();
    dbConfig.setTransactional(false);
    dbConfig.setAllowCreate(true);
    dbConfig.setDeferredWrite(true);
    Database catalogDb = env.openDatabase(null, "catalog", dbConfig);
    ClassCatalog catalog = new StoredClassCatalog(catalogDb);
    SerialBinding keyBinding = new SerialBinding(catalog, Node.class);
    SerialBinding dataBinding = new SerialBinding(catalog, c);
    _db = env.openDatabase(null, name, dbConfig);
    ht = new StoredMap(db, keyBinding, dataBinding, true);
    Some typical garbage collection output:
    [GC 2906686K->2067991K(3040896K), 0.0108480 secs]
    [GC 2906903K->2067724K(3040896K), 0.0106010 secs]
    Thanks for your time. Hope you can help ;).

    Thanks both for your time. I suppose my first direct
    question is whether or not it is advisable from a
    performance point of view to re-use the same
    environment for each of the eight database
    structures?Yes, the normal and best performing choice is to have a single environment for all databases.
    Secondly, can anyone provide any insights into
    whether I can expect more reliable performance from a
    StoredMap or StoredSortedMap? I would expect that the
    former is based on a HTree implementation and the
    latter a BTree. I only need the functionality of the
    former, but would be happy to use whichever in
    anyone's experience is the more reliable.JE only provides a Btree. The StoredMap and StoredSortedMap have the same underlying storage -- both are in fact sorted since a Btree is always used.
    My third question is as to whether the cache percent
    parameter is reasonably well behaved and implemented
    using strong references, or whether it still relies
    on soft/weak references to be reclaimed by garbage
    collection. Previous incarnations of the code got
    hammered by garbage collection, so I would almost
    prefer a system with little or no cache as opposed to
    one with high object churn that hammers performance
    because of garbage collection.The JE cache uses strong references. No weak/soft refs are used.
    On the topic of using top to identify the
    problem, I have found that WA is very high during the
    slowdown, while CPU is extremely low. Thus, the wait
    time for IO operation is very high. I have also
    noticed that the slowdown also occurs earlier in the
    file analysis, with irregular pauses earlier in the
    job becoming more frequent as the job progresses. My
    final question is: what operation is being triggered
    in the database at these points in time? Are some
    clean-up process running on the database when it
    believes it to be idle and would it be
    possible/advisable to turn it off?What is your JE cache size? I suspect it's much too small for what you're doing.
    I will run some env.getStats(..) and see if I can
    find out anything more.Please do print out the env stats after the slowdown occurs and post them.
    Thanks,
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Firefox will be working perfectly, but after a period of time, and sometimes after a period of inactivity, the browser just hangs.

    Mouse clicks to hyperlinks instigate an error noise, and to recover your internet session, all you can do is re-start the PC - but also re-setting the router seems to clear the problem.
    Its not the individual PC, as my netbook which i connect through the same router, has the same problem - nor is it the wireless connections, as when the devices are physically connected, it still occurs!
    I have tried upgrading to mozilla v4 beta, no change, and i now taken a retrogade step and gone back to 3.6.13 - no change.

    Sorry, I couldn't find any relevant Bugs with regards to that issue.
    '''Try the Firefox SafeMode''' to see how it works there. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    [https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode#w_safe-mode-window_2 Troubleshoot Firefox issues using Firefox SafeMode]
    When in Safe Mode... <br />
    * The status of plug-ins is not affected.
    * Custom preferences are not affected.
    * All extensions are disabled.
    * The default theme is used, without a persona.
    * userChrome.css and userContent.css are ignored.
    * The default toolbar layout is used.
    * The JIT Javascript compiler is disabled.
    * Hardware acceleration is disabled.
    * You can open the Firefox 15.0+ SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    '''''If it is good in the Firefox SafeMode''''', your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes <br />
    Or it might be caused by Hardware Acceleration.
    ''When you figure out what is causing that, please let us know. It might help other user's who have that problem.''

  • Using Bootcamp Windows 7, my wireless internet stays connected most of the time, but occasionally says "no internet access", then reconnects after a period of time. How can I keep a stable connection?

    I'm running Windows 7 Ultimate on Bootcamp. I've installed all Windows software, with all the drivers, and my wireless internet works fine. But, every once in awhile, it will say, "no internet access", and I'm unable to do anything until it restores. Like I've said, all the drivers have been installed, and they're both copied onto my desktop, and on a flash drive.
    I need to keep a stable connection, because I only use my Windows partition for gaming, and when I get disconnected from the internet, I get booted from the game. Any advice?

    what version of bootcamp you use to install all of the driver ?? is it the problem was from the beginning you installed windows or just now ?? or maybe you can try usb wifi to test the windows is not the problem..

  • Photoshop CS6 stops working after a period of time

    Hi,
    I'm having a very frustrating issue with Photoshop CS6. When starting up my Pc or notebook it works just fine and I can open images and create new documents.
    After a period of time (unknown) I can no longer open images or create new documents. There are no error messages appearing at all.
    I have contacted support and to date nothing has worked to resolve this.
    I have un-installed and re-installed Photoshop. I have tried running it without loading preferences etc.
    The application is up to date as is my operating system.
    This is affecting Photoshop on 2 separate installs, my PC and notebook
    Any ideas?
    Running Windows 7
    Cheers
    George

    But this is happening on two different machines, a work notebook and my home PC... surely not the issue?
    Cheers

  • Firefox stops working properly after a period of time

    btw, I can't type in this box. I'm typing this in another program and pasting it in.
    Using Firefox 5. I just installed Lion yesterday for Mac, but this problem occurred even before I did so. After a period of time, FF stops working properly. I notice it when I try to open a new tab. It won't switch to the new tab and the screen turns blue. If I type in a web address, it looks like it tries to go there, but it doesn't. When I look at any other already open tab, it has the blue screen. I have to restart to get my proper web pages back.

    Whenever I click on "More System Details" there are several things I hope I won't see. Your Conduit Engine is one of them. It is malware by any reasonable definition and a cause of major problems with Firefox.
    Google for information and advice as to how to get rid of it. Someone may come along with more specific advice..
    If things aren't perfect after that you could do some straightforward troubleshooting(Safe Mode, Problematic Extensions, Hardware Acceleration etc) - in default theme -
    https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes

  • N97 Ovi Maps - Internet usage disabled after upgra...

    Recently upgraded phone software and maps - everything works fine except when activating Ovi Maps at which point I'm prompted to 'Go online'  which when prompted, the  phone confirms no internet connection - tools online - and I get the message on screen Internet Usage disabled.
    Everything else installed on the phone works fine - including all the internet related software, email , facebook etc
    Appreciate that others may be having same problem as we carried out same upgrades on second phone in the house last night and................Same problem

    Has anyone got a solution for this issue? I had my first n97 arrive on monday, today I had to swap it as it didnt work properly. I have got to grips with my new one and upgraded things when prompted, everything seems to be working perfectly except when i got to ovi maps.
    Ovi maps worked fine on the frist n97 handset but not a lot else did. on this new handset its just ovi maps with the above problem, when I go into maps it says no internet connection and propmpts me to select 'go online' i do that and get the message 'internet usage disabled'
    Ive tried all of the above except the GPRS/EGDE thing as I cannot find that anywhere on the phone.
    Any help is appriciated as its been a long week trying to get n97s to work

  • Mail stops receiving messages after a period of time

    Every since installing Mavericks my Mail app stops receiving messages after a period of time. I know because I get the email on my phone, but I try to grab them in Mail and nothing. If I restart Mail then they come through.
    I'm using Gmail as my email provider. Is anyone else suffering with this? Is there a work around?

    Workaround or not, this is an annoyance, and that's a nice way of putting it. Coming from Mountain Lion, when Mail was working flawlessly, having to deal with this issue is just plain ridiculous. What happened to the Mail application? I don't understand how Apple could screw this up to badly.
    Every time I restart or reset the connection to the servers, the Mail app is downloading thousands of messages (I can see the display on the bottom-left). I have no idea what it's doing or why, for that matter. If Apple doesn't fix this soon, I will seriously be forced to look for an alternative, which saddens me greatly. I really like Mail, but if it cannot reliably get my mail simply because I've left it open too long, or hidden it behind another window, I will stop using it.
    What's worse is that I've had similar issues with other applications like iPhoto and iTunes. Whatever is happening to Mail is probably not just application-specific. It's probably OS-specific. I hope Apple is working on it and that we will see a major update to Mavericks soon. All I know is that, right now, I'm seriously regretting upgrading to Mavericks.

  • Why does my iPad mini stop responding to wifi after a period of time?

    Why does my iPad mini stop responding to wifi after a period of time?
    For example, I can connect to wifi and use Safari and my iPad's interet capabilities with no problem. But if I then leave my iPad alone for an hour - when I go back to using it, it still shows as being connected to the wifi, but is unresponsive - i.e. web pages will not load etc. - I have to disconnect and reconnect to the wifi to make it responsive.
    In advance, thanks

    Try #5
    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    iOS 6 Wifi Problems/Fixes
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Is it possible to have the cellular data switch turn off after a period of time. I would like to minimize the data usage, but often forget to turn off the cellular switch once I have returned to wifi coverage.

    My new iPhone 6+ seems to eat up data at a faster rate than my iPhone 4.  I was advised that turning off cellular data when I am at home or work where I have wifi will keep my cellular data usage to a minimum.  But I have found that I frequently forget to turn it off the cellular once I have finished a task where I needed it. Is there a way to have it turn itself off automatically after a period of time? Thanks

    No, you will have to manually do it.
    Have you look into putting your phone in airplane mode and then connect to wifi.
    iOS: Understanding airplane mode - Apple Support

  • A connection attempt failed because the connected party did not properly respond after a period of time

    Prior to the Increase Capacity for Outbound Network Calls update, my Azure websites running in
    Standard mode experienced occasional connection attempt failed errors. Since this update the errors stopped but starting on 12/30/14, these errors started up again on both
    South Central and East regions:
    "A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond [IP]:80"
    It occurs when attempting to consume an external web service over HTTP. This issue is not reproducible on our local environments nor did it occur with our previous shared hosting provider.
    On Azure, the same web service call can result in this error or will return a response successfully.
    There doesn't appear to be any pattern as to why the same call would work one time but not another.
    How can this be resolved again? Any feedback is appreciated. Thanks.

    Hi,
    Please have a look at this article:
    http://blogs.msdn.com/b/narahari/archive/2011/12/21/azure-a-connection-attempt-failed-because-the-connected-party-did-not-properly-respond-after-a-period-of-time-or-established-connection-failed-because-connected-host-has-failed-to-respond-x-x-x-x-x-quot.aspx,
    it gives us several ways to solve this issue, hope this helps.
    Best Regards,
    Jambor 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Dnsmasq stops after random periods of time

    I have had dnsmasq running my localhost adblock since over a year and everything was working fine. However, since several weeks, I noticed that it just stops working after random periods of time.
    I was unable to identify any error, and it starts just fine if I run it after it quits, but after several hours it quits again. Here's systemctl status dnsmasq output:
    Showing one /org/freedesktop/systemd1/unit/dnsmasq_2eservice
    Sent message type=method_call sender=n/a destination=org.freedesktop.DBus object=/org/freedesktop/DBus interface=org.freedesktop.DBus member=Hello cookie=1 reply_cookie=0 error=n/a
    Got message type=method_return sender=org.freedesktop.DBus destination=:1.255 object=n/a interface=n/a member=n/a cookie=1 reply_cookie=1 error=n/a
    Sent message type=method_call sender=n/a destination=org.freedesktop.systemd1 object=/org/freedesktop/systemd1/unit/dnsmasq_2eservice interface=org.freedesktop.DBus.Properties member=GetAll cookie=2 reply_cookie=0 error=n/a
    ● dnsmasq.service - A lightweight DHCP and caching DNS server
    Loaded: loaded (/usr/lib/systemd/system/dnsmasq.service; enabled)
    Active: inactive (dead) since Tue 2014-10-28 22:22:02 CET; 10h ago
    Docs: man:dnsmasq(8)
    Main PID: 2590 (code=exited, status=0/SUCCESS)
    Root directory /var/log/journal added.
    Considering /var/log/journal/8ed49f4f63fc90478b051d8f00000121.
    Directory /var/log/journal/8ed49f4f63fc90478b051d8f00000121 added.
    Journal filter: (((OBJECT_SYSTEMD_UNIT=dnsmasq.service AND _UID=0) OR (UNIT=dnsmasq.service AND _PID=1) OR (COREDUMP_UNIT=dnsmasq.service AND _UID=0 AND MESSAGE_ID=fc2e22bc6ee647b6b90729ab34a250b1) OR _SYSTEMD_UNIT=dnsmasq.service) AND _BOOT_ID=c9b052e6ea8d4c27bb30a0aaf25d5874)
    Root directory /var/log/journal removed.
    Directory /var/log/journal/8ed49f4f63fc90478b051d8f00000121 removed.
    mmap cache statistics: 0 hit, 0 miss

    Just as an update to the above, the same problem occurs in safe mode?

  • W,indows 7 shuts down at welcome page after a period of time, when user is not logged in.

    I have two users on my computer, when they are both logged out and the computer is at the welcome page, I need the computer to stay on , as I need to remote accsess it.But the computer turns off after a period of time, even though in settings, I have all
    the power setting to never off.
    How do I stop the computer turning it self off, when there is no one logged in, and on the welcome page?
    Thanx.

    Check in BIOS sometimes for hours shut down.
    Is the computer starts then straight without a problem? If you do not check the temperature of the processor.
    Start your computer in safe mode and remove programs that start automatically by MSCONFIG
    Please Mark This As Answer if it helps to solve the issue
    Tzuri Ben Ezra | My Certifications:
    CompTIA A+ ,Microsoft MCP, MCTS, MCSA, MCITP
    |
    FaceBook: Tzuri FaceBook | vCard:
    Tzuri vCard | 
    Microsoft ID:
    Microsoft Transcript 
     |

  • Lag after a period of time

    Hi,
    I've recently purchased Photoshop CS5.1 and I've noticed an issue. After working for a period of time (5-10 minutes), when I try to move an item/layer, or when I want to use the move tool, I have a 1-2 second lag between the time I initiate the action and the actual screen result.
    One thing I've discovered is that the Timing info grows in time reaching 140s sometimes. The higher this is the more the lag.
    I have no problems with hdd space for scratch disks and I have no installed plugins. One way to fix this issue is to restart PS, but it doesn't seem to be a viable solution. The problem also remains when I have OpenGL checked. I used to work with CS3 and this issue never occured.
    Anyone else had this issue ? Thanks in advance.
    My system:
    OS: XP SP3
    CPU: Intel i5-2400
    GPU: Gigabyte 550Ti Gtx 1Gb
    RAM: 4Gb

    I have new information regarding my issue. It happens each time I start to work. This delay appears only when I click on the canvas to perform an action. It's most visible when I try to use the Hand tool to pan the canvas, I click to move but there's a slight delay before the actual screen result. This delay increases in time, even though I don't work and just leave Photoshop alone. After a period of time this delay disappears and everything is back to normal.
    Also, if a try to pan the canvas using the scroll wheel everything is fine. Also, no problems when I try to zoom in or out. I've tried different scratch disk locations, different performance settings with no success. I've tried to close third party applications, in case something would have interfered with PS, and nothing. Is there a way to monitor the mouse input to see what happens when I click the canvas to execute an action ?
    Anyone ?

  • After short period of time my messages are disappearing from my Icloud mail account.Why does it happen?Can I restore them back?

    I can't understand my Icloud mail behavior.All messages I sent are stored in sent box as usual whereas messages I receive are disappearing after short period of time (no more then 2 weeks).Why does it happen?Do I have any chance to restore them?

    Unfotunately I'm not eligable for MAC support over the phone and have to take it in to the Genius Bar. Hmmmpf.
    But I was able to isolate the errors (using Console) that occurred just prior to the network failing:
    8/30/09 10:53:05 AM Dock[231] _DESCRegisterDockExtraClient failed 268435459
    8/30/09 10:53:25 AM SystemUIServer[232] * CFMessagePort: bootstrap_register(): failed 1100 (0x44c) 'Permission denied', port = 0x9307, name = 'com.apple.tsm.uiserver'
    See /usr/include/servers/bootstrap_defs.h for the error codes.
    8/30/09 10:53:25 AM com.apple.launchd[196] ([0x0-0xc00c].com.apple.systemuiserver[232]) Check-in of Mach service failed. PID 232 is not privileged: com.apple.tsm.uiserver
    8/30/09 10:53:33 AM GrowlHelperApp[249] WARNING: could not register Growl server.
    8/30/09 10:53:52 AM com.apple.launchd[196] (com.apple.NetworkDiagnostics[259]) Check-in of Mach service failed. Already active: com.apple.NetworkDiagnostic.agent
    8/30/09 10:54:36 AM [0x0-0x1a01a].com.apple.Safari[261] Debugger() was called!
    8/30/09 11:00:50 AM com.apple.launchd[196] (com.apple.NetworkDiagnostics[279]) Check-in of Mach service failed. Already active: com.apple.NetworkDiagnostic.agent
    8/30/09 11:05:52 AM com.apple.launchd[196] (com.apple.NetworkDiagnostics[290]) Check-in of Mach service failed. Already active: com.apple.NetworkDiagnostic.agent
    Any idea what these mean?

Maybe you are looking for

  • Downcasting In Object PL/SQL Does not Work in Oracle 10g 10.1.0.2

    create type one_t as object ( x number, y date ) not final create type two_t under one_t() set serverout on declare super one_t; sub two_t := two_t(1, sysdate); begin super := one_t(1, sysdate); sub := new two_t(1, sysdate); dbms_output.put_line('sub

  • Inter Company Billing and automatic booking to Vendor master.

    Hi, Wish you a Happy New year,,,,,,, We have done all the necessary configuration for generating Inter Company billing including the Cost booking to vendor Automatically. There are certain points where I need some help, 1) During Idoc genration we ar

  • Data dvds ejected automatically; will not read

    I have been backing up my music collection on dvds through itunes. Each disk has written without error and shown up in finder correctly after it has finnished. After I eject the disk it will fail to mount at all the next time i put it in my dvd drive

  • Problem with XML import MDM 7.1 - Can't generate Xml Schema

    Hi All, When I try to open an XML file using Import manager, I'm getting some errors, as detailed below. I mention that I'm using MDM 7.1. The first error I received was the following: "Can't open C:/Program files/SAP MDM 7.1/Import Manager/XSD.exe".

  • Screen capture output is cropped incorrectly

    I'm using the built-in screen capture functionality on OS X to grab screenshots, using Command-Shift-4 followed by space, then clicking on the window to be captured.  The problem is that if the window fills the full screen area, it is partially cropp