My jdeveloper do not stop at breakpoint, please help me

Hi,
after my workstation got updating for windows office 2007, every thing become weird. right now my jdeveloper could not stop at breakpoints in java file when i debug my web application. please help me to get out from there. thanks
lease send email to [email protected] thanks
by the way, it stop at jsp file's breakpoint.
Robert
Edited by: user1853275 on May 19, 2009 3:59 PM

hello,
keep in mind that the build in debugger doesnt not find all statements valid and will step over some.
never set a breakpoint on:
try
catch
finally
etc.
I only set breakpoints on assignments and logic operators(if for etc) just to be sure.
-Anton

Similar Messages

  • Invoice Split @ VF06....not stopping at breakpoint applied in routines

    Hi All,
    This is regarding Invoice Split...from VF06 Tcode.
    We are trying to generate Invoice from Delivery  using VF06.
    But Invoice is splitting at item level.
    We tried to debug the routines for 003 & 007 as well for copy control..
    But while executing the Vf06 it is not stopping at breakpoint.....
    Please guide us how to get to the routine for debugging......
    If you have any other solution please let us know.
    Thanks
    RK

    VF06 runs in background (delegated to system) so the session break points you put in the data transfer routine won't hit.
    What you can do instead is put break point in the item data transfer routine (VTLF - item data transfer routine) and create a single invoice online using VF01. Then your break point will hit. Although this is not similar to Vf06, still you can find out which fields are being concatenated in VBRK-ZUKRI that is used as split criteria.
    Otherwise you can run the program SDBILLDL online. This program is run VF06 in background. So if you run it directly in SE38 in foreground your break points will hit, if you put them in correct data transfer routine

  • My iPad stop working suddenly i see black screen only pressing the home? and sleep button dose not solve the  problem please help?

    My iPad stop working suddenly i see black screen only pressing the home and sleep button dose not solve the problem please help ?

    Frozen or unresponsive iPad
    Resolve these most common issues:
        •    Display remains black or blank
        •    Touch screen not responding
        •    Application unexpectedly closes or freezes
    http://www.apple.com/support/ipad/assistant/ipad/
    iPad Frozen, not responding, how to fix
    http://appletoolbox.com/2012/07/ipad-frozen-not-responding-how-to-fix/
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    Black or Blank Screen on iPad or iPhone
    http://appletoolbox.com/2012/10/black-or-blank-screen-on-ipad-or-iphone/
    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    Home button not working or unresponsive, fix
    http://appletoolbox.com/2013/04/home-button-not-working-or-unresponsive-fix/
    Fixing an iPad Home Button
    http://tinyurl.com/om6rd6u
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
     Cheers, Tom

  • VideoFormat.RLE is not working..  please help

    Hi all,
    I am creating AVI file from Bitmap that are compressed(As well as non-compressed) throught RLE Algorithm
    Code makes .AVI file. But this file is not accurate..
    Please help me..
    I am attaching the code with it.
    ========================================================
    package animation;
    import java.io.*;
    import java.awt.Color;
    import java.awt.Dimension;
    import javax.media.*;
    import javax.media.control.*;
    import javax.media.protocol.*;
    import javax.media.datasink.*;
    import javax.media.format.VideoFormat;
    import bmpCreation.BitmapImage;
    public class AviCreator implements ControllerListener, DataSinkListener {
    private Object waitSync = new Object();
    private boolean stateTransitionOK = true;
    private Object waitFileSync = new Object();
    private boolean fileDone = false;
    private boolean fileSuccess = true;
    * A DataSource to read from a list of BITMAP Images
    * turn that into a stream of JMF buffers.
    * The DataSource is not seekable or positionable.
    private class ImageDataSource extends PullBufferDataSource
    private ImageSourceStream streams[];
    ImageDataSource(int width, int height, int frameRate)
    streams = new ImageSourceStream[1];
    streams[0] = new ImageSourceStream(width, height, frameRate);
    public void setLocator(MediaLocator source)
    public MediaLocator getLocator()
    return null;
    * Content type is of RAW since we are sending buffers of video
    * frames without a container format.
    public String getContentType()
    return ContentDescriptor.RAW;
    public void connect()
    public void disconnect()
    public void start()
    public void stop()
    * Return the ImageSourceStreams.
    public PullBufferStream[] getStreams()
    return streams;
    * We could have derived the duration from the number of
    * frames and frame rate. But for the purpose of this program,
    * it's not necessary.
    public Time getDuration()
    System.out.println("dur is " + streams[0].nextImage);
    //return new Time(1000000000);
    return DURATION_UNKNOWN;
    public Object[] getControls()
    return new Object[0];
    public Object getControl(String type)
    return null;
    * The source stream to go along with ImageDataSource.
    private class ImageSourceStream implements PullBufferStream
    final int width, height;
    final VideoFormat format;
    // ColorPalette clrPal;
    float frameRate;
    long seqNo = 0;
    int nextImage = 0; // index of the next image to be read.
    boolean ended = false;
    public ImageSourceStream(int width, int height, int frameRate)
    this.width = width;
    this.height = height;
    // Bug fix from Forums (next line)
    this.frameRate = (float) frameRate;
    System.out.println("FrameRate = " + frameRate);
    format = new javax.media.format.VideoFormat(VideoFormat.RLE,new Dimension(width, height),
                                                           Format.NOT_SPECIFIED,Format.byteArray,frameRate);
    * We should never need to block assuming data are read from files.
    public boolean willReadBlock()
    return false;
    * This is called from the Processor to read a frame worth
    * of video data.
    public void read(Buffer buf) throws IOException
    // Check if we've finished all the frames.
    if (nextImage >= 20)
    // We are done. Set EndOfMedia.
    System.err.println("Done reading all images.");
    buf.setEOM(true);
    buf.setOffset(0);
    buf.setLength(0);
    ended = true;
    return;
    //System.out.println("nextImage := " + nextImage);
    nextImage++;
    byte data[] = null;
    byte data_copy[] = null;
    // Check the input buffer type & size.
    if (buf.getData() instanceof byte[])
    data = (byte[]) buf.getData();
    // Check to see the given buffer is big enough for the frame.
    BitmapImage imgLoaded = new BitmapImage();
    //Note that loadBitmapImage is my own function and works fine.
    imgLoaded.loadBitmapImage("E:/Images/untitled.bmp");
    int nDataLength = imgLoaded.getByteArray().length;
    if (data == null || (data.length<nDataLength-118))
    data           = new byte[ nDataLength - 118];
    Here I am not much sure but I think Bitmap Header will be 118 Bytes.
         //Consider
    data_copy      = new byte[nDataLength];
    buf.setData(data);
    // Bug fix from Forums ( next 3 lines).
    long time = (long) (seqNo * (1000 / frameRate) * 1000000);
    buf.setTimeStamp(time);
    buf.setSequenceNumber(seqNo++);
    ("E:/ApplicationDemo/ApplicationDemo/Compressed.bmp");
    data_copy = imgLoaded.getByteArray();      
    for(int nCount=118;nCount<nDataLength;nCount++)
         data[nCount-118] = data_copy[nCount];
    buf.setOffset(0);
    buf.setLength(nDataLength-118);
    buf.setFormat(format);
    buf.setFlags(buf.getFlags() | Buffer.FLAG_KEY_FRAME);
    * Return the format of each video frame. That will be JPEG.
    public Format getFormat()
    return format;
    public ContentDescriptor getContentDescriptor()
    return new ContentDescriptor(ContentDescriptor.RAW);
    public long getContentLength()
    return 0;
    public boolean endOfStream()
    return ended;
    public Object[] getControls()
    return new Object[0];
    public Object getControl(String type)
    return null;
         @Override
         public void controllerUpdate(ControllerEvent evt) {
         if (evt instanceof ConfigureCompleteEvent
         || evt instanceof RealizeCompleteEvent
         || evt instanceof PrefetchCompleteEvent)
         synchronized (waitSync)
         stateTransitionOK = true;
         waitSync.notifyAll();
         else if (evt instanceof ResourceUnavailableEvent)
         synchronized (waitSync)
         stateTransitionOK = false;
         waitSync.notifyAll();
         else if (evt instanceof EndOfMediaEvent)
         evt.getSourceController().stop();
         evt.getSourceController().close();
         @Override
         public void dataSinkUpdate(DataSinkEvent evt) {
    if (evt instanceof EndOfStreamEvent)
    synchronized (waitFileSync)
    fileDone = true;
    waitFileSync.notifyAll();
    else if (evt instanceof DataSinkErrorEvent)
    synchronized (waitFileSync)
    fileDone = true;
    fileSuccess = false;
    waitFileSync.notifyAll();
         public boolean createAvi(int width, int height, int frameRate, String outputFile){
    // Generate the output media locators.
    MediaLocator oml;
    if ((oml = createMediaLocator(outputFile)) == null)
    System.err.println("Cannot build media locator from: " + outputFile);
    System.exit(0);
    doIt(width, height, frameRate, oml);
              return true;
         * Create a media locator from the given string.
         private static MediaLocator createMediaLocator(String url) {
              MediaLocator ml;
    //          if (url.indexOf(":") > 0 && (ml = new MediaLocator(url)) != null)
    //               return ml;
    //          if (url.startsWith(File.separator))
    //               if ((ml = new MediaLocator("file:" + url)) != null)
    //                    return ml;
    //          else
                   String file =
                        "file:" + /*System.getProperty("user.dir") + File.separator +*/ url;
                   if ((ml = new MediaLocator(file)) != null)
                        return ml;
              return null;
    private boolean doIt( int width, int height, int frameRate, MediaLocator outML) {
    ImageDataSource ids = new ImageDataSource(width, height, frameRate);
    Processor p;
    try
    System.err.println(
    "- create processor for the image datasource ...");
    p = Manager.createProcessor(ids);
    catch (Exception e)
    System.err.println(
    "Yikes! Cannot create a processor from the data source.");
    return false;
    p.addControllerListener(this);
    // Put the Processor into configured state so we can set
    // some processing options on the processor.
    p.configure();
    if (!waitForState(p, Processor.Configured))
    System.err.println("Failed to configure the processor.");
    return false;
    // Set the output content descriptor to QuickTime.
    p.setContentDescriptor(
    new ContentDescriptor(FileTypeDescriptor.MSVIDEO));
    // Query for the processor for supported formats.
    // Then set it on the processor.
    TrackControl tcs[] = p.getTrackControls();
    // for (int i = 0; i < tcs.length; i++) {
    // Format format = tcs.getFormat();
    // if (tcs[i].isEnabled() && format instanceof VideoFormat) {
    //Dimension size = ((VideoFormat)format).getSize();
    //float frameRate = ((VideoFormat)format).getFrameRate();
    //int w = (size.width % 8 == 0 ? size.width :(int)(size.width / 8) * 8);
    //int h = (size.height % 8 == 0 ? size.height :(int)(size.height / 8) * 8);
    // VideoFormat jpegFormat = new VideoFormat(
    // VideoFormat.JPEG_RTP, new Dimension(w, h), Format.NOT_SPECIFIED, Format.byteArray, frameRate);
    /// messageLabel.setText("Status: Video transmitted as: " + jpegFormat.toString());
    //int nLength = tcs.length;
    // System.out.println(nLength);
    Format f[] = tcs[0].getSupportedFormats();
    if (f == null || f.length <= 0)
    System.err.println(
    "The mux does not support the input format: "
    + tcs[0].getFormat());
    return false;
    tcs[0].setFormat(f[0]);
    System.err.println("Setting the track format to: " + f[0]);
    // We are done with programming the processor. Let's just
    // realize it.
    p.realize();
    if (!waitForState(p, Processor.Realized))
    System.err.println("Failed to realize the processor.");
    return false;
    // Now, we'll need to create a DataSink.
    DataSink dsink;
    if ((dsink = createDataSink(p, outML)) == null)
    System.err.println(
    "Failed to create a DataSink for the given output MediaLocator: "
    + outML);
    return false;
    dsink.addDataSinkListener(this);
    fileDone = false;
    System.err.println("start processing...");
    // OK, we can now start the actual transcoding.
    try
    p.start();
    dsink.start();
    catch (IOException e)
    System.err.println("IO error during processing");
    return false;
    // Wait for EndOfStream event.
    waitForFileDone();
    // Cleanup.
    try
    dsink.close();
    catch (Exception e)
    p.removeControllerListener(this);
    System.err.println("...done processing.");
    return true;
    * Block until the processor has transitioned to the given state.
    * Return false if the transition failed.
    private boolean waitForState(Processor p, int state)
    synchronized (waitSync)
    try
    while (p.getState() < state && stateTransitionOK)
    waitSync.wait();
    catch (Exception e)
    return stateTransitionOK;
    * Create the DataSink.
    private DataSink createDataSink(Processor p, MediaLocator outML)
    DataSource ds;
    if ((ds = p.getDataOutput()) == null)
    System.err.println(
    "Something is really wrong: the processor does not have an output DataSource");
    return null;
    DataSink dsink;
    try
    System.err.println("- create DataSink for: " + outML);
    dsink = Manager.createDataSink(ds, outML);
    dsink.open();
    catch (Exception e)
    System.err.println("Cannot create the DataSink: " + e);
    return null;
    return dsink;
    * Block until file writing is done.
    private boolean waitForFileDone()
    synchronized (waitFileSync)
    try
    while (!fileDone)
    waitFileSync.wait();
    catch (Exception e)
    return fileSuccess;

    As I know getSupportedFormats doesn't support BMP files.

  • Usbs not working very frustrating please help

    My usbs have all stopped working for no reason just after i did my last windows update even with a roll back it still says this error in the picture very frustrating i updated bios on my motherboard and downloaded usb drives but still did not fix the issue
    please help it says unknown usb device(device descriptor failed)whn i plug hard drives in the usb has power but it wont show up on my pc also happens with my keyboard and mouse even after driver re installs please help.

    Hi,
    For this issue,please let us know the error code.
    Meanwhile, I suggest we disable and re-enable the USB controller to check the result.
    This lets the controllers recover the USB port from its unresponsive condition.
    To disable and re-enable the USB controllers, follow these steps:
    1.Press Win+X,and select Device Manager.
    2.Expand Universal Serial Bus controllers.
    Note You might have to scroll down the list to find this item.
    3.Right-click the first USB controller under Universal Serial Bus controllers, and then click Uninstall to remove it.
    4.Repeat step 3 for each USB controller that is listed under Universal Serial Bus controllers.
    5.Restart the computer. After the computer starts, Windows will automatically scan for hardware changes and reinstall all the USB controllers that you uninstalled.
    6.Check the USB device to see whether it is working.
    Regards,
    Kelvin hsu
    TechNet Community Support

  • IMAC suddenly stops working Mouse,keyboard, wifi all stops responding. PLEASE HELP

    iMAC suddenly stops working,display is on but key board and mouse does not respond.I changed keyboard with usb also but still same.even wifi stops working also.PLEASE HELP  before there was some kernel panic errors , i updated every thing, installed an original osx mountain Lion. taken to Apple service center. They found nothing wrong with hard ware. But i am having still the same problems. It just stops responding to keyboard, mouse even wifi goes off some time. I thought it may be keyboard mouse problem so i changed them to normal usb keyboard and mouse but still the same. PLEASE PLEAE HELP.  -------- LAST ERROR REPORT IS BELOW Interval Since Last Panic Report:  687085 sec Panics Since Last Report:          2 Anonymous UUID:                    48C67BCC-4ADB-0131-8FCC-DBD9C01FBB0C  Fri Jul 19 17:23:01 2013 panic(cpu 0 caller 0xffffff80096b8655): Kernel trap at 0xffffff7f8a53f351, type 14=page fault, registers: CR0: 0x000000008001003b, CR2: 0x0000000000000060, CR3: 0x000000000bf36000, CR4: 0x0000000000000660 RAX: 0x0000000000000000, RBX: 0x0000000000000000, RCX: 0x0000000000000018, RDX: 0x0000000000000004 RSP: 0xffffff8089c4ba60, RBP: 0xffffff8089c4ba80, RSI: 0x0000000000000060, RDI: 0x00000000ffffff8f R8:  0x00000000000000ff, R9:  0x0000000000000019, R10: 0xffffff8074831004, R11: 0x0000000000000008 R12: 0x0000000000000000, R13: 0xffffff807482e0ec, R14: 0x00000000ffffffff, R15: 0x0000000000000000 RFL: 0x0000000000010297, RIP: 0xffffff7f8a53f351, CS:  0x0000000000000008, SS:  0x0000000000000010 Fault CR2: 0x0000000000000060, Error code: 0x0000000000000000, Fault CPU: 0x0  Backtrace (CPU 0), Frame : Return Address 0xffffff8089c4b700 : 0xffffff800961d626  0xffffff8089c4b770 : 0xffffff80096b8655  0xffffff8089c4b940 : 0xffffff80096ce17d  0xffffff8089c4b960 : 0xffffff7f8a53f351  0xffffff8089c4ba80 : 0xffffff7f8a525ff5  0xffffff8089c4bac0 : 0xffffff7f8a53a352  0xffffff8089c4bb50 : 0xffffff7f8a50da56  0xffffff8089c4bbb0 : 0xffffff7f8a4e5c36  0xffffff8089c4bbf0 : 0xffffff7f8a4e71b4  0xffffff8089c4bc20 : 0xffffff7f8a547d3c  0xffffff8089c4bc50 : 0xffffff7f8a4fad5b  0xffffff8089c4be00 : 0xffffff7f8a4f8a9e  0xffffff8089c4be40 : 0xffffff7f8a4fee0e  0xffffff8089c4be80 : 0xffffff7f8a5454df  0xffffff8089c4beb0 : 0xffffff7f8a58c82e  0xffffff8089c4bf00 : 0xffffff8009a4b1ab  0xffffff8089c4bf60 : 0xffffff800963e25e  0xffffff8089c4bfb0 : 0xffffff80096b3137        Kernel Extensions in backtrace:          com.apple.driver.AirPort.Atheros40(600.72.2)[EBF8D6E8-59C6-3C1C-9549-32DDA193B1 D2]@0xffffff7f8a4ad000->0xffffff7f8a5f5fff             dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f89c83000             dependency: com.apple.iokit.IO80211Family(530.4)[E86BEE31-8EE0-34BE-A53F-2571D85CC628]@0xff ffff7f8a43e000             dependency: com.apple.iokit.IONetworkingFamily(3.0)[F02560D1-ADE6-3AD9-8D05-43CB2B7C8B87]@0 xffffff7f89ddc000  BSD process name corresponding to current thread: kernel_task  Mac OS version: 12E55  Kernel version: Darwin Kernel Version 12.4.0: Wed May  1 17:57:12 PDT 2013; root:xnu-2050.24.15~1/RELEASE_X86_64 Kernel UUID: 896CB1E3-AB79-3DF1-B595-549DFFDF3D36 Kernel slide:     0x0000000009400000 Kernel text base: 0xffffff8009600000 System model name: iMac10,1 (Mac-F2268DC8)  System uptime in nanoseconds: 397672779228 last loaded kext at 256566570174: com.apple.filesystems.msdosfs     1.8.1 (addr 0xffffff7f8b624000, size 65536) last unloaded kext at 363393284081: com.apple.filesystems.msdosfs     1.8.1 (addr 0xffffff7f8b624000, size 57344) loaded kexts: com.apple.filesystems.smbfs     1.8.4 com.apple.driver.AudioAUUC     1.60 com.apple.driver.AppleHDA     2.3.7fc4 com.apple.driver.AppleMikeyHIDDriver     122 com.apple.driver.AGPM     100.12.87 com.apple.driver.AppleHWSensor     1.9.5d0 com.apple.driver.AppleUpstreamUserClient     3.5.10 com.apple.kext.AMDFramebuffer     8.1.2 com.apple.driver.AppleMikeyDriver     2.3.7fc4 com.apple.driver.ACPI_SMC_PlatformPlugin     1.0.0 com.apple.driver.AppleLPC     1.6.0 com.apple.driver.AppleBacklight     170.2.5 com.apple.driver.AppleMCCSControl     1.1.11 com.apple.ATIRadeonX2000     8.1.2 com.apple.iokit.IOUserEthernet     1.0.0d1 com.apple.iokit.IOBluetoothSerialManager     4.1.4f2 com.apple.Dont_Steal_Mac_OS_X     7.0.0 com.apple.driver.ApplePolicyControl     3.4.5 com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport     4.1.4f2 com.apple.filesystems.autofs     3.0 com.apple.AppleFSCompression.AppleFSCompressionTypeDataless     1.0.0d1 com.apple.AppleFSCompression.AppleFSCompressionTypeZlib     1.0.0d1 com.apple.BootCache     34 com.apple.driver.AppleIRController     320.15 com.apple.iokit.SCSITaskUserClient     3.5.5 com.apple.driver.AppleUSBCardReader     3.1.7 com.apple.driver.XsanFilter     404 com.apple.iokit.IOAHCIBlockStorage     2.3.1 com.apple.driver.AppleUSBHub     5.5.5 com.apple.driver.AppleFWOHCI     4.9.6 com.apple.driver.AirPort.Atheros40     600.72.2 com.apple.driver.AppleRTC     1.5 com.apple.driver.AppleAHCIPort     2.5.2 com.apple.nvenet     2.0.19 com.apple.driver.AppleUSBEHCI     5.5.0 com.apple.driver.AppleUSBOHCI     5.2.5 com.apple.driver.AppleEFINVRAM     1.7 com.apple.driver.AppleHPET     1.8 com.apple.driver.AppleACPIButtons     1.7 com.apple.driver.AppleSMBIOS     1.9 com.apple.driver.AppleACPIEC     1.7 com.apple.driver.AppleAPIC     1.6 com.apple.driver.AppleIntelCPUPowerManagementClient     196.0.0 com.apple.nke.applicationfirewall     4.0.39 com.apple.security.quarantine     2.1 com.apple.driver.AppleIntelCPUPowerManagement     196.0.0 com.apple.driver.DspFuncLib     2.3.7fc4 com.apple.iokit.IOAudioFamily     1.8.9fc11 com.apple.kext.OSvKernDSPLib     1.6 com.apple.driver.IOPlatformPluginLegacy     1.0.0 com.apple.driver.AppleSMBusPCI     1.0.11d0 com.apple.driver.IOPlatformPluginFamily     5.3.0d51 com.apple.driver.AppleBacklightExpert     1.0.4 com.apple.driver.AppleSMBusController     1.0.11d0 com.apple.kext.AMD4600Controller     8.1.2 com.apple.kext.AMDSupport     8.1.2 com.apple.iokit.IOSurface     86.0.4 com.apple.iokit.IOSerialFamily     10.0.6 com.apple.iokit.IOBluetoothFamily     4.1.4f2 com.apple.driver.AppleGraphicsControl     3.4.5 com.apple.iokit.IONDRVSupport     2.3.7 com.apple.iokit.AppleBluetoothHCIControllerUSBTransport     4.1.4f2 com.apple.kext.triggers     1.0 com.apple.iokit.IOFireWireIP     2.2.5 com.apple.driver.AppleSMC     3.1.4d2 com.apple.driver.AppleHDAController     2.3.7fc4 com.apple.iokit.IOGraphicsFamily     2.3.7 com.apple.iokit.IOHDAFamily     2.3.7fc4 com.apple.iokit.IOUSBHIDDriver     5.2.5 com.apple.iokit.IOSCSIMultimediaCommandsDevice     3.5.5 com.apple.iokit.IOBDStorageFamily     1.7 com.apple.iokit.IODVDStorageFamily     1.7.1 com.apple.iokit.IOCDStorageFamily     1.7.1 com.apple.iokit.IOSCSIBlockCommandsDevice     3.5.5 com.apple.iokit.IOUSBMassStorageClass     3.5.1 com.apple.driver.AppleUSBMergeNub     5.5.5 com.apple.driver.AppleUSBComposite     5.2.5 com.apple.iokit.IOAHCISerialATAPI     2.5.1 com.apple.iokit.IOSCSIArchitectureModelFamily     3.5.5 com.apple.iokit.IOUSBUserClient     5.5.5 com.apple.iokit.IOFireWireFamily     4.5.5 com.apple.iokit.IO80211Family     530.4 com.apple.iokit.IOAHCIFamily     2.3.1 com.apple.iokit.IONetworkingFamily     3.0 com.apple.iokit.IOUSBFamily     5.6.0 com.apple.driver.NVSMU     2.2.9 com.apple.driver.AppleEFIRuntime     1.7 com.apple.iokit.IOHIDFamily     1.8.1 com.apple.iokit.IOSMBusFamily     1.1 com.apple.security.sandbox     220.3 com.apple.kext.AppleMatch     1.0.0d1 com.apple.security.TMSafetyNet     7 com.apple.driver.DiskImages     345 com.apple.iokit.IOStorageFamily     1.8 com.apple.driver.AppleKeyStore     28.21 com.apple.driver.AppleACPIPlatform     1.7 com.apple.iokit.IOPCIFamily     2.7.3 com.apple.iokit.IOACPIFamily     1.4 com.apple.kec.corecrypto     1.0 Model: iMac10,1, BootROM IM101.00CC.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.53f13 Graphics: ATI Radeon HD 4670, ATI Radeon HD 4670, PCIe, 256 MB Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x802C, 0x31364A53463235363634485A2D3147314631 Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x802C, 0x31364A53463235363634485A2D3147314631 AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 4.0.72.0-P2P Bluetooth: Version 4.1.4f2 12041, 2 service, 18 devices, 1 incoming serial ports Network Service: Ethernet, Ethernet, en0 Network Service: AirPort, AirPort, en1 Serial ATA Device: Hitachi HDE721010SLA330, 1 TB Serial ATA Device: HL-DT-ST DVDRW  GA11N USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0x24400000 / 2 USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0x26500000 / 2 USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x04500000 / 4 USB Device: USB Keyboard, 0x04f2  (Chicony Electronics Co., Ltd.), 0x0111, 0x04300000 / 3 USB Device: Microsoft Notebook Optical Mouse with Tilt Wheel, 0x045e  (Microsoft Corporation), 0x00d2, 0x04100000 / 2 USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2 USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0x06110000 / 3

    That panic was not caused by third-party software. If the problem is recurrent, the possibilities are:
    A stale or corrupt kernel cache
    A damaged OS X installation
    A fault in a peripheral device, if any
    Corrupt non-volatile memory (NVRAM)
    An internal hardware fault (including incompatible memory)
    An obscure bug in OS X
    You may already have ruled out some of these.
    Rule out #1 by booting in safe mode and then rebooting as usual. Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Post for further instructions.
    You can rule out #2 and #3 by reinstalling the OS and testing with non-essential peripherals disconnected and aftermarket expansion cards removed, if applicable. Sometimes a clean reinstallation (after erasing the startup volume) may solve a problem that isn't solved by reinstalling in place, without erasing.
    Corrupt NVRAM, which rarely causes panics, can be ruled out by resetting it.
    If your model has user-replaceable memory, and you've upgraded the memory modules, reinstall the original memory and see whether there's any improvement. Be careful not to touch the gold contacts. Clean them with a mild solvent such as rubbing alcohol. Aftermarket memory must exactly match the technical specifications for your model. Memory that is either slower or faster than specified may be incompatible.
    The Apple Hardware Test or Apple Diagnostics, though generally unreliable, will sometimes detect a fault. A negative test can't be depended on. Run the extended version of the test.
    In the category of obscure bugs, reports suggest that FileVault may trigger kernel traps under some unknown conditions. Most, though not all, of these reports seem to involve booting from an aftermarket SSD. If those conditions apply to you, try deactivating FileVault.
    Connecting more than one display is another reported trigger for OS X bugs.
    If your system is not fully up to date, running Software Update might get you a bug fix.
    In rare cases, a malformed network packet from a defective router or other network device can cause panics. Such packets could also be sent deliberately by a skillful attacker. This possibility is something to consider if you run a public server that might be the target of such an attack.
    If none of the above applies, make a "Genius" appointment at an Apple Store to have the machine tested. You may have to leave it there for several days. There isn't much point in doing this unless you can reproduce the panic, or if you can't, it happens often enough that it's likely to be repeated at the store. Otherwise you may be told that nothing is wrong.
    Print the first page of the panic report and bring it with you.
    Back up all data on the internal drive(s) before you hand over your computer to anyone. If privacy is a concern, erase the data partition(s) with the option to write zeros* (do this only if you know how to restore, and you have at least  two independent backups.) Don’t erase the recovery partition, if present.
    Keeping your confidential data secure during hardware repair
    *An SSD doesn't need to be zeroed.

  • When i open iphoto i see my photo's for 1 second and then they are gone .The photo's are still there but i can see them only on the bottom or top of my screen when i try to open them i get a sign that it is not possible.Can somebody please  help me?

    when i open iphoto i see my photo's for 1 second and then they are gone .The photo's are still there but i can see them only on the bottom or top of my screen when i try to open them i get a sign that it is not possible.Can somebody please  help me?

    Have you upgraded to iPhoto 9.6 for compatibility with Yosemite? If not, try that first.
    It looks like iPhoto has lost the connection between the thumbnails and the original image files.
    This can be caused by a corrupted iPhoto library, or the originals have been deleted or moved.
    Try first to rebuild your iPhoto Library:
    If you do not have a current backup of the iPhoto library, make a copy of the library, but do not overwrite any previous backup.
    Launch iPhoto with the ⌥⌘-key combination (option-command) held down.
    Select "rebuild" from the first aid panel.  This may take a while for a large library.
    Can you now see your photos again?
    If not, rebuild the library with iPhoto Library manager as described by Old Toad:            Re: iphoto crashed

  • My youtube does not work on safari only when i try to play a video it says "This video is not available on mobile add to playlist" But i am using a mac air 11 inch it is not a mobile. Please Help. i have to use the youtube on firefox or chrome

    my youtube does not work on safari only when i try to play a video it says "This video is not available on mobile add to playlist" But i am using a mac air 11 inch it is not a mobile. Please Help. i have to use the youtube on firefox or chrome. At times it also say QuickTime Player can't open "video.3gp". and
    The file may be damaged or may not be a movie file that is compatible with QuickTime Player. when i try to open a video on youtube on safari

    I too am having the same issue as the OP.
    Your USER AGENT information is Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18
    Every webserver that receives a request from your browser is able to determine the HTTP USER AGENT information unless it has been removed by some software (e.g. firewall) before the request was trasmitted.

  • My ipod touch burns up when it is charging or sometimes when i play games at the same time it charges. why is this and what can i do to stop it? please help!!!

    HELLO! I have an Ipod Touch thats 32 gb, and its the really old one without the camera. ( im sorry i dont know which generation it is, but i bought it in 2010. ) Anyways, I've had this Ipod for almost 3 years now, and it still works pretty good. The thing im really worried about is that recently, my Ipod has started to overheat, meaning when i touch it, its almost burning. This happens when I charge it, or when I play games on it while charging the Ipod. When i remove the charger, it stops burning/overheating and goes back to normal. Why does this keep happening? Also, what can I do to stop it? please help!!!
    Thankyou!

    J.K. ROFLing  is correct. It is normal for the iPod to get quire warm when charging and during heavy use.. If concerned make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar

  • I am having trouble dating to version 3.6.14. I am running Linux/Ubutu OS and I get this error message:/tmp/p7x3vko2.part could not be saved, because the source file could not be read. Please help. Thank you , Deb

    I am having trouble dating to version 3.6.14 or updating to the Beta testing. I am running Linux/Ubutu OS and I get this error message:/tmp/p7x3vko2.part could not be saved, because the source file could not be read. Please help. Thank you , Deb

    Solved for me.
    I set the owner/permissions of my profile's mozilla folder's (and all the files in it) to read/write access, and the problem disappeared.
    in linux:''
    * cd /home/myusername/.mozilla
    * chown -cR myusername:mygroup ./
    * chmod -cR +rw ./
    '''Never do that with root privs (nor with sudo)'''

  • Bluetooth Driver In Windows 8.1 is Not Working after upgrading please help (pavilion g6 2008Tx)

    Bluetooth Driver In Windows 8.1 is Not Working after upgrading please help (pavilion g6 2008Tx)
    what cAN i do to make it work?please help

    Hi:
    If your model uses a Ralink wireless card, see if installing this bluetooth driver works.
    http://h20565.www2.hp.com/hpsc/swd/public/detail?swItemId=ob_135494_1

  • HT3743 my iphone 4 i bought was jailbroken to ios 6.0.1 redsn0w but i tried to restore the iphone and now it keeps saying connect to itunes but when i connect and try to restore an "unknown error" occurs and it will not boot up whatsoever. please help!

    my iphone 4 i bought was jailbroken to ios 6.0.1 redsn0w but i tried to restore the iphone and now it keeps saying connect to itunes but when i connect and try to restore an "unknown error" occurs and it will not boot up whatsoever. please help!

    If you want to solve your problems, unjailbreak. And don't do it again, because jailbreaking causes problems as you read about in that article. You can try Recovery Mode: http://support.apple.com/kb/HT1808

  • Hello, the 'Save As' dialog box used to allow the backspace button to go up one level in the directory when the focus is in the folder contents box but it does not work any more, please help.

    Hello, the 'Save As' dialog box used to allow the backspace button to go up one level in the directory when the focus is in the folder contents box but it does not work any more, please help. BTW the same 'Save As' dialog in other applications still allow the backspace button to go up one level in the directory.

    cor-el,
    I kept forgetting and procrastinating about following your instructions, since I have internet access only for limited amounts of time and usually I am busy with important tasks when I am.
    Out of the blue, the problem corrected itself (the Save As box started to open full screen, then shrunk down to a normal size and the edges can now be dragged to a custom size).
    Even the copy and paste problem in the filenaming area seems to have been less troublesome lately even though there have been no updates to Firefox in a few weeks.
    Even though I marked the solution as not helpful, the problem has in fact been resolved. I will save the solution instructions in case the issue returns.

  • HT5622 I made an in app purchase and the payment did not go through due to lack of funds. Now I am trying to change the payment option (credit card) but it is not accepting it.  Please help! thanks in advance.

    I made an in app purchase and the payment did not go through due to lack of funds. Now I am trying to change the payment option (credit card) but it is not accepting it. 
    Please help! thanks in advance.

    I am desperate right now. I'm not sure if I got myself into some real trouble since I got the in-app and it works fine, but the purchase did not show up. It usually asks ms if I want to pay 2.99 and I would press "yes," but this time it did not ask and I feel like I got this app without paying for it. please any advice!?

  • TS3297 I want to buy the double coins from the game subway surfers! But they told me to contact the itunes support! I don't know why it's not working.. Please help! iPhone 4ss

    I want to buy the double coins from the game subway surfers! But they told me to contact the itunes support! I don't know why it's not working.. Please help! iPhone 4ss

    These are user-to-user forums, you are not talking to Apple here. You can contact iTunes support via this page and ask them why the message is appearing : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then probably Purchases, Billing & Redemption

Maybe you are looking for

  • Fixed sequence of columns in ALV

    Hi, I am using FM 'REUSE_ALV_GRID_DISPLAY' to display ALV output. There are 20 fields in report output. User wants that after display of ALV report, the sequence of first 2 columns should never be changed. However sequenece of other columns can be ch

  • E-Business Suite Intelligence - Oracle Balance Scorecard?

    How can obtain a virtual trial or 30 days online trial of E-Business Suite Intelligence - Oracle Balance Scorecard? Thank you.

  • Time Capsule not working as a router

    I've done a search, but can't find anything that jumps out to me as the same issue. I've recently ditched all my PC gear.  Now have the following: Mac Mini 2TB Time Capsule MacBook Air iPad My issue is with the internet connectivity of the Time Capsu

  • Flash Video bitrate counter - How?

    Evening all, As a purveyor of internet media, a lot of what I watch is somehow glued into a flash playing window jigger.Now, we all like a good buffer - but how fast is one buffer buffing? Is it possible to to make, and enforce the use of, a littler

  • Help, I continue to get a 'object expected' error from DW CS3 SWF video insert?

    I am trying to use DW CS3 to place video into my website.  Seems simple enough, 'insert media', 'flash video', etc.  However, I have been unable to get it to play or even show up.  The source file is an FLV file in the same directory as the index pag