Storing attributes in a session - what is too much?

I'm working on a project that involves a quiz section on a website.
Per user taking a quiz, I basically store an ArrayList with 25 questions and 5 multiple choice options (pretty long Strings) and some other attributes into a session.
Where does the session store all this stuff?
In terms of efficiency and deploying such a website on a web provider, is this going to take up too much memory if lots of users are taking a quiz at the same time?

I'm sorry, being new to Java I might not have explained my issue properly.
I have a database with approx. 1000 questions stored in it. Everytime a user wants to take a quiz, I randomly fill an ArrayList with 25 of these questions with their multiple choice options. Then I display these questions in a JSP. Once the user finishes the quiz, results are calculated and displayed to the user and also stored in the database. I also keep track of what questions have been asked to a particular user, so that when he/she returns in the future, the 25 questions lifted out of the database will not contain any questions previously asnwered.
On my own PC this system works great. But since I have never actually deployed a project through an external vendor's service (a web provider or whatchamacall it) I don't know if it would take up too much memory. When I was shopping for a provider, I see they post maximum bandwidth and memory limitiations - I'm not sure what they mean since I'm a newby and I'm wondering what is really too much memory? Would my approach with an ArrayList full of Strings be too much if say you have 50 or 100 users taking a test at the same time?? As you see, I have no clue and I am trying to learn from you, the experts.
Thx!

