How to diagnose Acrobat problem

I've inherited/taken over my precursor's PC, which has FM 10 and CS 5.5 on. So far so good, but it didn't take long to hit a problem: Save as .pdf doesn't work :-{ I just get a couple of seconds' busy cursor, then a sort of bounce as though the entire screen is being redrawn, and that's it. No message, no log and no .pdf output.
This is the only FM installation in a fairly large company, and it must have been installed by ICT because it's on a closed PC. I'd like to gather as much background information as I can before contacting them.
Windows 7.0, as far as I know; FrameMaker 10.0.2.419 – just let me know if there's any more information you need.
Thanks in advance!
Niels Grundtvig Nielsen

Niels,
The SaveAsPDF has been working reasonably reliably in the last releases provided everything is installed correctly and the proper options are enabled.
First, make certain that the Adobe PDF printer instance is the deafult in the FM session (use the SetPrint utility to ensure that it is).
If you already had Acrobat installed prior to installing FM, then the default FM instalation also installs the PDFCreator add-on (you have to manually deselect it - very bad design on Adobe's part), which will hose the Acrobat installation. Try running the Repair option (under Help menu) in Acrobat. If that doesn't work, you may have to go through a re-install cycle.
I also keep running into the "rely on system fonts" error message every so often. It seems like any Acrobat update that comes out resets the defaults the wrong way.

Similar Messages

  • How to diagnose a problem with my imac graphics card

    I've been having some glitchy graphics when I scroll around a map in some basic gaming. (League of Lengends)
    Is there a way to check if the graphic card is functioning correctly?
    I noticed it after I went from Mt Lion to Mavericks, but that was a while ago and I dont know if that is the cause.
    any help with this would be greatly appreciated
    Thanks

    Hello Mokhtary123 and welcome to Apple Support Communities,
    It will help us diagnose your problem to know the exact model, size, year built, RAM installed and OS you're running.
    But basically your system can't find the boot disk. Usually this is a symptom of a dead/dying/corrupted hard drive;
    A flashing question mark or globe appears when you start your Mac - Apple Support
    OS X Recovery
    http://support.apple.com/en-us/HT4718

  • How to diagnose performance problems?

    Hi all,
    I'm trying to run some basic performance tests of our app with Coherence, and I'm getting some pretty miserable results. I'm obviously missing something very basic about the configuration, but I can't figure out what it is.
    For our test app, I'm using 3 machines, all Mac Pros running OSX 10.5. Each JVM is configured with 1G RAM and is running in server mode. We're connected on a gigabit LAN (I ran the datagram test, we get about 108Mb/sec but with high packet loss, around 10-12%). Two of the nodes are storage enabled, the other runs as a client performing an approximation of one of the operations we perform routinely.
    The test consists of running a single operation many times. We're developing a card processing system, so I create a bunch of cards (10,000 by default), each of which has about 10 related objects in different caches. The objects are serialised using POF. I write all these to the caches, then perform a single operation for each card. The operation consists of about 14 reads and 6 writes. I can do this about 6-6.5 times per second, for a total of ~120 Coherence ops/sec, which seems extremely low.
    During the test, the network tops out at about 1.2M/s, and the CPU at about 35% on the storage nodes and almost unnoticeable on the client. There's clearly something blocking somewhere, but I can't find what it is. The client uses a thread pool of 100 threads and has 100 threads assigned to its distributed service, and the storage nodes also have 100 threads assigned to their distributed services. I also tried giving more threads to the invocation service (since we use VersionedPut a lot), but that didn't seem to help either. I've also created the required indexes.
    Any help in diagnosing what the problem would be greatly appreciated. I've attached the config used for the two types of node below.
    Cheers,
    Colin
    Config for storage nodes:
    -Dtangosol.coherence.wka=10.1.1.2
    -Dtangosol.coherence.override=%HOME%/coherence.override.xml
    -Dtangosol.coherence.distributed.localstorage=true
    -Dtangosol.coherence.wkaport=8088
    -Dtangosol.coherence.distributed.threads=100
    <cache-config>
    <caching-scheme-mapping>
    <cache-mapping>
    <cache-name>*</cache-name>
    <scheme-name>distributed-scheme</scheme-name>
    </cache-mapping>
    </caching-scheme-mapping>
    <caching-schemes>
    <distributed-scheme>
    <scheme-name>distributed-scheme</scheme-name>
    <service-name>DistributedCache</service-name>
    <backing-map-scheme>
    <local-scheme>
    <scheme-ref>distributed-backing-map</scheme-ref>
    </local-scheme>
    </backing-map-scheme>
    <autostart>true</autostart>
    <serializer>
    <class-name>runtime.util.protobuf.ProtobufPofContext</class-name>
    </serializer>
    <backup-count>1</backup-count>
    </distributed-scheme>
    <local-scheme>
    <scheme-name>distributed-backing-map</scheme-name>
    <listener>
    <class-scheme>
    <class-name>service.data.manager.coherence.impl.utilfile.CoherenceBackingMapListener</class-name>
    <init-params>
    <init-param>
    <param-type>com.tangosol.net.BackingMapManagerContext</param-type>
    <param-value>{manager-context}</param-value>
    </init-param>
    <init-param>
    <param-type>java.lang.String</param-type>
    <param-value>{cache-name}</param-value>
    </init-param>
    </init-params>
    </class-scheme>
    </listener>
    </local-scheme>
    <invocation-scheme>
    <service-name>InvocationService</service-name>
    <autostart>true</autostart>
    </invocation-scheme>
    </caching-schemes>
    </cache-config>
    Config for client node:
    -Dtangosol.coherence.wka=10.1.1.2
    -Dtangosol.coherence.wkaport=8088
    -Dtangosol.coherence.distributed.localstorage=false
    <cache-config>
    <caching-scheme-mapping>
    <cache-mapping>
    <cache-name>*</cache-name>
    <scheme-name>distributed-scheme</scheme-name>
    </cache-mapping>
    </caching-scheme-mapping>
    <caching-schemes>
    <distributed-scheme>
    <scheme-name>distributed-scheme</scheme-name>
    <service-name>DistributedCache</service-name>
    <thread-count>100</thread-count>
    <backing-map-scheme>
    <local-scheme>
    <scheme-ref>distributed-backing-map</scheme-ref>
    </local-scheme>
    </backing-map-scheme>
    <autostart>true</autostart>
    <backup-count>1</backup-count>
    </distributed-scheme>
    <local-scheme>
    <scheme-name>distributed-backing-map</scheme-name>
    </local-scheme>
    <invocation-scheme>
    <service-name>InvocationService</service-name>
    <autostart>true</autostart>
    </invocation-scheme>
    </caching-schemes>
    </cache-config>

    Hi David,
    Thanks for the quick response. I'm currently using an executor with 100 threads on the client. I thought that might not be enough since the CPU on the client hardly moves at all, but bumping that up to 1000 didn't change things. If I run the same code with a single Coherence instance in my local machine I get around 110/sec, so I suspect that somewhere in the transport layer something doesn't have enough threads.
    The code is somewhat complicated because we have an abstraction layer on top of Coherence. I'll try to post the relevant parts below:
    The main loop is pretty straightforward. This is a Runnable that I post to the client executor:
    public void run()
    Card card = read(dataManager, Card.class, "cardNumber", cardNumber);
    assert card != null;
    Group group = read(dataManager, Group.class, "id", card.getGroupId());
    assert group != null;
    Account account = read(dataManager, Account.class, "groupId", group.getId());
    assert account != null;
    User user = read(dataManager, User.class, "groupId", group.getId());
    assert user != null;
    ClientUser clientUser = read(dataManager, ClientUser.class, "userId", user.getId());
    HoldLog holdLog = createHoldLog(group, account);
    account.getCurrentHolds().add(holdLog);
    account.setUpdated(now());
    write(dataManager, HoldLog.class, holdLog);
    ClientUser clientUser2 = read(dataManager, ClientUser.class, "userId", user.getId());
    write(dataManager, Account.class, account);
    NetworkMessage networkMessage = createNetworkMessage(message, card, group, holdLog);
    write(dataManager, NetworkMessage.class, networkMessage);
    read does a bit of juggling with our abstraction layer, basically this just gets a ValueExtractor for a named field and then creates an EqualsFilter with it:
    private static <V extends Identifiable> V read(DataManager dataManager,
    Class<V> valueClass,
    String keyField,
    Object keyValue)
    DataMap<Identifiable> dataMap = dataManager.getDataMap(valueClass.getSimpleName(), valueClass);
    FilterFactory filterFactory = dataManager.getFilterFactory();
    ValueExtractorFactory extractorFactory = dataManager.getValueExtractorFactory();
    Filter<Identifiable> filter = filterFactory.equals(extractorFactory.fieldExtractor(valueClass, keyField), keyValue);
    Set<Map.Entry<GUID, Identifiable>> entries = dataMap.entrySet(filter);
    if (entries.isEmpty())
    return null;
    assert entries.size() == 1 : "Expected single entry, found " + entries.size() + " for " + valueClass.getSimpleName();
    return valueClass.cast(entries.iterator().next().getValue());
    write is trivial:
    private static <V extends Identifiable> void write(DataManager dataManager, Class<V> valueClass, V value)
    DataMap<Identifiable> dataMap = dataManager.getDataMap(valueClass.getSimpleName(), valueClass);
    dataMap.put(value.getId(), value);
    And entrySet directly wraps the Coherence call:
    public Set<Entry<GUID, V>> entrySet(Filter<V> filter)
    validateFilter(filter);
    return wrapEntrySet(dataMap.entrySet(((CoherenceFilterAdapter<V>) filter).getCoherenceFilter()));
    This just returns a Map.EntrySet implementation that decodes the binary encoded objects.
    I'm not really sure how much more code to post - what I have is really just a thin layer over Coherence, and I'm reasonably sure that the main problem isn't there since the CPU hardly moves on the client. I suspect thread starvation at some point, but I'm not sure where to look.
    Thanks,
    Colin

  • How to diagnose speed problems.

    A year ago my computer was running terriblyslow.  I took it to the genuis at the apple store and he ran a script that showed what was going on in the background.  He noticed Spotify was running and open/close script constantly over and over using up RAM.  I scraped Spotify and it worked great.
    Now my computer is running slow again and I'd like to be able to run and understand that script.  Can anyone explain how to do it and what to look for?

    Thanks for the replies.
    capacity = 999.35 GB
    Available = 492.54 GB
    The most I run is having a browser (sometimes 2) open while using photoshop or LR.  I mostly notice the slowness when opening or closing an application.  Sometimes it takes up to 2 minutes to open photoshop (CC) where as it usuallly only takes a few seconds. 
    Applications I normally run: mail, chrome, Firefox, Photoshop, Lightroom.
    4 GB 1067 Mhz RAM (factory)
    No antivirus.
    No crapwear I'm aware of.
    Thanks again.

  • Imac crashes daily, how can diagnose the problem

    My imac is crashing (Black screen) once to maybe 3 times daily. I think it's a kernel panic, but I'm not sure.
    I'm not sure if this is the information needed. It's from the Console/System Diagnostic reports/Kernel_2013-10-07-085723-imac-3.panic. Can anyone translate this for me? If this is not the right information, where would I find the right information. Thanks
    Mon Oct  7 08:57:23 2013
    panic(cpu 0 caller 0x5df48c97): NVRM[0/1:0:0]: Read Error 0x0000336c: CFG 0x060910de 0x20100406 0xe2000000, BAR0 0xe2000000 0x5ea5c000 0x092480a2, D0, P3/4
    Backtrace (CPU 0), Frame : Return Address (4 potential args on stack)
    0x5c7f3728 : 0x21b837 (0x5dd7fc 0x5c7f375c 0x223ce1 0x0)
    0x5c7f3778 : 0x5df48c97 (0x5e15e22c 0x5e1ce840 0x5e16cf88 0x0)
    0x5c7f3818 : 0x5e749a7d (0x8be7804 0x7411004 0x336c 0x5df38774)
    0x5c7f3858 : 0x5e72293b (0x7411004 0x336c 0x9f74804 0x0)
    0x5c7f38c8 : 0x5e72f273 (0x7411004 0x9da4004 0xa 0x5c7f391c)
    0x5c7f39e8 : 0x5e0cebe3 (0x7411004 0x9da4004 0x5c7f3af0 0x5c7f3af0)
    0x5c7f3b28 : 0x5e0cf58d (0x7411004 0x9db1c04 0x0 0x0)
    0x5c7f3bb8 : 0x5e76c1b7 (0x7411004 0x9db1c04 0xd 0x2)
    0x5c7f3cc8 : 0x5e7711e7 (0x7411004 0x9ced004 0x0 0x0)
    0x5c7f3df8 : 0x5e082258 (0x7411004 0x749d004 0x0 0x0)
    0x5c7f3e38 : 0x5df51e2b (0x7411004 0x749d004 0x0 0x0)
    0x5c7f3ed8 : 0x553ec7 (0x0 0x9e4cf00 0x1 0x2275c6)
    0x5c7f3f28 : 0x552ea6 (0x9e4cf00 0x0 0x0 0x0)
    0x5c7f3f88 : 0x552eea (0x8c85280 0x8c85280 0x84cb3bf0 0x7fff)
    0x5c7f3fc8 : 0x2a179c (0x8c85280 0x0 0x10 0x994fc24)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.nvidia.nv50hal(6.3.6)@0x5e647000->0x5ea5bfff
                dependency: com.apple.NVDAResman(6.3.6)@0x5dee2000
             com.apple.NVDAResman(6.3.6)@0x5dee2000->0x5e1cffff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x55a02000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x5ce34000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x55668000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 81510992370745
    unloaded kexts:
    (none)
    loaded kexts:
    org.virtualbox.kext.VBoxNetAdp          4.1.18
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.pctools.iantivirus.kfs          1.0.1
    com.makemkv.kext.daspi          1
    com.airgrab.driver.AirGrabFirewallModule          3.0
    com.Logitech.Control Center.HID Driver          3.3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2
    com.roxio.BluRaySupport          1.1.6
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.driver.AppleBluetoothMultitouch          54.3 - last loaded 337546357843
    com.apple.filesystems.msdosfs          1.6.3
    com.apple.filesystems.udf          2.1.1
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.InternalModemSupport          2.6.2
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleIntelYonahProfile          14
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.GeForce          6.3.6
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AirPortBrcm43xx          423.91.27
    com.apple.driver.AppleIntelNehalemProfile          11
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.StorageLynx          2.6.1
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.driver.LSI_FW_500          2.6.1
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit          2.6.1
    com.apple.driver.initioFWBridge          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.driver.PioneerSuperDrive          2.6.1
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f14
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.driver.AppleFileSystemDriver          2.0
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.TMSafetyNet          6
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0

    Thanks for the reply. I do have more reports. Here are 4. They are oldest first.
    The Crash Reports did not always come up after restarting. I'm not sure why.
    Thanks for the help.
    Sept 12
    Interval Since Last Panic Report:  28485426 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    7C83D2C1-7F6C-4719-B712-D7C377C8A24D
    Thu Sep 12 13:11:11 2013
    panic(cpu 1 caller 0x5e03ac97): NVRM[0/1:0:0]: Read Error 0x00070000: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xe2000000 0x5eb4e000 0x092480a2, D0, P3/4
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5da71c88 : 0x21b837 (0x5dd7fc 0x5da71cbc 0x223ce1 0x0)
    0x5da71cd8 : 0x5e03ac97 (0x5e25022c 0x5e2c0840 0x5e25ef88 0x0)
    0x5da71d78 : 0x5e83ba7d (0x8a75c04 0x73d5004 0x70000 0x5e032fa0)
    0x5da71db8 : 0x5e74ce03 (0x73d5004 0x70000 0x5da71dd4 0x0)
    0x5da71e08 : 0x5e8296ab (0x73d5004 0x9eff004 0x1 0x1)
    0x5da71ed8 : 0x5e8314c0 (0x73d5004 0xb027004 0x0 0x1)
    0x5da71fe8 : 0x5e1c0ca2 (0x73d5004 0xb027004 0x5da7203c 0x5da720f0)
    0x5da72128 : 0x5e1c158d (0x73d5004 0x7b3fc04 0x0 0x0)
    0x5da721b8 : 0x5e85dff7 (0x73d5004 0x7b3fc04 0xd 0x2)
    0x5da722c8 : 0x5e8631e7 (0x73d5004 0x7bc3804 0x0 0x0)
    0x5da723f8 : 0x5e174258 (0x73d5004 0x78dc004 0x0 0x0)
    0x5da72438 : 0x5e043e2b (0x73d5004 0x78dc004 0x0 0x0)
    0x5da724d8 : 0x5e04050a (0x0 0x9 0x0 0x0)
    0x5da72688 : 0x5e042467 (0x0 0x600d600d 0x7029 0x5da726b8)
    0x5da72758 : 0x5d922e99 (0xc1d00051 0xbeef0003 0x87f3a00 0x87f3a00)
    0x5da727a8 : 0x5d922fce (0x46dcb000 0x87f3a00 0x2301e000 0x0)
    0x5da727d8 : 0x5d8fa484 (0x46dcb000 0x87f3a00 0x2301e000 0x0)
    0x5da727f8 : 0x5d91beb2 (0x46dcb000 0x722e800 0x5da72828 0x55f3f4)
    0x5da72838 : 0x5d91bccd (0x46dcb000 0x722e800 0x5da72868 0x506769)
    0x5da72868 : 0x5d91bc45 (0x46dcb000 0x7e01980 0x722e800 0x0)
    0x5da72898 : 0x5d91bfa7 (0x46dcb000 0x7e01980 0x7f68800 0x0)
    0x5da728b8 : 0x5d93ebce (0x7e01980 0x7f68800 0x626 0x139bb800)
    0x5da728e8 : 0x5d93d1a1 (0x47181000 0x47181788 0x1 0x2209aa)
    0x5da72908 : 0x5d90488f (0x47181000 0x47181788 0xa6d41c0 0x507617)
    0x5da72938 : 0x5d93ec64 (0x47181000 0x5da72a7c 0x5da72968 0x47181000)
    0x5da72978 : 0x5d908c93 (0x47181000 0x5da72a7c 0x5da72a7c 0x5da729e0)
    0x5da72ab8 : 0x5d9425d8 (0x47181000 0x1 0x5da72bcc 0x5da72bc8)
    0x5da72b68 : 0x5d904fe1 (0x47181000 0x1 0x5da72bcc 0x5da72bc8)
    0x5da72be8 : 0x56da06 (0x47181000 0x0 0x5da72e3c 0x5da72c74)
    0x5da72c38 : 0x56e2a5 (0x5d993720 0x47181000 0x9259788 0x1)
    0x5da72c88 : 0x56eb59 (0x47181000 0x10 0x5da72cd0 0x0)
    0x5da72da8 : 0x286638 (0x47181000 0x10 0x9259788 0x1)
    0x5da73e58 : 0x21dbe5 (0x9259760 0x98215a0 0x12c778 0x38993)
    0x5da73e98 : 0x210a86 (0x9259700 0x0 0x7f8b8c0 0x9096f10)
    0x5da73ef8 : 0x216f84 (0x9259700 0x0 0x0 0x0)
    0x5da73f78 : 0x295c57 (0x9ad6368 0x0 0x0 0x0)
    0x5da73fc8 : 0x2a256d (0x9ad6364 0x2 0x10 0x9ad6364)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.GeForce(6.3.6)@0x5d8f9000->0x5d9affff
                dependency: com.apple.NVDAResman(6.3.6)@0x5dfd4000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x55643000
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x559ca000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5cddc000
             com.apple.nvidia.nv50hal(6.3.6)@0x5e739000->0x5eb4dfff
                dependency: com.apple.NVDAResman(6.3.6)@0x5dfd4000
             com.apple.NVDAResman(6.3.6)@0x5dfd4000->0x5e2c1fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x559ca000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x55643000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5cddc000
    BSD process name corresponding to current thread: Safari
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 248930691666315
    unloaded kexts:
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2 (addr 0x5c70f000, size 0x16384) - last unloaded 238309029785429
    loaded kexts:
    org.virtualbox.kext.VBoxNetAdp          4.1.18 - last loaded 193895133420921
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.pctools.iantivirus.kfs          1.0.1
    com.kensington.trackballworks.driver          1.0.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.makemkv.kext.daspi          1
    com.airgrab.driver.AirGrabFirewallModule          3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.filesystems.udf          2.1.1
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.driver.AudioAUUC          1.57
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.GeForce          6.3.6
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.TMSafetyNet          6
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: iMac8,1, BootROM IM81.00C1.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.30f1
    Graphics: NVIDIA GeForce 8800 GS, NVIDIA GeForce 8800 GS, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8C), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: Ethernet, Ethernet, en0
    Network Service: USB Ethernet (en2), Ethernet, en2
    Serial ATA Device: ST3500418ASQ, 465.76 GB
    Parallel ATA Device: PIONEER DVD-RW  DVR-K06A, 3.7 GB
    USB Device: USB 2.0 Hub [MTT], 0x1a40  (TERMINUS TECHNOLOGY INC.), 0x0201, 0xfa200000 / 2
    USB Device: USB to Serial-ATA bridge, 0x1bcf  (Sunplus Innovation Technology Inc.), 0x0c31, 0xfa240000 / 3
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd400000 / 3
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd100000 / 2
    USB Device: Ext HDD 1021, 0x1058  (Western Digital Technologies, Inc.), 0x1021, 0xfd130000 / 7
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd110000 / 6
    USB Device: EPSON WorkForce 845 Series, 0x04b8  (Seiko Epson Corp.), 0x0892, 0xfd120000 / 5
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd140000 / 4
    USB Device: Kensington Expert Mouse, 0x047d  (Kensington), 0x1020, 0xfd144000 / 11
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd143000 / 10
    USB Device: GoFlex Desk, 0x0bc2  (Seagate LLC), 0x50a7, 0xfd142000 / 9
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfd141000 / 8
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfd141200 / 12
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1a100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x820f, 0x1a110000 / 5
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000 / 2
    FireWire Device: d2 Quadra v3C, LaCie, Up to 800 Mb/sec
    FireWire Device: My Passport 071D, WD, Up to 800 Mb/sec
    Oct 8
    Interval Since Last Panic Report:  2148285 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    7C83D2C1-7F6C-4719-B712-D7C377C8A24D
    Tue Oct  8 21:18:25 2013
    panic(cpu 1 caller 0x5dacdc97): NVRM[0/1:0:0]: Read Error 0x00002500: CFG 0x060910de 0x00100406 0xe2000000, BAR0 0xe2000000 0x5e5e1000 0x092480a2, D0, P3/4
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5bd73768 : 0x21b837 (0x5dd7fc 0x5bd7379c 0x223ce1 0x0)
    0x5bd737b8 : 0x5dacdc97 (0x5dce322c 0x5dd53840 0x5dcf1f88 0x0)
    0x5bd73858 : 0x5e2cea7d (0x955e804 0x79d2004 0x2500 0x79d2004)
    0x5bd73898 : 0x5e2bfd5e (0x79d2004 0x2500 0x0 0x0)
    0x5bd73918 : 0x5e2b6132 (0x79d2004 0x9606804 0x41 0x5bd73950)
    0x5bd73a38 : 0x5dbd3b4d (0x79d2004 0x9606804 0x712200c 0x200)
    0x5bd73a78 : 0x5dc52cee (0x79d2004 0x9606804 0xc57a0c8 0xc57a004)
    0x5bd73b28 : 0x5dc542df (0x79d2004 0x9605404 0x0 0x0)
    0x5bd73bb8 : 0x5e2f11b7 (0x79d2004 0x9605404 0xd 0x2)
    0x5bd73cc8 : 0x5e2f61e7 (0x79d2004 0x94f2404 0x0 0x0)
    0x5bd73df8 : 0x5dc07258 (0x79d2004 0x7943004 0x0 0x0)
    0x5bd73e38 : 0x5dad6e2b (0x79d2004 0x7943004 0x0 0x0)
    0x5bd73ed8 : 0x553ec7 (0x0 0x973e180 0x1 0x2a0577)
    0x5bd73f28 : 0x552ea6 (0x973e180 0x0 0x0 0xffffffff)
    0x5bd73f88 : 0x552eea (0x8aa6a80 0x8e65000 0x5bd73fc8 0x4d45e9)
    0x5bd73fc8 : 0x2a179c (0x8aa6a80 0x0 0x10 0x8e1c704)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.nvidia.nv50hal(6.3.6)@0x5e1cc000->0x5e5e0fff
                dependency: com.apple.NVDAResman(6.3.6)@0x5da67000
             com.apple.NVDAResman(6.3.6)@0x5da67000->0x5dd54fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x55a02000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x5ccf9000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5d5e2000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 130159889729611
    unloaded kexts:
    (none)
    loaded kexts:
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    org.virtualbox.kext.VBoxNetAdp          4.1.18
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.pctools.iantivirus.kfs          1.0.1
    com.makemkv.kext.daspi          1
    com.Logitech.Control Center.HID Driver          3.3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2
    com.roxio.BluRaySupport          1.1.6
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.driver.IOBluetoothBNEPDriver          2.4.5f3 - last loaded 1918336405847
    com.apple.driver.AppleUSBCDC          4.0.5
    com.apple.filesystems.udf          2.1.1
    com.apple.filesystems.msdosfs          1.6.3
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.InternalModemSupport          2.6.2
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.AppleIntelYonahProfile          14
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AppleIntelNehalemProfile          11
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AirPortBrcm43xx          423.91.27
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.GeForce          6.3.6
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.StorageLynx          2.6.1
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.driver.LSI_FW_500          2.6.1
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit          2.6.1
    com.apple.driver.initioFWBridge          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.driver.PioneerSuperDrive          2.6.1
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f14
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.driver.AppleFileSystemDriver          2.0
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.TMSafetyNet          6
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: iMac8,1, BootROM IM81.00C1.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.30f1
    Graphics: NVIDIA GeForce 8800 GS, NVIDIA GeForce 8800 GS, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8C), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: USB Ethernet (en2), Ethernet, en2
    Serial ATA Device: ST3500418ASQ, 465.76 GB
    Parallel ATA Device: PIONEER DVD-RW  DVR-K06A, 3.7 GB
    USB Device: USB 2.0 Hub [MTT], 0x1a40  (TERMINUS TECHNOLOGY INC.), 0x0201, 0xfa200000 / 2
    USB Device: Android Phone, 0x0bb4  (HTC Corporation), 0x0ff9, 0xfa230000 / 4
    USB Device: USB to Serial-ATA bridge, 0x1bcf  (Sunplus Innovation Technology Inc.), 0x0c31, 0xfa240000 / 3
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd400000 / 3
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd100000 / 2
    USB Device: Ext HDD 1021, 0x1058  (Western Digital Technologies, Inc.), 0x1021, 0xfd130000 / 7
    USB Device: EPSON WorkForce 845 Series, 0x04b8  (Seiko Epson Corp.), 0x0892, 0xfd120000 / 6
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd140000 / 5
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd143000 / 10
    USB Device: GoFlex Desk, 0x0bc2  (Seagate LLC), 0x50a7, 0xfd142000 / 9
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfd141000 / 8
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfd141200 / 11
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd110000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1a100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x820f, 0x1a110000 / 3
    FireWire Device: d2 Quadra v3C, LaCie, Up to 800 Mb/sec
    FireWire Device: My Passport 071D, WD, Up to 800 Mb/sec
    Oct 10
    Interval Since Last Panic Report:  2233951 sec
    Panics Since Last Report:          3
    Anonymous UUID:                    7C83D2C1-7F6C-4719-B712-D7C377C8A24D
    Thu Oct 10 11:40:56 2013
    panic(cpu 1 caller 0x5dff0c97): NVRM[0/1:0:0]: Read Error 0x00002500: CFG 0x060910de 0x00100406 0xe2000000, BAR0 0xe2000000 0x5eb04000 0x092480a2, D0, P3/4
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5c84b688 : 0x21b837 (0x5dd7fc 0x5c84b6bc 0x223ce1 0x0)
    0x5c84b6d8 : 0x5dff0c97 (0x5e20622c 0x5e276840 0x5e214f88 0x0)
    0x5c84b778 : 0x5e7f1a7d (0x9758804 0x7411004 0x2500 0x7411004)
    0x5c84b7b8 : 0x5e7e2d5e (0x7411004 0x2500 0x0 0x0)
    0x5c84b838 : 0x5e7d9132 (0x7411004 0x978a804 0x41 0x5c84b870)
    0x5c84b958 : 0x5e0f6b4d (0x7411004 0x978a804 0xabaa00c 0x200)
    0x5c84b998 : 0x5e175a6e (0x7411004 0x978a804 0xb7dcf2c 0xb7dcf04)
    0x5c84ba48 : 0x5e1772df (0x7411004 0x9795c04 0x0 0x0)
    0x5c84bad8 : 0x5e7d7f19 (0x7411004 0x9795c04 0x6 0x2)
    0x5c84bb58 : 0x5e7e1f8e (0x7411004 0x978a804 0x1000 0x5c84bc6c)
    0x5c84bcc8 : 0x5e81933e (0x7411004 0x978a804 0x0 0x0)
    0x5c84bdf8 : 0x5e12a258 (0x7411004 0x774b004 0x0 0x0)
    0x5c84be38 : 0x5dff9e2b (0x7411004 0x774b004 0x0 0x0)
    0x5c84bed8 : 0x553ec7 (0x0 0x9902e80 0x1 0x83e4000)
    0x5c84bf28 : 0x552ea6 (0x9902e80 0x0 0x0 0x4ecc7284)
    0x5c84bf88 : 0x552eea (0x8b6f6c0 0x704c100 0x5c84bfc8 0x4d45e9)
    0x5c84bfc8 : 0x2a179c (0x8b6f6c0 0x0 0x10 0x79066c4)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.nvidia.nv50hal(6.3.6)@0x5e6ef000->0x5eb03fff
                dependency: com.apple.NVDAResman(6.3.6)@0x5df8a000
             com.apple.NVDAResman(6.3.6)@0x5df8a000->0x5e277fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x55a02000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x5ce45000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5cccf000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 275304880408
    unloaded kexts:
    (none)
    loaded kexts:
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    org.virtualbox.kext.VBoxNetAdp          4.1.18
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.kensington.trackballworks.driver          1.0.0
    com.pctools.iantivirus.kfs          1.0.1
    com.kensington.mouseworks.driver.KMWUSBHIDMouse          3.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.makemkv.kext.daspi          1
    com.Logitech.Control Center.HID Driver          3.3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2
    com.roxio.BluRaySupport          1.1.6
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.filesystems.udf          2.1.1 - last loaded 58033495234
    com.apple.filesystems.msdosfs          1.6.3
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.InternalModemSupport          2.6.2
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleIntelYonahProfile          14
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.GeForce          6.3.6
    com.apple.driver.AppleIntelNehalemProfile          11
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.driver.AirPortBrcm43xx          423.91.27
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.StorageLynx          2.6.1
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.driver.LSI_FW_500          2.6.1
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit          2.6.1
    com.apple.driver.initioFWBridge          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.driver.PioneerSuperDrive          2.6.1
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f14
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.driver.AppleFileSystemDriver          2.0
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple

  • Re: javax.faces.convert.Converter error, how to diagnose?

    I’m rendering a region on a page. The region is a table which is entirely build in java. The .jsff for the region looks kind of like this:
    <af:treeTable value="#{backingBeanScope.myBean.treeModel}" var="row" etc…. >
    <af:forEach items="#{backingBeanScope.myBean.columns}" var="column">
    <af:column binding="#{column.adfColumn}" />
    </af:forEach>
    </af:treeTable>
    When a row selection happens, there is context menu build, where one of the menuitems pops a dialog. After the dialog is dismissed a return handler/listener is called:
    public void propertyToolReturnHandler(ReturnEvent event)
    AdfUtil.showMessageDialog(AdfUtil.MESSAGE_TYPE.INFORMATION, “some msg”, “some msg”, true);
    Notice the last param to showMessageDialog, which is “true”, as I want to show the message as inline. However, having it set to “true” causes the following exception. If I set it to “false”, then it does work and a popup message appears with the “some msg” text.
    I’m truly stuck trying to figure out what Converter is missing and where. Any ideas will be most welcomed!
    The error I get:
    [Ljava.lang.Object; cannot be cast to javax.faces.convert.Converter
    ADF_FACES-60097:For more information, please see the server's error log for an entry beginning with: ADF_FACES-60096:Server Exception during PPR, #2
    Examining the EMGC_OMS1.out file I see (partial):
    <Apr 10, 2013 2:39:38 PM PDT> <Error> <oracle.adfinternal.view.faces.config.rich.RegistrationConfigurator> <BEA-000000> <ADF_FACES-60096:Server Exception during PPR, #2
    java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast to javax.faces.convert.Converter
         at oracle.adfinternal.view.faces.renderkit.rich.ValueRenderer.getConverter(ValueRenderer.java:197)
         at oracle.adfinternal.view.faces.renderkit.rich.ValueRenderer.addClientConverterRenderScript(ValueRenderer.java:220)
         at oracle.adfinternal.view.faces.renderkit.rich.OutputLabelRenderer.encodeAll(OutputLabelRenderer.java:241)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1431)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:341)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:405)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2778)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer.access$500(RegionRenderer.java:49)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer$ChildEncoderCallback.processComponent(RegionRenderer.java:574)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer$ChildEncoderCallback.processComponent(RegionRenderer.java:553)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:170)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:290)
         at org.apache.myfaces.trinidad.component.UIXGroup.processFlattenedChildren(UIXGroup.java:96)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:160)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:290)
         at org.apache.myfaces.trinidad.component.UIXComponent.encodeFlattenedChildren(UIXComponent.java:255)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer._encodeChildren(RegionRenderer.java:270)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer.encodeAll(RegionRenderer.java:201)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1431)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:341)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at oracle.adf.view.rich.component.fragment.UIXRegion.encodeEnd(UIXRegion.java:321)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:405)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2778)
         at oracle.adf.view.rich.render.RichRenderer.encodeStretchedChild(RichRenderer.java:2149)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelBoxRenderer.access$500(PanelBoxRenderer.java:39)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelBoxRenderer$ChildEncoderCallback.processComponent(PanelBoxRenderer.java:2267)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelBoxRenderer$ChildEncoderCallback.processComponen
    Ania.
    Edited by: user12869467 on Apr 12, 2013 1:57 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    I did more trial/error with this problem. It is not related to AdfUtil.showMessageDialog().
    My java-built table, shows a popup. After the popup is dismissed, I will get this exception, not right away though. The view has tabs, if after dismissing the dialog, I navigate to some other tab, and then back to the one which has the table, that is when the error shows up.
    ANY help on how to diagnose this problem will be very much appreciated!
    Ania.

  • If my network goes out briefly due to a problem at my ISP, FireFox immediatly opens a "diagnose network problems" page. How can I stop this?

    If my network connection goes out briefly due to a problem at my ISP, FireFox immediately opens a "diagnose network problems" page. This is particularly annoying when I don't even have FireFox or any other software open. Ideally, I do NOT want FireFox to even check if my Network is connected. How can I stop this?

    Application Basics
    Name: Firefox
    Version: 36.0.4
    User Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0
    Multiprocess Windows: 0/1
    Crash Reports for the Last 3 Days
    All Crash Reports
    Extensions
    Name: Avast Online Security
    Version: 10.2.0.187
    Enabled: true
    ID: [email protected]
    Name: Download Manager Tweak
    Version: 1.0.8
    Enabled: true
    ID: {F8A55C97-3DB6-4961-A81D-0DE0080E53CB}
    Name: FinalVideoDownloader plugin for Mozilla Firefox
    Version: 1.0.1
    Enabled: true
    ID: [email protected]
    Graphics
    Adapter Description: AMD Radeon HD 6670
    Adapter Drivers: aticfx64 aticfx64 aticfx64 aticfx32 aticfx32 aticfx32 atiumd64 atidxx64 atidxx64 atiumdag atidxx32 atidxx32 atiumdva atiumd6a atitmm64
    Adapter RAM: 1024
    Device ID: 0x6758
    Direct2D Enabled: true
    DirectWrite Enabled: true (6.3.9600.16384)
    Driver Date: 7-4-2014
    Driver Version: 13.251.9001.1001
    GPU #2 Active: false
    GPU Accelerated Windows: 1/1 Direct3D 11 (OMTC)
    Subsys ID: 25451458
    Vendor ID: 0x1002
    WebGL Renderer: Google Inc. -- ANGLE (AMD Radeon HD 6670 Direct3D9Ex vs_3_0 ps_3_0)
    windowLayerManagerRemote: true
    AzureCanvasBackend: direct2d
    AzureContentBackend: direct2d
    AzureFallbackCanvasBackend: cairo
    AzureSkiaAccelerated: 0
    Important Modified Preferences
    accessibility.typeaheadfind.flashBar: 0
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size_cached_value: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.cache.frecency_experiment: 1
    browser.link.open_newwindow: 2
    browser.places.smartBookmarksVersion: 7
    browser.sessionstore.restore_on_demand: false
    browser.sessionstore.upgradeBackup.latestBuildID: 20150320202338
    browser.startup.homepage_override.buildID: 20150320202338
    browser.startup.homepage_override.mstone: 36.0.4
    browser.tabs.autoHide: true
    dom.mozApps.used: true
    extensions.lastAppVersion: 36.0.4
    font.internaluseonly.changed: false
    gfx.direct3d.last_used_feature_level_idx: 0
    media.gmp-gmpopenh264.lastUpdate: 1423171160
    media.gmp-gmpopenh264.version: 1.3
    media.gmp-manager.lastCheck: 1430187591
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1430187593
    places.history.expiration.transient_current_max_pages: 104858
    plugin.disable_full_page_plugin_for_types: application/pdf,application/vnd.adobe.xfdf,application/vnd.fdf
    plugin.importedState: true
    plugin.state.npgeplugin: 0
    plugin.state.npgoogleupdate: 0
    plugin.state.npitunes: 0
    print.printer_Canon_MX920_series_Printer.print_bgcolor: false
    print.printer_Canon_MX920_series_Printer.print_bgimages: false
    print.printer_Canon_MX920_series_Printer.print_colorspace:
    print.printer_Canon_MX920_series_Printer.print_command:
    print.printer_Canon_MX920_series_Printer.print_downloadfonts: false
    print.printer_Canon_MX920_series_Printer.print_duplex: 0
    print.printer_Canon_MX920_series_Printer.print_edge_bottom: 0
    print.printer_Canon_MX920_series_Printer.print_edge_left: 0
    print.printer_Canon_MX920_series_Printer.print_edge_right: 0
    print.printer_Canon_MX920_series_Printer.print_edge_top: 0
    print.printer_Canon_MX920_series_Printer.print_evenpages: true
    print.printer_Canon_MX920_series_Printer.print_footercenter:
    print.printer_Canon_MX920_series_Printer.print_footerleft: &PT
    print.printer_Canon_MX920_series_Printer.print_footerright: &D
    print.printer_Canon_MX920_series_Printer.print_headercenter:
    print.printer_Canon_MX920_series_Printer.print_headerleft: &T
    print.printer_Canon_MX920_series_Printer.print_headerright: &U
    print.printer_Canon_MX920_series_Printer.print_in_color: true
    print.printer_Canon_MX920_series_Printer.print_margin_bottom: 0.5
    print.printer_Canon_MX920_series_Printer.print_margin_left: 0.5
    print.printer_Canon_MX920_series_Printer.print_margin_right: 0.5
    print.printer_Canon_MX920_series_Printer.print_margin_top: 0.5
    print.printer_Canon_MX920_series_Printer.print_oddpages: true
    print.printer_Canon_MX920_series_Printer.print_orientation: 0
    print.printer_Canon_MX920_series_Printer.print_page_delay: 50
    print.printer_Canon_MX920_series_Printer.print_paper_data: 1
    print.printer_Canon_MX920_series_Printer.print_paper_height: 11.00
    print.printer_Canon_MX920_series_Printer.print_paper_name:
    print.printer_Canon_MX920_series_Printer.print_paper_size_type: 0
    print.printer_Canon_MX920_series_Printer.print_paper_size_unit: 0
    print.printer_Canon_MX920_series_Printer.print_paper_width: 8.50
    print.printer_Canon_MX920_series_Printer.print_plex_name:
    print.printer_Canon_MX920_series_Printer.print_resolution: 0
    print.printer_Canon_MX920_series_Printer.print_resolution_name:
    print.printer_Canon_MX920_series_Printer.print_reversed: false
    print.printer_Canon_MX920_series_Printer.print_scaling: 1.00
    print.printer_Canon_MX920_series_Printer.print_shrink_to_fit: true
    print.printer_Canon_MX920_series_Printer.print_to_file: false
    print.printer_Canon_MX920_series_Printer.print_unwriteable_margin_bottom: 0
    print.printer_Canon_MX920_series_Printer.print_unwriteable_margin_left: 0
    print.printer_Canon_MX920_series_Printer.print_unwriteable_margin_right: 0
    print.printer_Canon_MX920_series_Printer.print_unwriteable_margin_top: 0
    print.printer_HP_Photosmart_C4380_series.print_bgcolor: false
    print.printer_HP_Photosmart_C4380_series.print_bgimages: false
    print.printer_HP_Photosmart_C4380_series.print_colorspace:
    print.printer_HP_Photosmart_C4380_series.print_command:
    print.printer_HP_Photosmart_C4380_series.print_downloadfonts: false
    print.printer_HP_Photosmart_C4380_series.print_duplex: 0
    print.printer_HP_Photosmart_C4380_series.print_edge_bottom: 0
    print.printer_HP_Photosmart_C4380_series.print_edge_left: 0
    print.printer_HP_Photosmart_C4380_series.print_edge_right: 0
    print.printer_HP_Photosmart_C4380_series.print_edge_top: 0
    print.printer_HP_Photosmart_C4380_series.print_evenpages: true
    print.printer_HP_Photosmart_C4380_series.print_footercenter:
    print.printer_HP_Photosmart_C4380_series.print_footerleft: &PT
    print.printer_HP_Photosmart_C4380_series.print_footerright: &D
    print.printer_HP_Photosmart_C4380_series.print_headercenter:
    print.printer_HP_Photosmart_C4380_series.print_headerleft: &T
    print.printer_HP_Photosmart_C4380_series.print_headerright: &U
    print.printer_HP_Photosmart_C4380_series.print_in_color: true
    print.printer_HP_Photosmart_C4380_series.print_margin_bottom: 0.5
    print.printer_HP_Photosmart_C4380_series.print_margin_left: 0.5
    print.printer_HP_Photosmart_C4380_series.print_margin_right: 0.5
    print.printer_HP_Photosmart_C4380_series.print_margin_top: 0.5
    print.printer_HP_Photosmart_C4380_series.print_oddpages: true
    print.printer_HP_Photosmart_C4380_series.print_orientation: 0
    print.printer_HP_Photosmart_C4380_series.print_page_delay: 50
    print.printer_HP_Photosmart_C4380_series.print_paper_data: 1
    print.printer_HP_Photosmart_C4380_series.print_paper_height: 11.00
    print.printer_HP_Photosmart_C4380_series.print_paper_name:
    print.printer_HP_Photosmart_C4380_series.print_paper_size_type: 0
    print.printer_HP_Photosmart_C4380_series.print_paper_size_unit: 0
    print.printer_HP_Photosmart_C4380_series.print_paper_width: 8.50
    print.printer_HP_Photosmart_C4380_series.print_plex_name:
    print.printer_HP_Photosmart_C4380_series.print_resolution: 0
    print.printer_HP_Photosmart_C4380_series.print_resolution_name:
    print.printer_HP_Photosmart_C4380_series.print_reversed: false
    print.printer_HP_Photosmart_C4380_series.print_scaling: 1.00
    print.printer_HP_Photosmart_C4380_series.print_shrink_to_fit: true
    print.printer_HP_Photosmart_C4380_series.print_to_file: false
    print.printer_HP_Photosmart_C4380_series.print_unwriteable_margin_bottom: 0
    print.printer_HP_Photosmart_C4380_series.print_unwriteable_margin_left: 0
    print.printer_HP_Photosmart_C4380_series.print_unwriteable_margin_right: 0
    print.printer_HP_Photosmart_C4380_series.print_unwriteable_margin_top: 0
    privacy.donottrackheader.enabled: true
    privacy.sanitize.migrateFx3Prefs: true
    storage.vacuum.last.index: 1
    storage.vacuum.last.places.sqlite: 1427897875
    Important Locked Preferences
    JavaScript
    Incremental GC: true
    Accessibility
    Activated: false
    Prevent Accessibility: 0
    Library Versions
    NSPR
    Expected minimum version: 4.10.7
    Version in use: 4.10.7
    NSS
    Expected minimum version: 3.17.4 Basic ECC
    Version in use: 3.17.4 Basic ECC
    NSSSMIME
    Expected minimum version: 3.17.4 Basic ECC
    Version in use: 3.17.4 Basic ECC
    NSSSSL
    Expected minimum version: 3.17.4 Basic ECC
    Version in use: 3.17.4 Basic ECC
    NSSUTIL
    Expected minimum version: 3.17.4
    Version in use: 3.17.4
    Experimental Features
    ---------------------

  • I have Acrobat 9 Pro and when I print hard copies of my PDF letters drop off from sentences throughout the document. Any idea why and how to fix this problem?

    I have Acrobat 9 Pro and when I print hard copies of my PDF letters drop off from sentences throughout the document. Any idea why and how to fix this problem?

    Hi,
    We’re using Windows 7 Professional, Service Pack 1 and system type is 32-bit operating system.
    Ange

  • Hello, i've win7 64bit and can use my adobe acrobat 7.0.0.2004121400. but it is not possible to print a pdf - error 20225 at the installation of acrobat. any ideas how to solve this problem? I've tryed some instructions from internet concerning this 20225

    hello, i've win7 64bit and can use my adobe acrobat 7.0.0.2004121400. but it is not possible to print a pdf - error 20225 at the installation of acrobat. any ideas how to solve this problem? I've tryed some instructions from internet concerning this 20225 error, but without success. thanks a lot and best regards

    BS heißt "Bull___****". *lol* "Betriebssystem" heißt imemr noch "operating system". GoLive wirste wohl gar nicht zum laufen kriegen. ohnehin würde man es nicht mehr verwenden, weil es noch nicht mal CSS2 voll unterstützt geschweige denn HTML 5 und andere moderne Webstandards. Wenn überhaupt, dann findeste vielleicht noch 'ne OEM CD von Strato oder 1und1 bei eBay. Die haben das damals mit jedem neuen Hostingvertrag rausgehauen. Aber wie gesagt, es ist den Aufwand nicht wert. Illustrator sollte sich durchaus installieren lassen. Eventuell einfach nochmal die Installer im Win XP Kompatibilitätsmodus laufen lassen...
    Mylenium

  • How to diagnose problem with CCMS?

    RWB -> Component Monitoring -> Integration
    I have a red flag on  CCMS Status Last Retry Jan 24, 2006 5:15:03 PM
    How to diagnose what is wrong with CCMS?

    Which o/s are you using??
    We had this problem on windows 2003, and the SAPCCMSR.00 service was not running. I started the service manually and this corrected the error.

  • I have acrobat pro on my lap top and recently installed acrobat pro on my Mac Mini, but the text recognition function is not working, does anyone have any advice on how to remedy this problem?

    I have acrobat pro on my lap top and recently installed acrobat pro on my Mac Mini, but the text recognition function is not working, does anyone have any advice on how to remedy this problem?

    On my laptop when I open up a pdf file and do a search for a particular
    text phrase it prompts me to run a character analysis.  Whereas on my mac
    mini, when I try to engage the same process it just says it couldn't find
    the phrase and doesn't even try and run a character analysis. I tried
    clicking on the tool bar and the recognize text tab but nothing there seems
    to do anything.
    In trying to figure out the issue on my own I noticed one thing.  I run a
    small law firm in St. Louis and I scan in all my files to which are
    subsequently emailed to my outlook account where I will save them as pdf's
    to their respective folders.  On my laptop when I open up an email from my
    scanner I see the image of a acrobat document next to the attachment
    paperclip symbol.  However, when I open up the same email on my mac mini I
    notice instead of an acrobat file image it shows a Preview file image (the
    program used to open up pdf's before I installed acrobat).
    Hope this helps!
    Sincerely,
    Jonathan McAllister

  • I am trying to send minutes of a meeting to pc users by clicking on export and choosing the word option.  Recipients are unable to open them saying they came as a ZIP compressed folder.  No idea what that is or how to correct the problem.  Help!

    I am trying to send minutes of a meeting created in Pages to pc users by clicking on export then word.  Recipients are telling me they cannot open the minutes which have come as a ZIP compressed folder.  I have no idea what this is or how to fix the problem.  Help?!

    A pc user can open a .zip file by double clicking it.
    If that does not work, you can convert the document to a .pdf by doing the following.
    With the document active, type commannd + P  (the print command).
    In the next screen, on the bottom left, click on PDF, and in the drop down select Save as pdf...
    You will be asked where the .pdf should be saved - the desktop is the easiest.
    Now when you want to send the minutes, you have them as a .pdf file. Anyone with Adobe Acrobat Reder can open this.

  • Lion 10.7.2 On both mac book pro and iMac, both with Lion 10.7.2, obtain repeated iCal event notifications from calendar or address book.  Cannot turn these off.  They repeat several times per session and every time computer is used.  How to diagnose this

    Lion 10.7.2 On both mac book pro and iMac, both with Lion 10.7.2, obtain repeated iCal event notifications from calendar or address book.  Cannot turn these off.  They repeat several times per session and every time computer is used.  How to diagnose this?

    First, uninstall "SuperTV" (whatever that is) according to the developer's instructions. It isn't working and it's filling the log with noise.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Enter "BOOT_TIME" (without the quotes) in the search box. Note the timestamps of those log messages, which refer to the times when the system was booted. Now clear the search box and scroll back in the log to the last boot time when you had the problem. Post the messages logged before the boot, while the system was unresponsive or was failing to shut down. Please include the BOOT_TIME message at the end of the log extract.
    Post the log text, please, not a screenshot. If there are runs of repeated messages, post only one example of each. Don’t post many repetitions of the same message. When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    PLEASE DO NOT INDISCRIMINATELY DUMP THOUSANDS OF LINES FROM THE LOG INTO A MESSAGE. If you do that, I will not respond.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.
    Step 2
    Still in Console, look under System Diagnostic Reports for crash or panic logs, and post the most recent one, if any. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if present (it may not be.) Please don’t post shutdownStall, spin, or hang logs — they're very long and not helpful.

  • How to fix a problem with my book pro that has a gray screen with a folder with a question mark on it

    does any one know how to fix a problem with my book pro that has a gray screen with a folder with a question mark on it?

    Hello Mokhtary123 and welcome to Apple Support Communities,
    It will help us diagnose your problem to know the exact model, size, year built, RAM installed and OS you're running.
    But basically your system can't find the boot disk. Usually this is a symptom of a dead/dying/corrupted hard drive;
    A flashing question mark or globe appears when you start your Mac - Apple Support
    OS X Recovery
    http://support.apple.com/en-us/HT4718

  • How to diagnose dead battery vs. something more serious?

    I'm in the 11th month of ownership of an MBA, purchased brand new last year.  128MB model.
    My battery, I believe, is dead but I'm not sure how to diagnose the matter.
    Here's what's lead me to this conclusion:
    MBA charger light stays off when plugged in (not dim, but off).   I've had the dim light issue as well, earlier this year, and Apple replaced the charger.  This time, however, the light stays completely off.
    Battery icon in top right corner tells me that no charger is plugged in.  The icon is in battery mode. 
    Battery charge keeps decreasing steadily in % value despite charger being plugged in, indicating that battery is continually discharging.
    My wife has an MBP, and I've used her 85W charger on my MBA with the same result... i.e charger light stays off.   I know that the MBP charger is in good health as it charges the MBP with no issues (orange light).
    I've used my MBA charger on her MBP, and it charges the MBP just fine!!! (orange light)
    I've done an SMC and NVRAM reset on the MBA, which hasn't affected the situation. 
    Since I'm on 15% charge on the MBA, I've shut it down and have booked an appointment with Apple to have it looked at.
    In the mean-time, I'm hoping to get some clues from fellow MacBook users on this forum.
    I've read somewhere that if it is indeed the battery that's faulty, then once the charger is unplugged, the MBA should turn off immediately.  This isn't the case for me... I'm able to run off battery (whatever tiny amount of charge I have left) with the charger unplugged.
    Hence, I've ruled out the charger being faulty.  I'm not so sure that the battery is faulty.  I'm thinking the issue might lie elsewhere... maybe the magsafe connector on the MBA?
    I should also mention that when I opened the lid on the MBA earlier this evening, before noticing this charging issue, the screen flickered brightly once.  The screen looked and operated normally after the flicker.  Not sure if there's a connection.  I'm beginning to think there is.
    I should also add that, even though the MBA has been a pleasure to use, the past 11 months haven't been trouble-free... which adds to the suspicion that the issue might indeed be somewhere deeper.
    A brief history of "issues":
    About a month or so into ownership... my fan, one day, decided to suddenly spin up to full RPMs and stayed at that speed for an eternity.  I'm used to the fan speed steadily going up in direct relation to the CPU temp.   However, the CPU temp this time was 35C the entire time (according to iStat Menus)... i.e. the MBA was "stone cold".  It made no sense for the fan to be on full-blast.  In addition, I had nothing running. No intensive software.  Not even Safari.  Just "Finder".   Turning the MBA off naturally caused the fan to stop.  However, the moment I powered it back on again, the fan came back on at full speed again.
    An SMC reset fixed the issue, and I was good to go.  This issue occurred again a few months later, but I solved it right away with the SMC reset.
    After another month or so I noticed, while listening to music via headphones that were plugged into the MBA, that I could hear an electric "hum" in the headphones.  Then all of a sudden the hum went away.  I discovered that the hum was present only when I physically touched the metal case of the MBA and went away as soon as I removed my hand.   I mentioned this to a Genius bar... err... genius and he seemed perplexed.  He wasn't able to offer an answer.
    I've also noticed that when the MBA is charging, and I run my finger-tips over the MBA's metal surface that I feel static.  When the charger is unplugged, I no longer feel the static.   Again the genius didn't have an answer.  He probably thought I was weird.
    I'm thinking my MBA might have "grounding" issues, but am no expert in this field.   With the latest charging issues, however, I'm leaning towards this theory again.
    Thoughts are welcome.
    Regards
    MrAir

    No clues, it is very apparent you have a hardware problem and it is not the battery. If it was the battery the computer would not be running as you say the charger is not charging the battery.
    There is a charging curcuit that has more then likely failed. You have done the correct thing, take it in and get it fixed before your warranty runs out.

Maybe you are looking for

  • Convert Word to PDF with a Digital ID?

    Hi, I am looking for a solution to automate the process of adding Digital ID's to PDF's. Whenever I create a PDF from a Word Document with the Adobe PDF converter plug-in for Word I want it to add a Digital ID (certificate security) to that particula

  • Satellite Pro C660-16F: Which AC adapter is compatible

    Hello everyone, I've recently lost the charger of my Toshiba Satellite Pro C660-16F. It supplies output DC 19V --- 3,42 A Also my father has a Toshiba Satellite, model A300 1RF Its chargers supplies DC 19V --- 4,74 A I don't know if I can use my fath

  • Boot camp with xp can't go into stand by

    I was trying to put the computer into standby and it entered the "prepare to standby screen" and just froze. Any idea how to fix this? Thanks

  • Flipbook Software without Flash

    We are working with a client who has a designer create a magazine layout in In Design (a typical magazine is 35+ pages.) They have just switched designers and now don't know what flipbook program the original designer was using or what the best optio

  • MDM and virtualization

    Hi there, for different projects I need different patch versions of MDM running on one laptop. So far I never used virtualization however read in this forum that it is possible. Does anyone have any experience with that? I downloaded a trial of Altir