PRAM reset not having any effect

I have inadvertently left my 2011 MBP running with a processor intensive music app running. The battery ran out before i realised..
When i attached the power lead to charge it, the computer automatically restarted without even pressing the power button. The computer had not entered safe sleep mode, presumably because my music software was still running.
Since then the computer will not ever enter safe sleep when the power runs down. The battery just cuts out each time when it drops to less than 5%, it does not run out at 0% like it usually does.
I'm not really sure if it is the logic board battery because i have had this issue a couple of times before but it rectified itself after a few days.
Anyone have any thoughts on this? I have checked that safe sleep is enabled which it is, but the computer just cuts out before safe sleep kicks in.

Bump...
Anyone?

Similar Messages

  • I am trying to create mp3 version of itune songs.  I have gone through the preference sequence to be mp3 encoder but this is not having any effect.  I have also tired from file tab to create a version but this is not available to action

    I am trying to create mp3 version of itune songs.  I have gone through the preference sequence to be mp3 encoder but this is not having any effect.  I have also tired from file tab to create a version but this is not available to action showing as lite grey.
    Any help would be appreciated

    I am trying to create mp3 version of itune songs.  I have gone through the preference sequence to be mp3 encoder but this is not having any effect.  I have also tired from file tab to create a version but this is not available to action showing as lite grey.
    Any help would be appreciated

  • Query String not having any effect in MSIE

    I have a very strange problem. I have a set of JSPs that uses a date to change the result of the page, and passes that date in a query string. So:
    http://mysite.com/result.jsp?date="2003-08-02"
    should produce a different result from
    http://mysite.com/result.jsp?date="2003-07-25"
    The operation works just fine in Mozilla, but when I click on the same set of hyperlinks using Internet Explorer the displayed page is always the same. What is displayed is consistent with what I should see if the query string was NULL or if it was empty, but I cannot tell whether that is the problem - that is, whether the browser is passing nothing. However, the link that is displayed in the address bar contains the proper query string, even when the displayed page is incorrect.
    Thinking that this might be a cache problem, I tried adding lines to disable the browser cache:
    <META http-equiv="Cache-Control" content="no-cache">
    <META http-equiv="Pragma" content="no-cache">
    Although come to think of it, I am not sure that I put those in the right place. Should those go in between the <head> and </head> tags, or before the <head> tag?
    That is a pretty basic question, but I just don't use META tags very much.
    Any help will be much appreciated. Thank you in advance.
    Charlie

    I don't know the answer off the top of my head, and I don't have a Mozilla browser installed on this computer.
    However, the easiest way to define the problem appears to be to create a new JSP page that simply repeats back to the user what the passed parameters are. Something along the lines of...
    <BODY>
    <HR>
    <P>
    DATE = <%= request.getParameter( "date" ) %><BR>
    </P>
    <HR>
    </BODY>
    I realize this is painfully obvious, but I've found that many of my students don't realize that they can write debugging tools as well, or likewise test and eliminate possibilities.
    I know you (Cac67) have already tried this, but my first guess would be that the JSP is somehow getting 2003-08-02 just fine from Mozilla, and yet only 2003 from IE; everything after the hyphen is truncated.
    And yes, all metatags go between the <HEAD> and </HEAD> tags.

  • I purchased an apple gift card, but i am not having any success adding the money to my itunes account or apple account so i can purchase music or apps, how can i do this

    I purchased an apple gift card, but i am not having any success adding the money to my itunes account or apple account so i can purchase music or apps, how can i do this

    If you bought an Apple gift card, then you cannot use it in the iTunes store.  You can only use it in the Apple store for hardware.
    You would need an iTunes gift card to buy anything in iTunes

  • Resizing a TIFF File: Overwriting TIFFFields does not have any effect

    Hi,
    I have some TIFF files that I am receiving through a FAX server. Some of the TIFF files have an image length of *1077 pixels and a DPI of 200x98*. These images open fine in generic viewers like Microsoft Image Viewer and IrfanView and the image size in the information dialog shows up fine (1752x2158). But when I open the images in a LeadTools viewer (that works off TIFF Header tags), the image appears stretched out.
    I am trying to re-sample the image to make it a true Letter size image (1700x2200) with resolution of 200x200. I have been able to set the TAG_X_RESOLUTION and TAG_Y_RESOLUTION which I can see changed in the Tag Viewer. But changing the following tags does not have any effect on the resulting image:
    TAG_IMAGE_WIDTH
    TAG_IMAGE_LENGTH
    TAG_ROWS_PER_STRIP
    the following is the code I am using, I have tried all possible ways (removing TIFFFeilds and then adding them), but it has no effect. The last options is to use a Print Driver from within Java and Print the image (that re-samples it into a 8.5x11 inch image with 200 DPI). At this point, I am just curious about writing TIFFFields with images. Any ideas are appreciated:
    Thanks,
    Manuj
    +
    import java.io.BufferedOutputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.util.Iterator;
    import javax.imageio.IIOImage;
    import javax.imageio.ImageIO;
    import javax.imageio.ImageReader;
    import javax.imageio.ImageWriter;
    import javax.imageio.metadata.IIOMetadata;
    import javax.imageio.stream.ImageInputStream;
    import javax.imageio.stream.ImageOutputStream;
    import org.w3c.dom.NamedNodeMap;
    import org.w3c.dom.Node;
    import com.sun.media.imageio.plugins.tiff.BaselineTIFFTagSet;
    import com.sun.media.imageio.plugins.tiff.TIFFDirectory;
    import com.sun.media.imageio.plugins.tiff.TIFFField;
    import com.sun.media.imageio.plugins.tiff.TIFFImageWriteParam;
    import com.sun.media.imageio.plugins.tiff.TIFFTag;
    import com.sun.media.imageioimpl.plugins.tiff.TIFFT6Compressor;
                   //set the input stream for to the reader
                   tiffFileReader.setInput(tiffFileInputStream);     
                   //define the writer
                   ImageWriter tiffWriter = (ImageWriter) ImageIO.getImageWritersByMIMEType("image/tiff").next();
                   //define the writer param with compression;
                   TIFFImageWriteParam writeParam = (TIFFImageWriteParam)tiffWriter.getDefaultWriteParam();
                   TIFFT6Compressor compressor = new TIFFT6Compressor();
                   writeParam.setCompressionMode(TIFFImageWriteParam.MODE_EXPLICIT);
                   writeParam.setCompressionType(compressor.getCompressionType());
                   writeParam.setTIFFCompressor(compressor);
                   writeParam.setCompressionQuality(Float.parseFloat("1"));
    // get the metaData
                   IIOMetadata imageMetadata = null;
                   IIOImage testImage = null;
                   for(int i=0;i<filePageCount;i++)
                        imageMetadata = tiffFileReader.getImageMetadata(i);
                        TIFFDirectory dir = TIFFDirectory.createFromMetadata(imageMetadata);
              // Get {X,Y}Resolution tags.
              BaselineTIFFTagSet base = BaselineTIFFTagSet.getInstance();
              TIFFTag tagXRes = base.getTag(BaselineTIFFTagSet.TAG_X_RESOLUTION);
              TIFFTag tagYRes = base.getTag(BaselineTIFFTagSet.TAG_Y_RESOLUTION);
              TIFFTag tagImageWidth = base.getTag(BaselineTIFFTagSet.TAG_IMAGE_WIDTH);
    TIFFTag tagImageLength = base.getTag(BaselineTIFFTagSet.TAG_IMAGE_LENGTH);
              TIFFTag tagRowsPerStrip = base.getTag(BaselineTIFFTagSet.TAG_ROWS_PER_STRIP);
              TIFFField fieldRowsPerStrip = new TIFFField(tagRowsPerStrip, TIFFTag.TIFF_SHORT, 1, (Object)new char[]{2200});
              // Create {X,Y}Resolution fields.
              TIFFField fieldXRes = new TIFFField(tagXRes, TIFFTag.TIFF_RATIONAL,1, new long[][] {{200, 1}});
              TIFFField fieldYRes = new TIFFField(tagYRes, TIFFTag.TIFF_RATIONAL,1, new long[][] {{200, 1}});
              // Create Width/Height fields.
              TIFFField fieldImageWidth = new TIFFField(tagImageWidth,TIFFTag.TIFF_SHORT,1, (Object)new char[]{1728});
              TIFFField fieldImageLength = new TIFFField(tagImageLength, TIFFTag.TIFF_SHORT,1, (Object)new char[]{2200});
              //TIFFTag imageLengthTag = fieldImageLength.getTag();
              // Append {X,Y}Resolution fields to directory.
              dir.addTIFFField(fieldXRes);
              dir.addTIFFField(fieldYRes);
              //add Image Length and height parameters
              dir.addTIFFField(fieldImageWidth);
              dir.addTIFFField(fieldImageLength);
              // dir.removeTIFFField(278);
              dir.addTIFFField(fieldRowsPerStrip);
    testImage = new IIOImage(tiffFileReader.read(i), null, dir.getAsMetadata());
    +
    The resulting image with this carries the updated DPI values (200x200) but still carries the old values of 1752x1077, the length being exactly half of what Irfan view is showing.
    Edited by: Manuj on Nov 2, 2010 10:48 AM

    Your problem for some reason sounds familiar.
    EDIT
    Ok, now I remember. Your post is like this one in the old forums,
    http://forums.sun.com/thread.jspa?forumID=540&threadID=5425983
    Basically, for viewing purposes Irfanview scales the image's height by 2 and changes the dpi to *200x196*. It does this to achieve a 'square' pixel. The image that appears on screen now looks roughly how a printer would print it. However, the image data is still the same squished 1752x1077 image.

  • 3 Files are in recovery modes & we are not having any backup, how to recove

    3 Files are in recovery modes & we are not having any backup, how to recover.
    select from v$recover_file;
    FILE# ONLINE ONLINE_ ERROR CHANGE# TIME
    137 ONLINE ONLINE 1.7142E+10 05-MAR-11
    138 ONLINE ONLINE 1.7142E+10 05-MAR-11
    139 ONLINE ONLINE 1.7142E+10 05-MAR-11
    These 3 files are part of tablespace, whcih is having total 26 files
    SQL> select FILE#,TS#,name from v$datafile where TS#=12;
    FILE# TS# NAME
    137 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_00.dbf
    138 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_01.dbf
    139 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_02.dbf
    140 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_03.dbf
    141 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_04.dbf
    142 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_05.dbf
    177 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_06.dbf
    178 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_07.dbf
    179 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_08.dbf
    180 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_09.dbf
    181 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_10.dbf
    182 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_11.dbf
    183 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_12.dbf
    184 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_13.dbf
    185 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_14.dbf
    186 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_15.dbf
    187 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_16.dbf
    188 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_17.dbf
    189 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_18.dbf
    190 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_19.dbf
    192 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_20.dbf
    195 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_21.dbf
    196 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_22.dbf
    200 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_23.dbf
    257 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_24.dbf
    258 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_25.dbf
    260 12 /dbo/data/IBPROD/IBPROD_TDB_IDX_26.dbf
    Pls treat it urgent.

    Pls treat it urgent. If it's urgent , open a priority 1 service request on My Oracle Support/metalink.
    If it's not so urgent, set the datafiles to OFFLINE, so you can open the database.
    Without backup you only can recover if you have ALL archivelogs since creation of the files. Normally that's rarely the case.
    Werner

  • Will not having any ink in the color cartage cause the printer to fail the alignment test.

    Will not having any ink in the color cartage cause the printer to fail the alignment test.

    Hi,
    Yes. Usually the printer uses a combination of black and colour blocks to perform an aligment.  The specific patterns differ from printer to printer but the pattern is either read by an internal sensor or you have to take the page and put it on the scanner to scan the alignment page in some all-in-one printers.
    ---- If my answer was helpful please click the Kudos star.
    If your problem is solved please click the Accept as Solution button so other forum users can use the solution.---->
    (I am an HP employee) I am not a expert on all our products, but I'll do my best to help you.

  • I have misplaced my iphone. It has not been stolen as it is still ringing. Is there anyway of locating the phone despite not having any relevant apps installed?

    Hi,
    I have lost my iphone but it has not been stolen as it is still ringing. Is there a way of being able to locate the iphone at all, despite not having any relevant apps installed?
    Andy

    Other than physically looking for it, no. There is no way to locate it.

  • HT3606 I have Mac OS X version 10.5.8 and so im wondering what is the next step i need to get. i have tried to get snow leopard and other things and not having any lukck . can any one help me out pls.

    I have Mac OS X version 10.5.8 and so im wondering what is the next step i need to get. i have tried to get snow leopard and other things and not having any lukck . can any one help me out pls.

    If your Mac meets these requirements:
    http://support.apple.com/kb/SP575
    then you can order a Snow Leopard disk and install it.
    http://store.apple.com/us/product/MC573Z/A/mac-os-x-106-snow-leopard
    Ciao.

  • I cannot install the latest version of iTunes on laptop (windows xp). I receive a windows installer error message. Not having any issues installing any other software.  Was having no issue syncing w iPhone. Made the mistake of uninstalling prior version.

    I cannot install the latest version of iTunes on my laptop (windows xp). I receive a windows installer error. Am not having any problem installing other software or syncing w iPhone.  Made the mistake today of uninstalling my older version and not cannot install new.  Need new version in order to sync w new iPad.
    Any help would be appreciated.

    Apparently, security programs like Macafee and Norton view Itunes updates as new programs and block then from access. If you add Itunes to the list of exemptions, it solves the problem.

  • Joining Tables not having any Common Fields

    Dear Gurus,
    I know how to join the tables having common fields through T-CODE: SQVI,  but do not know how to join the tables not having any common fields.
    kindly provide me the step by step procedure to handle this, so that I can generate the Reports.
    Wishes,
    Abhishek

    Check following link. I feel it might of some assistance for you:
    SAP Query - illegal Join condition
    Regards
    J Prakash

  • Code does not make any effect:need help

    hello friends,
    now i am going to describe the problem i am phasing
    actually i have embedded japplets in a jsp page(appletjsp) and want to communicate japplets indeed jsp to a servlet in the diffrent derectory but in same context root.
    moreover, i have written code at applet and servlet side both. actually there is a next button in one of japplets(embedded in appletjsp) and i have written the code(for servlet communication) inside button's mouse clicked event. and at servlet side, as usual i have got an inputstream from request and want to forward this request(after getting request dispatcher) to another jsp page(proposing to display this jsp page after clicking next button inside appletjsp ).
    now the problem that made me a bit confused is that when i click next button after running jsp page(containing japplets) then neither there is any error/exception at server/IE's sun java console nor any effect of code at servlet side.
    actually i am not sure that the servlet side code does not make any effect rather it is ony my assumption.
    although i am very new in java and as what i know, to send back response to client side, servlet class needs to be run at server side and probabbly for that there must be a sepreat request from client's applet to server(please dont flame me if i am wrong).
    so please tell  me how can i get running another jsp page running(to which i trying to get request dispatcher inside servlet) after clicking next button?
    applet code
            try{      
            String[] data    ={"santosh","kumar","tripathi"};        
            String strwp ="/UASProject/RegistrationData";              
            URL jspURL = new URL(getCodeBase(),strwp);             
            System.out.println(jspURL);
            URLConnection jspCon = jspURL.openConnection();               
            jspCon.setUseCaches(false);
            jspCon.setDoOutput(true);
            jspCon.setDoInput(false); 
            jspCon.setDefaultUseCaches(false);   
            jspCon.setRequestProperty("Content-Type", "application/x-java-serialized-object");      
           BufferedOutputStream bos=new BufferedOutputStream( jspCon.getOutputStream());
            ObjectOutputStream oboutStream = new ObjectOutputStream(bos);             
            oboutStream.writeObject(data);         
            oboutStream.flush();        
            bos.close();
            oboutStream.close();        
         //  getAppletContext().showDocument(new URL(getCodeBase().getProtocol(),getCodeBase().getHost(),getCodeBase().getPort(),"/UASProject/faces/Editpage.jsp"),"_self");        
         }catch(Exception e) 
           {System.out.println(e);}servlet code
             try { 
                    //    response.setContentType("application/x-java-serialized-object");
                         BufferedInputStream bis=new BufferedInputStream( request.getInputStream());
                        ObjectInputStream inputFromjsp = new ObjectInputStream(bis);                                      
                        reg_data = (String[])inputFromjsp.readObject();                             
                        out.println(reg_data[1]);
                        bis.close();
                        inputFromjsp.close();    
                       HttpSession session =request.getSession(true);
                      session.setAttribute("first_name",reg_data[0]);
                        getServletContext().getRequestDispatcher("http://localhost:8084//UASProject/faces/Editpage.jsp").forward(request,response);
                   } catch (Exception e) {e.printStackTrace();}    although this topic has been made too long, even then please fix my problem.
    thanks

    When you formatted the system you erased everything on the harddrive, obviously, and so its just a matter of putting back the Apps and data that you want from your Backup that you made, BEFORE reformatting the harddrive.  You did make a backup, didn't you??   Your Time machine or other external harddrive backup can be used with Migration Assistant to return the iLife Apps to the iMac.  If he indeed purchased the iLife Apps from the App Store, then you would need to use His Apple ID account to redownload them; not yours.
    Oh, and to answer your other question, no, iLife is not a part of any version of OSX itself.
    Hope this helps
    Message was edited by: Radiation Mac

  • TS1702 was not having any problem running apps Now now none of the apps will run

    Was not having any problems running any apps on my ipad3 and now none of the apps will launch all apps were with obtained through apple app store the only thing different was on Sun I connected my pad to my pc for the first time to transfer some music to day was the first time I tried to run any apps since then.and that's whei encounter the problem

    Download another app - any free app is fine. See if that helps.

  • I am not having any luck trying to create a brochure with ID in CC

    I am not having any luck trying to create a brochure with ID in CC. i thought i remembered it to be something you can use  in Bridge also. Can't seem to find that either.
    anyone have any help they can offer?

    If you're starting from scratch learning InDesign, know that it's difficult to learn just by asking a few questions. You'll do much better either by buying an excellent, inexpensive book by Sandee Cohen:
    InDesign CC: Visual QuickStart Guide
    Or by watching some videos on www.Lynda.com. Here's the best introduction:
    InDesign CC Essential Training

  • Anyone else not having any problems accessing iTMS?

    Am I the only person not having any problems accessing iTMS all weekend? I'm using telus.net as my ISP.
    Note: This thread is posted here as satire to counteract the echo chamber of people with network routing issues blaming Apple for their ISP problems.

    Having the same problem up in the northeast. ISP is RR.com but does not seem to be related. I also ran a tracer and it looks like Level3 (backbone or server farm) is having the issue. Any thoughts?
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.
    C:\Documents and Settings\itunes>tracert phobos.apple.com
    Tracing route to phobos.apple.com [17.250.236.65]
    over a maximum of 30 hops:
    3 7 ms 8 ms 9 ms pos1-0.ptldmeptl-rtr01.nyroc.rr.com [24.25.160.4
    9]
    4 26 ms 26 ms 25 ms rdc-24-92-224-61.nyroc.rr.com [24.92.224.61]
    5 33 ms 26 ms 24 ms son0-0-1.syrcnyspp-rtr06.nyroc.rr.com [24.92.224
    .229]
    6 42 ms 33 ms 36 ms 4.78.166.241
    7 37 ms 58 ms 40 ms ge-7-0-0.mp2.Philadelphia1.Level3.net [209.247.9
    .253]
    8 112 ms 110 ms 112 ms as-0-0.bbr1.SanJose1.Level3.net [64.159.1.133]
    9 111 ms 111 ms 113 ms so-14-0.hsa3.SanJose1.Level3.net [4.68.114.154]
    10 * * * Request timed out.
    11 * * * Request timed out.
    12 * * * Request timed out.
    13 * * * Request timed out.
    14 * * * Request timed out.
    15 * * * Request timed out.
    16 * * * Request timed out.
    17 * * * Request timed out.
    18 * * * Request timed out.
    19 * * * Request timed out.
    20 APPLE-COMPU.hsa3.SanJose1.Level3.net [4.79.60.6] reports: Destination net
    unreachable.
    Trace complete.
    C:\Documents and Settings\itunes>tracert phobos.apple.com
    Tracing route to phobos.apple.com [17.250.236.65]
    over a maximum of 30 hops:
    1 1 ms 1 ms 2 ms 192.168.1.1
    2 10 ms 8 ms 6 ms 10.96.32.1
    3 9 ms 8 ms 8 ms pos1-0.ptldmeptl-rtr01.nyroc.rr.com [24.25.160.4
    9]
    4 25 ms 24 ms 23 ms rdc-24-92-224-61.nyroc.rr.com [24.92.224.61]
    5 25 ms 29 ms 23 ms son0-0-1.syrcnyspp-rtr06.nyroc.rr.com [24.92.224
    .229]
    6 32 ms 32 ms 31 ms 4.78.166.241
    7 36 ms 39 ms 38 ms ae-2-56.bbr2.NewYork1.Level3.net [4.68.97.161]
    8 116 ms 112 ms 112 ms as-0-0.bbr1.SanJose1.Level3.net [64.159.1.133]
    9 120 ms 118 ms 112 ms so-14-0.hsa3.SanJose1.Level3.net [4.68.114.154]
    10 * * * Request timed out.
    11 * * * Request timed out.
    12 * * * Request timed out.
    13 ^C
    C:\Documents and Settings\itunes>
      Windows XP  

Maybe you are looking for