Similar Messages

  • HT3662 What about TOO MUCH SECURITY???

    What about TOO MUCH SECURITY???  I always played the SET puzzle in the New York times, which required the Java plug in.  No problem, until I installed Mountain Lion, which I am beginning to REGRET.  After installing the new OS, the NYT game page required that I install the newest version of Java.  Now I'm completely frozen up when I try to play my puzzle.  Just the stupid Java icon, with the squares circling endlessly around the coffee cup.  It went on for an hour, and I finally gave up.  I have to restart everything before I can use the browser again.  Any suggestions??

    Is playing that game worth the extreme security risk of having Java enabled in your web browser? Are you aware that Java is currently vulnerable, allowing a web site to install malware on your machine without any user interaction required? Further, that has been the case for 25 days (this time), with no fix available yet. And that's just the latest incident... Java has been involved in getting the majority of Mac malware installed over the last year.
    For more information, see:
    Java is vulnerable… Again?!
    http://www.thesafemac.com/tag/java/

  • Session bean takes too much time with multiple clients

    Hi ,
    We have a problem in our system.
    we have a session bean on Weblogic 6.0 which internally accesses a DAO
    to get data from an Oracle Database .The sessionbean does a bit of
    heavy processing with the data and then returns an Arraylist of
    required objects .
    with a single client running on the system the whole thing takes about
    3 seconds but if three clients access the same functionality the total
    time taken rises up to a big 50 seconds for all the clients .
    we do not have a problem with the connection pool, all connections
    are closed properly .
    anyone who has faced the same problem ??
    what could be the reason for this anormous increase in time??
    Thanks
    Amol Godbole

    Hi ,
    narrowed down the problem to resultset looping taking too much time .!!!
    any ideas why this might be happening ?
    Thanks
    Amol Godbole
    [email protected] (Amol Godbole) wrote in message news:<[email protected]>...
    Hi ,
    We have a problem in our system.
    we have a session bean on Weblogic 6.0 which internally accesses a DAO
    to get data from an Oracle Database .The sessionbean does a bit of
    heavy processing with the data and then returns an Arraylist of
    required objects .
    with a single client running on the system the whole thing takes about
    3 seconds but if three clients access the same functionality the total
    time taken rises up to a big 50 seconds for all the clients .
    we do not have a problem with the connection pool, all connections
    are closed properly .
    anyone who has faced the same problem ??
    what could be the reason for this anormous increase in time??
    Thanks
    Amol Godbole

  • What is too much?

    I am living in China right now, and if you have ever worked or lived in china you know that dvds are cheap and you watch them a lot.
    I dont own a tv right now or a dvd player so i use my computer a lot. I am very scared that i am going to over use my dvd player. Is this a silly fear? Are the dvd player in the MacBook durable?
    Please help
    thanks

    Are the DVD players in our macbooks durable? Your guess is as good as mine.
    I don't think they are any less durable then regular DVD players found in PC tower computers. If you got the 3 years extended warranty - then you got nothing to worry about - if the DVD player craps out - then you can get it exchanged under the warranty.
    Your only other option is to buy an external DVD player - and play movies using that.

  • Query is taking too much time

    hi
    The following query is taking too much time (more than 30 minutes), working with 11g.
    The table has three columns rid, ida, geometry and index has been created on all columns.
    The table has around 5,40,000 records of point geometries.
    Please help me with your suggestions. I want to select duplicate point geometry where ida=CORD.
    SQL> select a.rid, b.rid from totalrecords a, totalrecords b where a.ida='CORD' and b.idat='CORD' and
    sdo_equal(a.geometry, b.geometry)='TRUE' and a.rid !=b.rid order by 1,2;
    regards

    I have removed some AND conditions That was not necessary. It's just that Oracle can see for example that
    a.ida='CORD' AND
    b.idat='CORD' AND
    a.rid !=b.rid AND
    sdo_equal(a.geometry, b.geometry)='TRUE'
    ORDER BY 1,2;if a.ida does not equal 'CORD', the whole set of conditions evaluates to FALSE, so Oracle will not bother evaluating the rest of the conditions because it's all AND'ed together, and TRUE AND FALSE = FALSE.
    So if you place your least expensive conditions first (even though the optimizer can and will reorder conditions) this will give you a small performance benefit. Too small to notice, but on 5.4 million records it should be noticable.
    and I have set layer_gtype=POINT.Good, that will help. I forgot about that one (Thanks Luc!).
    Now i am facing the problem to DELETE duplicate point geometry. The following query is taking too much time. What is too much time? Do you need to delete these duplicate points on a daily or hourly basis? Or is this a one-time cleanup action? If it's a one-time cleanup operation, does it really matter if it takes half an hour?
    And if this is a daily or even hourly operation, then why don't you prevent the duplicates from entering the table in the first place? That will save you from having to clean up afterwards. Of course, this might not be possible with your business requirements.
    Lastly: can you post an explain plan for your queries? Those might give us an idea of what is taking so much time. Please enclose the results of the explain plan with
    [ c o d e ]
    <code/results here>
    [ / c o d e ]
    that way the original formatting is kept and it makes things much easier to read.
    Regards,
    Stefan

  • Would there b any problme on storing too much varibales in Session variable

    How many maximum number of attributes i can store in Session ? Would there be any kind of problem ?

    The limit depends on Integer.MAX_VALUE and the JVM memory available. Just profile your webapp to see if it doesn´t eat too much memory.
    That said, how much is "much"? In a decent webapplication you normally don´t need to worry about it. Are you sure that your webapplication is properly designed? Consult your project architect/lead.

  • What is the best way to manage my iPhoto, which is taking up too much space on my MacBook Pro?

    What is the best way to manage my iPhoto, which is taking up too much space on my MacBook Pro?
    Specifically, I'd like to keep some of my favorite pictures on the laptop while moving the rest to an external hard drive. Is there a way to tag just a few pictures inside an event/album as "favorite", while storing the rest in an EHD, but still keep them connected to the same event/album? I'd like to have just the favorite pictures on the laptop, but when I have the EHD connected,  be able to view all my pictures in the same place, and not have to browse through separate hard drives. Ideally, whether or not a picture is designated as "favorite" will determine where it resides.
    Is this at all possible?
    I have only 7 GB left on my HD and I'm desperately needing a solution!
    Thanks!

    You need two libraries to do this. One on the external with all your Photos. One on the internal with a subset - your favourites. You do it this way to make backing up easier - that is, back up the library with everything, so you're only backing up one.
    Make sure the drive is formatted Mac OS Extended (Journaled)
    1. Quit iPhoto
    2. Copy the iPhoto Library from your Pictures Folder to the External Disk.
    Now you have two full versions of the Library.
    3. On the Internal library, trash the Events/albums/photos you don't want there
    Now you have a full copy of the Library on the External and a smaller subset on the Internal
    Some Notes:
    As a general rule: when deleting photos do them in batches of about 100 at a time. iPhoto can baulk at trashing large numbers at one go.
    You can choose which Library to open: Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Choose Library'
    You can keep the Library on the external updated with new imports using iPhoto Library Manager

  • HT201250 my time capsule is taking too much time indexing backup and then taking longer time to back up ( 207 days ) or longer !!! what shall i do ?

    my time capsule is taking too much time indexing backup and then taking longer time to back up ( 207 days ) or longer !!! what shall i do ?

    Try 10.7.5 supplemental update.
    This update seems to have solved this problem for many.
    Best.

  • My late 2009 iMac is running slow, particularly on Mail, more so since I upgraded to Yosemite. I have run an Etrecheck but it doesn't mean too much to me. If anyone can point me to what I need to do I'll be very grateful.

    My late 2009 iMac is running slow, particularly on Mail, more so since I upgraded to Yosemite. I have run an Etrecheck but it doesn't mean too much to me. If anyone can point me to what I need to do I'll be very grateful.
    Etrecheck says:
    Problem description:
    Imac late 2009 running slow
    EtreCheck version: 2.2 (132)
    Report generated 5/3/15, 4:33 PM
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (21.5-inch, Late 2009) (Technical Specifications)
        iMac - model: iMac10,1
        1 3.06 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                Empty  
            BANK 1/DIMM0
                Empty  
            BANK 0/DIMM1
                2 GB DDR3 1067 MHz ok
            BANK 1/DIMM1
                2 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        NVIDIA GeForce 9400 - VRAM: 256 MB
            iMac 1920 x 1080
    System Software: ℹ️
        OS X 10.10.3 (14D136) - Time since boot: 5:5:56
    Disk Information: ℹ️
        ST3500418ASQ disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 499.25 GB (308.35 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        HL-DT-ST DVDRW  GA11N 
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        Western Digital My Book 111A 1 TB
            disk1s1 (disk1s1) <not mounted> : 32 KB
            My Book (disk1s3) /Volumes/My Book : 1.00 TB (226.58 GB free)
        Apple Internal Memory Card Reader
        Apple, Inc. Keyboard Hub
            Apple, Inc Apple Keyboard
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
    Configuration files: ℹ️
        /etc/hosts - Count: 30
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/Toast 10 Titanium/Toast Titanium.app
        [not loaded]    com.roxio.BluRaySupport (1.1.6) [Click for support]
        [not loaded]    com.roxio.TDIXController (1.7) [Click for support]
            /Library/Application Support/LogMeIn/drivers
        [loaded]    com.logmein.driver.LogMeInSoundDriver (4.1.48f99) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.NovatelWireless.driver.NovatelWirelessUSBCDCECMControl (3.0.13) [Click for support]
        [not loaded]    com.NovatelWireless.driver.NovatelWirelessUSBCDCECMData (3.0.13) [Click for support]
        [not loaded]    com.ZTE.driver.ZTEUSBCDCACMData (1.3.8) [Click for support]
        [not loaded]    com.ZTE.driver.ZTEUSBMassStorageFilter (1.3.8) [Click for support]
        [not loaded]    com.novamedia.driver.IceraUSB_MSD_Bypass (1.3.0) [Click for support]
        [not loaded]    com.novatelwireless.driver.3G (3.0.13) [Click for support]
        [not loaded]    com.novatelwireless.driver.DisableAutoInstall (3.0.13) [Click for support]
        [not loaded]    com.option.driver.Option72 (2.15.0) [Click for support]
        [not loaded]    com.option.driver.OptionHS (3.26.0) [Click for support]
        [not loaded]    com.option.driver.OptionMSD (1.21.0) [Click for support]
        [not loaded]    com.option.driver.OptionQC (1.11.0) [Click for support]
        [not loaded]    com.pctools.iantivirus.kfs (1.0.1) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverInt (0.0.39) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverVSP (0.0.45) [Click for support]
        [not loaded]    com.vodafone.driver (3.0.9) [Click for support]
        [not loaded]    com.zte.driver.cdc_ecm_qmi (1.0.1) [Click for support]
        [not loaded]    com.zte.driver.cdc_usb_bus (1.0.1) [Click for support]
        [not loaded]    de.novamedia.driver.NMSmartplugSCSIDevice (1.0.1) [Click for support]
        [not loaded]    de.novamedia.oem.vodafone.vtp.huawei.cdc (0.0.2) [Click for support]
            /System/Library/Extensions/NMHuaweiPhonesVTPCDC.kext/Contents/Resources
        [not loaded]    de.novamedia.driver.NMUSBCDCACMData.VTP (3.2.6) [Click for support]
            /System/Library/Extensions/NovatelWireless3G.kext/Contents/Plugins
        [not loaded]    com.novatelwireless.driver.3GData (3.0.13) [Click for support]
            /System/Library/Extensions/Vodafone.kext/Contents/Plugins
        [not loaded]    com.vodafone.driver.Data (3.0.9) [Click for support]
            /Volumes/My Book/Extras/WD +TURBO Installer.app
        [not loaded]    com.wdc.driver.1394HP (1.0.9) [Click for support]
        [not loaded]    com.wdc.driver.USBHP (1.0.11) [Click for support]
    Startup Items: ℹ️
        AdobeVersionCueCS2: Path: /Library/StartupItems/AdobeVersionCueCS2
        Qmaster: Path: /Library/StartupItems/Qmaster
        VirtualPCOSServices: Path: /Library/StartupItems/VirtualPCOSServices
        Startup items are obsolete in OS X Yosemite
    Problem System Launch Agents: ℹ️
        [killed]    com.apple.CallHistoryPluginHelper.plist
        [killed]    com.apple.CallHistorySyncHelper.plist
        [killed]    com.apple.cloudphotosd.plist
        [killed]    com.apple.coreservices.appleid.authentication.plist
        [killed]    com.apple.EscrowSecurityAlert.plist
        [killed]    com.apple.icloud.fmfd.plist
        [killed]    com.apple.Maps.pushdaemon.plist
        [killed]    com.apple.photolibraryd.plist
        [killed]    com.apple.security.cloudkeychainproxy.plist
        [killed]    com.apple.telephonyutilities.callservicesd.plist
        10 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.awdd.plist
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.icloud.findmydeviced.plist
        [killed]    com.apple.ifdreader.plist
        [failed]    com.apple.mtrecorder.plist
        [killed]    com.apple.nehelper.plist
        [killed]    com.apple.periodic-daily.plist
        [killed]    com.apple.softwareupdated.plist
        [killed]    com.apple.wdhelper.plist
        8 processes killed due to memory pressure
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.CS4ServiceManager.plist [Click for support]
        [loaded]    com.adobe.CS5ServiceManager.plist [Click for support]
        [failed]    com.logmein.LMILaunchAgentFixer.plist [Click for support] [Click for details]
        [running]    com.logmein.logmeingui.plist [Click for support]
        [running]    com.logmein.logmeinguiagent.plist [Click for support]
        [not loaded]    com.logmein.logmeinguiagentatlogin.plist [Click for support]
        [running]    de.novamedia.VodafoneDeviceObserver.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [loaded]    com.adobe.versioncueCS3.plist [Click for support]
        [loaded]    com.adobe.versioncueCS4.plist [Click for support]
        [failed]    com.apple.spirecorder.plist
        [loaded]    com.bombich.ccc.plist [Click for support]
        [running]    com.logmein.logmeinserver.plist [Click for support]
        [loaded]    com.logmein.raupdate.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    jp.co.canon.MasterInstaller.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application Hidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Mail    Application  (/Applications/Mail.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        AdobeResourceSynchronizer    Application Hidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
        iAntiVirus    Application Hidden (/Applications/iAntiVirus/iAntiVirus.app)
    Internet Plug-ins: ℹ️
        LogMeInSafari64: Version: 1.0.730 [Click for support]
        Unity Web Player: Version: UnityPlayer version 3.5.3f3 - SDK 10.6 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        LogMeIn: Version: 1.0.730 [Click for support]
        Flash Player: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        LogMeInSafari32: Version: 1.0.730 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        iPhotoPhotocast: Version: 7.0
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        SharePointBrowserPlugin: Version: 14.0.0 [Click for support]
        EPPEX Plugin: Version: 10.0 [Click for support]
        JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    Audio Plug-ins: ℹ️
        DVCPROHDAudio: Version: 1.2
    3rd Party Preference Panes: ℹ️
        Adobe Version Cue CS2  [Click for support]
        Adobe Version Cue CS3  [Click for support]
        Adobe Version Cue CS4  [Click for support]
        Déjà Vu  [Click for support]
        Flash Player  [Click for support]
        Growl  [Click for support]
        SixtyFourSwitcher  [Click for support]
    Time Machine: ℹ️
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 499.25 GB Disk used: 190.89 GB
        Destinations:
            My Book [Local]
            Total size: 1.00 TB
            Total number of backups: 13
            Oldest backup: 2015-04-21 19:59:59 +0000
            Last backup: 2015-05-02 19:49:37 +0000
            Size of backup disk: Adequate
                Backup size 1.00 TB > (Disk used 190.89 GB X 3)
    Top Processes by CPU: ℹ️
            12%    iavd
             5%    iAntiVirus
             5%    WindowServer
             5%    diskimages-helper
             1%    mdworker(5)
    Top Processes by Memory: ℹ️
        537 MB    kernel_task
        266 MB    Google Chrome Helper(4)
        111 MB    Google Chrome
        74 MB    ocspd
        74 MB    WindowServer
    Virtual Memory Information: ℹ️
        1.45 GB    Free RAM
        2.55 GB    Used RAM
        59 MB    Swap Used
    Diagnostics Information: ℹ️
        May 3, 2015, 11:26:23 AM    /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-05-03-112623_[ redacted].cpu_resource.diag [Click for details]
        May 3, 2015, 11:22:17 AM    Self test - passed

    Thanks for all the replies.
    I've now installed the ad blocker, thrown away the unwanted files, and thrown away a copy of Firefox that Adware said had a problematic extension.
    Things are better, but still slow.
    Activity Monitor shows that with just Mail, Chrome and Excel running, 2.9GB of my 4GB RAM is used. Opening InDesign (always slow) increase that to 3.2GB. But the graph stays green.
    Console shows several potential problems but I don't know if any are significant. In any case I will call my Mac store tomorrow to ask their advice about RAM.
    04/05/2015 18:52:05.309 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3383189 oid:3383189 ino:3383189 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]/INBOX.mbox/AB2DA797-EBE4-453E-82BD-8CE588E5D59D/Data/9/6/6/Attachments/669999/5 -- /Users/leopard/Library/Mail/V2/[email protected]/INBOX.mbox/AB2DA797-EBE4-453E-82BD-8CE588E5D59D/Data/9/6/6/Attachments/669999/5
    04/05/2015 18:52:05.309 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3375445 oid:3375445 ino:3375445 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]/INBOX.mbox/AB2DA797-EBE4-453E-82BD-8CE588E5D59D/Data/9/6/6/Messages -- /Users/leopard/Library/Mail/V2/[email protected]/INBOX.mbox/AB2DA797-EBE4-453E-82BD-8CE588E5D59D/Data/9/6/6/Messages
    04/05/2015 18:52:10.564 com.apple.backupd-helper[66]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.backupd.status.xpc
    04/05/2015 18:52:11.090 com.apple.backupd-helper[66]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.backupd.status.xpc
    04/05/2015 18:52:12.727 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:52:13.021 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:52:13.022 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:52:14.284 helpd[296]: Cannot find executable for CFBundle 0x7fb412caabe0 </Library/Documentation/Help/iWorkFunctionsHelp.help> (not loaded)
    04/05/2015 18:52:15.085 helpd[296]: Cannot find executable for CFBundle 0x7fb412d1f540 </Library/Documentation/Help/X422MFPHelp.help> (not loaded)
    04/05/2015 18:52:17.455 helpd[296]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 1. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    04/05/2015 18:52:17.456 helpd[296]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 1. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    04/05/2015 18:52:21.737 helpd[296]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 3. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    04/05/2015 18:52:21.738 helpd[296]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 3. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    04/05/2015 18:52:23.292 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:52:31.811 AddressBookManager[428]: Validate metadata timed out, cancelling
    04/05/2015 18:52:33.395 accountsd[262]: AIDA Notification plugin running
    04/05/2015 18:52:33.396 accountsd[262]: Enter ShareKitAccountEnabler  - didChangeWithType - type=2 for account [email protected] (A9323757-5224-408D-AE23-0CB83451E046).
    04/05/2015 18:52:33.467 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:52:33.573 accountsd[262]: AIDA Notification plugin running
    04/05/2015 18:52:33.574 accountsd[262]: Enter ShareKitAccountEnabler  - didChangeWithType - type=2 for account [email protected] (A9323757-5224-408D-AE23-0CB83451E046).
    04/05/2015 18:52:33.922 accountsd[262]: AIDA Notification plugin running
    04/05/2015 18:52:33.923 accountsd[262]: Enter ShareKitAccountEnabler  - didChangeWithType - type=2 for account [email protected] (D9A0E166-5A9D-4D1B-B82F-E4CA68F064F3).
    04/05/2015 18:52:34.068 accountsd[262]: AIDA Notification plugin running
    04/05/2015 18:52:34.068 accountsd[262]: Enter ShareKitAccountEnabler  - didChangeWithType - type=2 for account [email protected] (D9A0E166-5A9D-4D1B-B82F-E4CA68F064F3).
    04/05/2015 18:52:34.354 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:52:35.161 icbaccountsd[430]: Connection error while checking Apple Internalness. Error: Error Domain=NSCocoaErrorDomain Code=4099 "Couldn’t communicate with a helper application." (The connection to service named com.apple.CrashReporterSupportHelper was invalidated.) UserInfo=0x7fe8584355d0 {NSDebugDescription=The connection to service named com.apple.CrashReporterSupportHelper was invalidated.}
    04/05/2015 18:52:35.597 helpd[296]: Could not find access page in directory /Applications/Carbon Copy Cloner/Carbon Copy Cloner.app/Contents/Resources/Help
    04/05/2015 18:52:35.598 helpd[296]: Could not find access page in directory /Applications/Carbon Copy Cloner/Carbon Copy Cloner.app/Contents/Resources/Help
    04/05/2015 18:52:35.612 helpd[296]: Could not find access page in directory /Applications/Final Cut Pro Studio/Final Cut Pro.app/Contents/Resources/English.lproj/Final Cut Pro Help
    04/05/2015 18:52:35.613 helpd[296]: Could not find access page in directory /Applications/Final Cut Pro Studio/Final Cut Pro.app/Contents/Resources/English.lproj/Final Cut Pro Help
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3111641 oid:3111641 ino:3111641 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]@imap.gmail.com -- /Users/leopard/Library/Mail/V2/[email protected]@imap.gmail.com
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3078032 oid:3078032 ino:3078032 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected] -- /Users/leopard/Library/Mail/V2/[email protected]
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3096791 oid:3096791 ino:3096791 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]/[Google Mail].mbox/Spam.mbox -- /Users/leopard/Library/Mail/V2/[email protected]/[Google Mail].mbox/Spam.mbox
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3112877 oid:3112877 ino:3112877 fsEvents:1 /Users/leopard/Library/Mail/V2/[email protected]@imap.gmail.com -- /Users/leopard/Library/Mail/V2/[email protected]@imap.gmail.com
    04/05/2015 18:52:37.542 mds[55]: (DiskStore.Error:1417) Unexpected file  dev:16777225 storeDev:16777218 mode:41ed hint:3105498 oid:3105498 ino:3105498 fsEvents:1 /Users/leopard/Library/Mail/V2/Mailboxes -- /Users/leopard/Library/Mail/V2/Mailboxes
    04/05/2015 18:52:39.465 sandboxd[328]: ([430]) icbaccountsd(430) deny mach-lookup com.apple.CrashReporterSupportHelper
    04/05/2015 18:52:42.205 com.apple.backupd[433]: Starting automatic backup
    04/05/2015 18:52:43.308 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:52:50.022 com.apple.backupd[433]: Backing up to /dev/disk1s3: /Volumes/My Book/Backups.backupdb
    04/05/2015 18:53:40.588 mapspushd[322]: 2015-05-04 18:53:40.588, 322, 42c4fc20, [MapsAnnouncements]: server returned error: 404 for URL http://gspe21.ls.apple.com/config/announcements?hardware=iMac10,1&lang=en&os=osx &os_build=14D136&os_version=10.10.3
    04/05/2015 18:53:40.589 mapspushd[322]: 2015-05-04 18:53:40.588, 322, 42c4fc20, [MapsAnnouncements]: Failed to load announcements document: Error Domain=GEOErrorDomain Code=-601 "The operation couldn’t be completed. (GEOErrorDomain error -601.)" UserInfo=0x7fba42c4deb0 {NSErrorFailingURLStringKey=http://gspe21.ls.apple.com/config/announcements?hardware=iMac10,1&lang=en&os=osx &os_build=14D136&os_version=10.10.3, HTTP Status Code=404}
    04/05/2015 18:53:40.989 com.apple.xpc.launchd[1]: (com.apple.quicklook[440]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    04/05/2015 18:53:41.159 nbagent[439]: XPC Activity invoked with state=0
    04/05/2015 18:53:41.160 nbagent[439]: XPC Activity invoked with state=2
    04/05/2015 18:53:41.329 storeaccountd[317]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ff9a8580770> connection from pid 439 with interface <AccountServiceInterface: 0x7ff9a8598880> (PID 439)
    04/05/2015 18:53:41.739 periodic-wrapper[441]: Running daily periodic task.
    04/05/2015 18:53:43.613 storeaccountd[317]: ADI: {
        "Accept-Ranges" = bytes;
        "Cache-Control" = "max-age=14400";
        Connection = "Keep-Alive";
        "Content-Encoding" = gzip;
        "Content-Language" = "en-us";
        "Content-Length" = 793;
        "Content-Type" = "application/x-apple-plist";
        Date = "Mon, 04 May 2015 17:53:43 GMT";
        Etag = "\"e20-5071070ddab80\"";
        Expires = "Mon, 04 May 2015 21:53:43 GMT";
        "Keep-Alive" = "timeout=15, max=281";
        "Last-Modified" = "Tue, 04 Nov 2014 23:01:18 GMT";
        Server = Apache;
    04/05/2015 18:53:44.006 sandboxd[328]: ([447]) nbstated(447) deny ipc-posix-shm-read-data com.apple.AppleDatabaseChanged
    04/05/2015 18:53:58.000 kernel[0]: hfs: mounted Recovery HD on device disk0s3
    04/05/2015 18:53:58.472 mdworker[366]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.474 mdworker[435]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.476 mdworker[436]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.476 mdworker[437]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.478 CoreServicesUIAgent[359]: unexpected message <OS_xpc_error: <error: 0x7fff76be0c60> { count = 1, contents =
      "XPCErrorDescription" => <string: 0x7fff76be0f70> { length = 18, contents = "Connection invalid" }
    }>
    04/05/2015 18:53:58.478 mdworker[438]: (ImportBailout.Error:1325) Asked to exit for Diskarb
    04/05/2015 18:53:58.558 fseventsd[42]: Logging disabled completely for device:1: /Volumes/Recovery HD
    04/05/2015 18:53:58.565 mds[55]: (Volume.Normal:2464) volume:0x7f96c413b000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    04/05/2015 18:53:58.000 kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    04/05/2015 18:56:38.724 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:56:39.031 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:56:39.031 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:56:40.704 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:56:40.977 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:56:40.977 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:56:43.160 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:56:43.428 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:56:43.428 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:00.920 WindowServer[154]: CGXDisplayDidWakeNotification [729933074334]: posting kCGSDisplayDidWake
    04/05/2015 18:57:00.920 WindowServer[154]: handle_will_sleep_auth_and_shield_windows: Deferring.
    04/05/2015 18:57:01.086 identityservicesd[287]: <IMMacNotificationCenterManager: 0x7fd52247b130>: notification observer: com.apple.iChat   notification: __CFNotification 0x7fd522414040 {name = _NSDoNotDisturbDisabledNotification}
    04/05/2015 18:57:01.235 identityservicesd[287]: <IMMacNotificationCenterManager: 0x7fd52247b130>:    NC Disabled: NO
    04/05/2015 18:57:01.241 identityservicesd[287]: <IMMacNotificationCenterManager: 0x7fd52247b130>:   DND Enabled: NO
    04/05/2015 18:57:01.242 identityservicesd[287]: <IMMacNotificationCenterManager: 0x7fd52247b130>: Updating enabled: YES   (Topics: (
    04/05/2015 18:57:06.630 com.apple.backupd[433]: Will copy (547 KB) from Macintosh HD
    04/05/2015 18:57:06.720 com.apple.backupd[433]: Found 14392 files (112.99 GB) needing backup
    04/05/2015 18:57:06.728 com.apple.backupd[433]: 136.19 GB required (including padding), 118.1 GB available
    04/05/2015 18:57:09.840 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:57:10.119 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:57:10.119 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:12.387 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:57:12.668 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:57:12.669 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:14.340 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:57:14.619 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:57:14.619 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:14.620 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-05-02-204937 containing 782.8 MB; 118.88 GB now available, 136.19 GB required
    04/05/2015 18:57:22.106 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-05-03-181125 containing 31.6 MB; 118.92 GB now available, 136.19 GB required
    04/05/2015 18:57:22.108 com.apple.backupd[433]: Removed 2 expired backups so far, more space is needed - deleting oldest backups to make room
    04/05/2015 18:57:22.281 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 18:57:22.562 Mail[309]: XOAUTH2 requires user
    04/05/2015 18:57:22.562 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    04/05/2015 18:57:47.959 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-04-25-125849 containing 2.94 GB; 121.86 GB now available, 136.19 GB required
    04/05/2015 18:57:47.960 com.apple.backupd[433]: Removed 3 expired backups so far, more space is needed - deleting oldest backups to make room
    04/05/2015 18:58:01.552 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-04-26-110446 containing 6.31 GB; 128.17 GB now available, 136.19 GB required
    04/05/2015 18:58:01.554 com.apple.backupd[433]: Removed 4 expired backups so far, more space is needed - deleting oldest backups to make room
    04/05/2015 18:58:30.290 com.apple.backupd[433]: Deleted backup /Volumes/My Book/Backups.backupdb/Paul Breeden’s imac (2)/2015-04-27-095120 containing 110.88 GB; 239.05 GB now available, 136.19 GB required
    04/05/2015 18:58:30.290 com.apple.backupd[433]: Deleted 5 backups containing 120.95 GB total; 239.05 GB now available, 136.19 GB required
    04/05/2015 18:58:30.290 com.apple.backupd[433]: Backup date range was shortened: oldest backup is now Apr 28, 2015
    04/05/2015 18:59:01.076 com.apple.xpc.launchd[1]: (com.apple.quicklook[533]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    04/05/2015 18:59:09.015 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:59:10.846 nsurlstoraged[308]: purgeEntireFileSystemStore - failed to rename the current cache dir /Users/leopard/Library/Containers/com.apple.mail/Data/Library/Caches/com.apple. mail/fsCachedData to new cache dir /var/folders/wv/x9z7l4911p33dv8jyv6nby6m0000gn/T/fsCachedData_remove.  Errno=18
    04/05/2015 18:59:14.837 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 18:59:51.249 spindump[412]: Saved spin report for System Preferences version 14.0 (14.0) to /Library/Logs/DiagnosticReports/System Preferences_2015-05-04-185951_Paul-Breedens-imac-5.spin
    04/05/2015 19:00:05.000 kernel[0]: process WindowServer[154] caught causing excessive wakeups. Observed wakeups rate (per sec): 157; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 66094
    04/05/2015 19:00:05.871 com.apple.xpc.launchd[1]: (com.apple.ReportCrash.Root[544]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash.DirectoryService
    04/05/2015 19:00:05.875 SubmitDiagInfo[340]: Couldn't load config file from on-disk location. Falling back to default location. Reason: Won't serialize in _readDictionaryFromJSONData due to nil object
    04/05/2015 19:00:11.473 spindump[412]: Saved wakeups_resource.diag report for WindowServer version ??? (???) to /Library/Logs/DiagnosticReports/WindowServer_2015-05-04-190011_Paul-Breedens-im ac-5.wakeups_resource.diag
    04/05/2015 19:00:56.197 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    04/05/2015 19:00:56.530 iconservicesd[59]: Failed to move temp file /Library/Caches/com.apple.iconservices.store/B9FF2D6E-5D0C-1218-402C-B706F28B0A 68.isdata.tmp to /Library/Caches/com.apple.iconservices.store/B9FF2D6E-5D0C-1218-402C-B706F28B0A 68.isdata with error: Error Domain=NSCocoaErrorDomain Code=516 "“B9FF2D6E-5D0C-1218-402C-B706F28B0A68.isdata.tmp” couldn’t be moved to “com.apple.iconservices.store” because an item with the same name already exists." UserInfo=0x7fb949c13070 {NSSourceFilePathErrorKey=/Library/Caches/com.apple.iconservices.store/B9FF2D6E -5D0C-1218-402C-B706F28B0A68.isdata.tmp, NSUserStringVariant=(
        Move
    ), NSDestinationFilePath=/Library/Caches/com.apple.iconservices.store/B9FF2D6E-5D0 C-1218-402C-B706F28B0A68.isdata, NSFilePath=/Library/Caches/com.apple.iconservices.store/B9FF2D6E-5D0C-1218-402C -B706F28B0A68.isdata.tmp, NSUnderlyingError=0x7fb949c11ba0 "The operation couldn’t be completed. File exists"}
    04/05/2015 19:00:57.204 QuickLookSatellite[545]: Failed to obtain sandbox extension for path=/Users/leopard/Library/Caches/com.apple.quicklook.satellite. Errno:1
    04/05/2015 19:00:57.211 QuickLookSatellite[545]: Failed to obtain sandbox extension for path=/Users/leopard/Library/Caches/com.apple.quicklook.satellite. Errno:1
    04/05/2015 19:00:57.796 QuickLookSatellite[545]: CGSConnectionByID: 0 is not a valid connection ID.
    04/05/2015 19:00:57.796 QuickLookSatellite[545]: Invalid Connection ID 0
    04/05/2015 19:01:02.753 sandboxd[328]: ([545]) QuickLookSatelli(545) deny file-issue-extension /Users/leopard/Library/Caches/com.apple.quicklook.satellite
    04/05/2015 19:01:02.824 sandboxd[328]: ([545]) QuickLookSatelli(545) deny mach-lookup com.apple.nsurlstorage-cache
    04/05/2015 19:01:02.837 sandboxd[328]: ([545]) QuickLookSatelli(545) deny file-issue-extension /Users/leopard/Library/Caches/com.apple.quicklook.satellite
    04/05/2015 19:01:02.896 sandboxd[328]: ([545]) QuickLookSatelli(545) deny mach-lookup com.apple.nsurlstorage-cache
    04/05/2015 19:01:08.015 com.apple.xpc.launchd[1]: (com.apple.quicklook.satellite.7940DB53-496F-47D2-87E2-C3EE3CBF1E27[545]) Service exited due to signal: Killed: 9
    04/05/2015 19:01:19.128 apsd[75]: Illegal subject name missing 'courier.push.apple.com' (2.5.4.3): ({
        label = "2.5.4.6";
        "localized label" = "2.5.4.6";
        type = string;
        value = US;
        label = "2.5.4.8";
        "localized label" = "2.5.4.8";
        type = string;
        value = California;
        label = "2.5.4.7";
        "localized label" = "2.5.4.7";
        type = string;
        value = Cupertino;
        label = "2.5.4.10";
        "localized label" = "2.5.4.10";
        type = string;
        value = "Apple Inc.";
        label = "2.5.4.3";
        "localized label" = "2.5.4.3";
        type = string;
        value = "courier.sandbox.push.apple.com";
    04/05/2015 19:01:24.087 Adobe InDesign CS5[550]: WARNING: The Gestalt selector gestaltSystemVersion is returning 10.9.3 instead of 10.10.3. Use NSProcessInfo's operatingSystemVersion property to get correct system version number.
    Call location:
    04/05/2015 19:01:24.087 Adobe InDesign CS5[550]: 0   CarbonCore                          0x93ff9291 ___Gestalt_SystemVersion_block_invoke + 135
    04/05/2015 19:01:24.087 Adobe InDesign CS5[550]: 1   libdispatch.dylib                   0x9a9460b5 dispatch_once_f + 251
    04/05/2015 19:01:24.087 Adobe InDesign CS5[550]: 2   libdispatch.dylib                   0x9a9470d8 dispatch_once + 31
    04/05/2015 19:01:24.088 Adobe InDesign CS5[550]: 3   CarbonCore                          0x93f7269d _Gestalt_SystemVersion + 1050
    04/05/2015 19:01:24.088 Adobe InDesign CS5[550]: 4   CarbonCore                          0x93f717c0 Gestalt + 150
    04/05/2015 19:01:24.088 Adobe InDesign CS5[550]: 5   AdobeAFL                            0x016ebfae _ZN5adobe3afl12MacFileUtils13AFileToFSSpecERKNS0_5AFileER6FSSpec + 5254
    04/05/2015 19:01:24.088 Adobe InDesign CS5[550]: 6   ???                                 0x8feb70b3 0x0 + 2414571699
    04/05/2015 19:01:28.908 Mail[309]: {"status":"400","schemes":"Bearer","scope":"https://mail.google.com/"}
    04/05/2015 19:01:28.952 Adobe InDesign CS5[550]: The function ‘CGSFlushWindow’ is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance. Please use `CGSFlushWindowContentRegion' instead.
    04/05/2015 19:01:29.229 Mail[309]: XOAUTH2 requires user
    04/05/2015 19:01:29.229 Mail[309]: Failed to start the SASL connection
    SASL(-1): generic failure: XOAUTH2 requires user
    Hope this isn't too much ... thanks again for everyone's input.

  • My daughter has sent me over 100 photos via 8 messages and can't see them as message crashes every time I try to open, probably too much data but what do I do?

    My daughter has sent me photos to my iPad mini, when I go to messages it crashes, probably too much data, what can I do?

    My daughter has sent me photos to my iPad mini, when I go to messages it crashes, probably too much data, what can I do?

  • I had bought the iphone 5 four months ago. The problem is that it gets heated too much. I noticed it recently. What should I do? Should I take it to apple store to replace? Will they replace my iphone 5?

    I had bought the iphone 5 four months ago. The problem is that it gets heated too much. I noticed it recently. What should I do? Should I take it to apple store to replace? Will they replace my iphone 5?

    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414
    If you try all these steps and you still have issues... Then a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step...
    Be sure to make an appointment first...

  • New iMac 27"  and just plugged in a Apple USB superdrive and get message, "Because a USB device was drawing too much power from your computer, one or more of your USB devices have been disabled."  I am trying to load Office mac2011  what to do?

    I have a new iMac 27"  and just plugged in a Apple USB superdrive and get message, "Because a USB device was drawing too much power from your computer, one or more of your USB devices have been disabled."  I am trying to load Office mac2011  what to do?

    If you just bought the iMac and the Sjuperdrive take the superdrive back and get a refund. The by any other brand external DVD drive that connects by USB and try that. Most come with a Y USB cable to allow you to connect to 2 USB ports to supply enogh power to the drive IF Needed.
    Or take both back and get a refund on both, you have 14 days to return it no questions asked, and buy another iMac and some other brand external DVD drive.

  • Because a USB device was drawing too much power from your computer, one or more of your USB devices have been disabled. This shows up even when I am not connected to a USB. what do you think the problem is?

    Because a USB device was drawing too much power from your computer, one or more of your USB devices have been disabled. - This is what shows up sometimes even when no USB is connected. What could be the reason?

    Try a different USB cord, seen this many many times, its highly likely a damaged USB cord.
    Restart the computer to redefine Port definition.  If still a problem
    You can also resetting PRAM/NVRAM:  http://support.apple.com/kb/ht1379
    MacBook Pro (15-inch Mid 2012), OS X Mavericks (10.9), i7 500GB 16GB RAM iPhone5 iOS7.0.3

  • 2011 Macbook Pro suddenly says no space available on start-up disk (plenty available) and USB drawing too much power (only charging phone). What's going on with my computer? No longer able to charge my iPhone 5.

    Hi, all.
    Two days ago I was using my computer, a 2011 Macbook Pro, and suddenly got the error message reading "Your Mac OS X startup disk has no more space available for application memory. To avoid problems with your computer, quit any applications you are not using. Closing windows and removing files from your startup disk will also help."
    I was only using Google Chrome, nothing was running in the background, and I have 443 of 449.25 GB available (this is after clean-up I conducted after receiving the error message, but probably cleaned up less than 25 GB), so there should be no shortage of space. However, the message kept popping up and I deleted a few files and eventually it went away and hasn't reappeared.
    However, last night and then again this morning I have been getting the error message that my USB drive is pulling too much power and has been disable. All that was plugged in was my iPhone 5 on the charger and my computer is also on its charger, so I don't know why this would be an issue, either. I have always charged my phone this way and never had a problem until today.
    I haven't been able to charge my phone since. What's going on with my computer?

    Regarding the USB, see if zapping the PRAM helps.
    Regarding your storage space check out the following: 
    HD Space Checkers:
    Disk Inventory X (FREE)
    WhatSize (SHAREWARE)
    OmniDiskSweeper (FREE)
    GrandPerspective (FREE - donation)
    Mac Performance Guide
    Slimming your hard drive
    ===============
    Quick fix How To Quickly Free Up Hard Drive Space on Mac OS
    http://www.youtube.com/watch?v=fO-mlLApEuk

  • Itunes is taking up too much hard drive space on pc? what do I do?

    I love the 20 gb ipod i recently got but it now with just 120 songs seems to have taken up too much space on pc hard-drive (ibm) If i allow it to compress to library what will happen to those songs when i re sync? Guess Im afraid theyll disappear from ipod itself.

    You might find better help in the iTunes for Windows discussion if you are using Windows.

Maybe you are looking for

  • I get an error message when updating CC apps. I'm using a Mac Mini. Anyone know why?

    My computer keeps alerting me that there are updates to my CC applications. But partway through updating, I get an error message saying it couldn't be completed. I'm running Mac Version 10.7.5. My computer is a Mac Mini with a 1.83 GHz Intel Core 2 D

  • Application error occurred during request processing. TCODE - RSPLAN.

    while running the BI Integration Planning When i Click Start Modeler I am getting this error described below  Application error occurred during request processing.   Details:   com.sap.tc.webdynpro.services.sal.core.DispatcherException: The requested

  • Java.util.zip.ZipException in starting the server

    Hi everybody, I've just installed an ear file and the application server crashes in starting I use Websphere Application Server 6 and the development tool is Eclipse Ganimede Here is the stack: [19/04/10 10.07.05:218 CEST] 00000014 jsp           W co

  • Plain Text Message from Outlook being converted to RTF thru Gateway

    Hi, I have the GW Gateway running in a Proof of Concept environment. When GroupWise users send Plain Text format messages thru to Exchange, the message is delivered in Rich Text Format. HTML format is honoured through the gateway - i.e. HTML format m

  • Music via email

    anyone know of a site that I can get music via email (I can get ring tones that way).  I don't have an internet plan covering downloads. Cheers if you do.