Boot failure when using KVM

I'm trying to use my Power Mac G5 on a DVI KVM. The monitor attached to the KVM is an Apple 23" Cinema Display, and I'm using a DVI-to-ADC adapter.
This setup works fine for my PCs, but when the Mac boots up, it gets to the login screen, then suddenly shuts down. I've tried different cables & different brands of KVM, and I get the same result. When I attach the monitor through the DVI-to-ADC adapter (without the KVM), it works great, so I know it's the KVM that's causing the problem. I've also tried the work-around of booting headless, then switching the KVM over (or even not connecting the KVM until after its booted); the Mac simply powered down the moment the KVM was attached.
Could this be a Single-Link vs. Dual-Link DVI issue? I know at least one of the KVMs I used is Single-Link, and I suspect the other is as well. Is it possible that my computer requires a dual-link DVI monitor?
Any help would really be appreciated.

The first KVM, which I have been using successfully for a while with my PC, is a STARVIEW by StarTech (never heard of them before this unit), and has no problem providing my PC with access to the 1920x1200 native resolution.
The second KVM I tried is by IOGear (model GCS1104), and it explicitly says that it supports Mac (with the Mac logo), and that it supports 1920x1200.
Is it possible that the Mac will be happier talking to a third-party monitor through the KVM?

Similar Messages

  • How to solve the error message "Could not activate cellular data network: PDP authentication failure"when using 3g or gPRS on safari with an iphone 4 and latest software updates

    Please can someone help me to solve the error message "Could not activate cellular data network: PDP authentication failure"when using 3G or GPRS on safari with an iphone 4GS and latest software updates. I have tried resetting the network and phone settings. I have restored the factory settings on itunes and still the problem persists.

    All iPhones sold in Japan are sold carrier locked and cannot be officially unlocked by the carrier. If you unlocked it, it was by unauthorized means (hacked), and support cannot be given to you in this forum.
    Hacked iPhones are subject to countermeasures by Apple, particularly when updating the firmware. It is likely permanently re-locked or permanently disabled.
    Message was edited by: modular747

  • USB mouse will not initialise on boot-up when used via Dynadock on Satellite Pro U200

    The USB mouse will not initialize on boot-up when used via Dynadock on Satellite Pro U200. If the mouse is reseated on the Dynadock it works fine. I am using a Kensington Valuoptical USB mouse. I have tried alternative kensington mouse and had the same problem. Can anyone advise how to resolve this issue?

    Hi Jeremy
    Unfortunately I have no solution for your issue but it can also be some technical limitation. I am also interesting to buy such docking station and I would like to know if there is the same problem with external HDD or USB memory sticks.

  • Random Authentication Failures when using AdminConnectionFactory

    Has anyone experienced this problem when using the AdminConnectionFactory to create a JMXConnector. I have a Sun ticket open on this issue, but wanted to see if anyone else had any suggestions. Ticket # is 72502922
    Our application uses the Sun AdminConnectionFactory to obtain a JMXConnector object. The code is being executed in a loop at a regular frequency. There is no dynamic nature to the code. All the information required to open a connection using the AdminConnectionFactory comes from static property files. So there is no question of one call being any different than a second call.
    Every so often the call to create a connection fails with the exception message:
    Cannot create JMXConnector to JMS server [jmssys.putnaminv.com:7683] using username [JMXMetricsClient.User] and password [XXX]
    at com.putnam.jms.jmx.JMXUtil.<init>(JMXUtil.java:146)
    at com.putnam.jms.metrics.core.MetricsRetrievalJob.run(MetricsRetrievalJob.java:58)
    at com.putnam.jms.metrics.core.MetricsRetrievalJob.execute(MetricsRetrievalJob.java:37)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:529)
    Caused by: javax.management.JMException: Caught exception when creating JMXConnector
    at com.sun.messaging.AdminConnectionFactory.createConnection(AdminConnectionFactory.java:219)
    at com.putnam.jms.jmx.JMXUtil.<init>(JMXUtil.java:138)
    ... 4 more
    Caused by: java.lang.SecurityException: JMX connector server jmxrmi: Failure detected during authentication java.security.AccessControlException: [B4043]: Connection not authenticated
    at com.sun.messaging.jmq.jmsserver.management.agent.MQJMXAuthenticator.authenticate(MQJMXAuthenticator.java:125)
    at javax.management.remote.rmi.RMIServerImpl.doNewClient(RMIServerImpl.java:213)
    at javax.management.remote.rmi.RMIServerImpl.newClient(RMIServerImpl.java:180)
    at sun.reflect.GeneratedMethodAccessor60.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:305)
    at sun.rmi.transport.Transport$1.run(Transport.java:159)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.rmi.transport.Transport.serviceCall(Transport.java:155)
    at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:535)
    at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:790)
    at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:649)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
    at java.lang.Thread.run(Thread.java:619)
    at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:255)
    at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:233)
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:142)
    at javax.management.remote.rmi.RMIServerImpl_Stub.newClient(Unknown Source)
    at javax.management.remote.rmi.RMIConnector.getConnection(RMIConnector.java:2312)
    at javax.management.remote.rmi.RMIConnector.connect(RMIConnector.java:277)
    at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFactory.java:248)
    at com.sun.messaging.AdminConnectionFactory.createConnection(AdminConnectionFactory.java:217)
    ... 5 more
    The code to create a connection using the AdminConnectionFactory is straight forward:
         JMXConnector jmxc = null;
    try {
    AdminConnectionFactory acf = new AdminConnectionFactory();
    acf.setProperty(AdminConnectionConfiguration.imqAddress, hostname + ":" + port);
    jmxc = acf.createConnection(user, password);
    } catch (JMSException jmse) {
    message = logMsgPrefix + "Cannot create JMXConnector to JMS server [" + hostname + ":" + port + "] using username [" + user + "] and password [" + password + "]";
    log.error(message);
    throw new GenericJMXException(message, jmse);
    } catch (JMException jme) {
    message = logMsgPrefix + "Cannot create JMXConnector to JMS server [" + hostname + ":" + port + "] using username [" + user + "] and password [" + password + "]";
    log.error(message);
    throw new GenericJMXException(message, jme);
    What is causing this connection creation to fail. The same application will work just fine a few minutes later.
    Thanks
    Aspi Engineer
    Putnam Investments

    Thank you for the response.
    Bug 6906978 is a defect that shows itself under high concurrency situations. In our case, we have a single quart based timer that is being triggered every 2 minutes to open a JMX connector. So my guess is that bug 6906978 and the problem that we have been experiencing are two different things.
    But I am willing to try out 4.4U1P1. Any idea where I can download it from?
    - Aspi

  • JDBC connection pool failures when used by JMS stores

              We are using WebLogic 6.1 sp2. We defined a separate connection pool for use by
              a JMS Store.
              <JDBCConnectionPool Name="sybaseJMSPool"
              Targets="cluster00"
              InitialCapacity="2"
              MaxCapacity="10"
              DriverName="com.sybase.jdbc2.jdbc.SybDriver"
              Properties="[email protected]@;[email protected]@;charset=utf8"
              URL="jdbc:sybase:Tds:@jms.db.host@/@jms.db.name@"/>
              (note that the @xxx@ string are replaced by actual values).
              We are using Sybase Jconnect 5.5 to a Sybase ASE 12.5 database.
              We deployed this configuration on a number of environments (testing, staging,
              ..). The actual hardware and network configuration is different for the different
              system, but the WebLogic domain stays the same regarding this issue.
              On the test system we frequently get the following exceptions:
              <Aug 13, 2002 1:56:04 PM CEST> <Alert> <JMS> <www00-test> <node00>
              <ExecuteThread: '6' for queue: 'JMS.TimerClientPool'> <> <> <040048>
              <JMSServer "JMSServer00", store failure while writing message for topic
              OrderChangeTopic, java.io.IOException: JMS JDBC store, connection pool =
              <sybaseJMSPool>, prefix = <JMS00>: write failed
              java.sql.SQLException: JZ006: Caught IOException:
              com.sybase.jdbc2.jdbc.SybConnectionDeadException: JZ0C0: Connection is already
              closed.
              at com.sybase.jdbc2.jdbc.ErrorMessage.raiseErrorCheckDead
              (ErrorMessage.java:715)
              at com.sybase.jdbc2.tds.Tds.handleIOE(Tds.java:3124)
              at com.sybase.jdbc2.tds.Tds.cancel(Tds.java:1412)
              at com.sybase.jdbc2.tds.Tds.cancel(Tds.java:1341)
              at com.sybase.jdbc2.jdbc.SybStatement.doCancel(SybStatement.java:564)
              at com.sybase.jdbc2.jdbc.SybStatement.updateLoop(SybStatement.java:1672)
              at com.sybase.jdbc2.jdbc.SybStatement.executeUpdate
              (SybStatement.java:1625)
              at com.sybase.jdbc2.jdbc.SybPreparedStatement.executeUpdate
              (SybPreparedStatement.java:91)
              at com.p6spy.engine.logging.P6LogPreparedStatement.executeUpdate
              (P6LogPreparedStatement.java:179)
              at weblogic.jdbc.pool.Statement.executeUpdate(Statement.java:293)
              at weblogic.jms.store.JDBCIOStream.write(JDBCIOStream.java:1246)
              at weblogic.jms.store.StoreRequest.doTheIO(StoreRequest.java:250)
              at weblogic.jms.store.JMSStore.execute(JMSStore.java:182)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              .>
              java.io.IOException: JMS JDBC store, connection pool = <sybaseJMSPool>, prefix
              = <JMS00>: write failed
              java.sql.SQLException: JZ006: Caught IOException:
              com.sybase.jdbc2.jdbc.SybConnectionDeadException: JZ0C0: Connection is already
              closed.
              at com.sybase.jdbc2.jdbc.ErrorMessage.raiseErrorCheckDead
              (ErrorMessage.java:715)
              at com.sybase.jdbc2.tds.Tds.handleIOE(Tds.java:3124)
              at com.sybase.jdbc2.tds.Tds.cancel(Tds.java:1412)
              at com.sybase.jdbc2.tds.Tds.cancel(Tds.java:1341)
              at com.sybase.jdbc2.jdbc.SybStatement.doCancel(SybStatement.java:564)
              at com.sybase.jdbc2.jdbc.SybStatement.updateLoop(SybStatement.java:1672)
              at com.sybase.jdbc2.jdbc.SybStatement.executeUpdate
              (SybStatement.java:1625)
              at com.sybase.jdbc2.jdbc.SybPreparedStatement.executeUpdate
              (SybPreparedStatement.java:91)
              at com.p6spy.engine.logging.P6LogPreparedStatement.executeUpdate
              (P6LogPreparedStatement.java:179)
              at weblogic.jdbc.pool.Statement.executeUpdate(Statement.java:293)
              at weblogic.jms.store.JDBCIOStream.write(JDBCIOStream.java:1246)
              at weblogic.jms.store.StoreRequest.doTheIO(StoreRequest.java:250)
              at weblogic.jms.store.JMSStore.execute(JMSStore.java:182)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              at weblogic.jms.store.JDBCIOStream.throwIOException
              (JDBCIOStream.java:1213)
              at weblogic.jms.store.JDBCIOStream.write(JDBCIOStream.java:1256)
              at weblogic.jms.store.StoreRequest.doTheIO(StoreRequest.java:250)
              at weblogic.jms.store.JMSStore.execute(JMSStore.java:182)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              Before that this message appeared:
              <Aug 13, 2002 11:31:16 AM CEST> <Error> <ConnectionManager> <www00-test>
              <node00> <ExecuteThread: '26' for queue: 'default'> <> <> <000000>
              <Closing: 'weblogic.rjvm.t3.T3JVMConnection@795af6' because of: 'Server
              received a message over an uninitialized connection: 'JVMMessage from: 'null'
              to: '-4555218188801970213S:192.168.13.1:[7001,7001,7002,7002,7001,7002,-
              1]:ADIS:node00' cmd: 'CMD_REQUEST', QOS: '101', responseId: '1',
              invokableId: '287', flags: 'JVMIDs Not Sent, TX Context Not Sent', abbrev
              offset: '34'''>
              This problem did not occur on another system which was used during a 2 day stress
              testing session.
              It seems that the problem occurs after a period in which no user request where
              made. The user requests trigger EJB's that start sending JMS messages.
              When the problem occurs, the JMS messaging systems seems to lock up as no messages
              are received anymore by the different listeners (MDBs).
              Undeploying and redeploying the JBDC connection pool solves the problem. This
              solution is unacceptable in case of a production system.
              A similarly defined connection pool, which is used by the EJBs to make database
              connection, does not manifest this problem.
              <JDBCConnectionPool Name="sybasePool"
              Targets="cluster00"
              InitialCapacity="10"
              CapacityIncrement="5"
              MaxCapacity="50"
              PreparedStatementCacheSize="150"
              DriverName="com.sybase.jdbc2.jdbc.SybDriver"
              Properties="[email protected]@;[email protected]@;JCONNECT_VERSION=6;charset=utf8"
              URL="jdbc:sybase:Tds:@db.host@/@db.name@"/>
              The JDBC connection pool is used as follows by the JDBC store
              <JMSJDBCStore ConnectionPool="sybaseJMSPool" Name="JDBCStore00" PrefixName="JMS00"/>
              <JMSServer Name="JMSServer00" Store="JDBCStore00" Targets="node00">
              <JMSTopic JNDIName="ADIS.JMSError" JNDINameReplicated="false" Name="ErrorTopic"/>
              <JMSTopic JNDIName="ADIS.Status"
              Name="StatusTopic" RedeliveryDelayOverride="300000"/>
              <JMSTopic JNDIName="ADIS.OrderChange" JNDINameReplicated="false"
              Name="OrderChangeTopic" RedeliveryLimit="3"/>
              </JMSServer>
              Turning on the "Test Reserved Connection" with a appropriate test table does not
              help.
              Some sources on the internet tell us that JZ0C0 errors in the Jconnect driver
              can be related to network problems. Nevertheless the connection pool should be
              able to cope with this.
              Can you provide any solution for this ? Or give us hints what can cause the problem
              

    Zhenhao Qi wrote:
    thanks! Joe.
    The SQL statement itself can no longer be simplified, the long excuation time is due to the database size and complicated Select criteria. I can easily reproduce the problem by using this SQL. I tried "BEA's Oracle driver (Type 4): Version 8.1.7,9.0.1,9.2.0". the question can be dissect into 2 pieces:
    1) why the jdbc connection (using oracle.jdbc.OracleDriver) won't return anything if the SQL execution time > 5min, that is probably the Oracle's problem
    2) why the occupied connection pool won't release even I set "Statementtimeout=600", this is Weblogic's problem.
    ZhenhaoHi. Yes, (1) is oracle's problem. (2) may also be. The JDBC spec has very few
    allowances for one thread to interrupt a second thread's JDBC call. If we
    transmit your timeout request by calling setQueryTimeout() on the oracle
    statement, and if you have a weblogic-controlled transaction we call
    Statement.cancel() on any ongoing statement, we end up relying on whether
    the Oracle driver implements and responds to those calls.
    Are you doing weblogic-controlled transactions? Are you/can you
    call Statement.setQueryTimeout() on your statements, or are these
    generated JDBC queries?
    If you can duplicate the problem using the weblogic.jdbc.oracle.OracleDriver
    we have some other debug avenues. This would be good even if you really
    want to use the thin driver, because we will do the same JDBC calls to
    either driver, and the debug would prove (if) we set up a query timeout
    and if we call cancel(). If we do, then we can know that it is the Oracle
    driver failing in these regards.
    Joe

  • Conversion failure when using PDF Pack to convert a publisher file

    Up until the last few months, I used acrobat 8 to convert my church's newsletter from Publisher to PDF for posting on our church website.  When we switched to Windows 8 in January my Acrobat 8 couldn't be installed.  We just registered for the PDF pack with the yearly subscription fee and I have tried twice to convert our most recent newsletter.  Both time the conversion failed with the second time sending the message that the file was too complex or too large to convert.
    What do I need to do to make Acrobat XI as least as capable as Acrobat 8 in converting publisher files?

    Hi eec hampton,
    Adobe PDF Pack and Acrobat XI are two different things. PDF Pack is an online service, whereas Acrobat XI is a much more current version of the Acrobat that you had on your computer until recently.
    There is a file size limit to the files that you convert with PDF Pack (100MB), but even when a file falls below that file size, the complexity of the file (how much text and graphics, and so on) can cause conversion failure. (You could be dealing with bandwidth issues, for example, as the file is uploaded to the Internet for conversion.)
    One option it to convert smaller portions of the newsletter. You can also download a free 30-day trial of Acrobat XI from www.adobe.com/products/acrobat.html, and convert your publisher document using that.
    Please let us know how it goes.
    Best,
    Sara

  • Transcoding Failure when using H.264 (3x crash service down)

    I am compressing a video for the web. The original video is 720P DVCPro HD 23.98fps with exactly 2 minutes and 30 seconds length. I'm trying to compress it down to 480x270 (16:9) with H.264 using Compressor 3.0.1. For some reason it keeps on giving me this Failure with error code (3x crash service down). Any help in resolving this problem. Thanks

    hey L. Steele. Thanks for the info. I was finaly able to solve the problem. For some reason Compressor doesn't like DVCPro HD's frame and pixel size. This is what I did to resolve this issue. First the problem. When I bring in DVCPro HD media into Compressor, it is recognizing it as 960x720, which is correct but FCP handles it properly and views it as 1280x720 for that widescreen look. When I compress it as 50% source, it outputs the video as 480x360 which results in squashed picture. If I select custom 16:9, to get to 480x270, it gives me those errors. To solve this issue, I exported out of quicktime as 10-bit uncompressed HD file which resulted in 1280x720 pixel. I brought that back into compressor and it finally worked. I was able to get 480x270.

  • Ebay "plug-in failure" when using the standard pic uploader - HELP

    Hi.  I sell on Ebay frequently and have not been able to use their "standard picture" uploader.  This feature allows you to upload multiple pictures at once, which saves time.  However, whenever I try to use this feature, I get the attached error.  I have uninstalled and reinstalled Adobe Flash, enabled plug ins under security preferences.  I have also ran and completed a software update on my mac (safari was out of date).  I have cleared cache, shut down and rebooted.   I'm still getting the "failed plug-in" message.  I am on Safari version Version 6.1.1 (7537.73.11) and have a MAC OS X 10.7.5.  Thooughts?

    I am having the exact issues:
    Same day problem started, using newest flash version, also on iMac OS X 10.9.4 browser is safari. I've also uninstalled & reinstalled flash without resolve. Cannot have multiple tabs open when on broadcasting sites & youtube, as using the up/down volume both on keyboard & wireless headset produces "Plug-in Failure" message on all sites. Refreshing the page works, but cannot touch my volume without error message reappearing.
    Would appreciate a solution promptly.
    Nicole

  • Deserialization failure when using JWS

    Hi folks,
    I have an application which works fine without being
    launched from JWS, but when I tried to use JWS to
    open it, it somehow failed a critical deserialization
    procedure in my program. This happens inside a thread:
    public void run(){
    XMLDecoder decoder=new XMLDecoder(...);
    Something sth=(Something)decoder.readObject();
    do something with "sth" here
    Everthing is fine if I run this without JWS. But
    when I run this with JWS, "sth" somehow turns out
    to be null, which means that the deserialization
    code has failed.
    I am just wondering what the JWS designers have
    done with an application the JWS launches. Why can't
    an application registered with the JWS control panel
    be launched just in the same way that a JAR file is
    executed by javaw following a double-click?
    I would appreciate if anyone can help me, or voice
    this problem to Sun. We are all excited about JWS,
    and certainly do not want to have these frustrations.

    What args are you passing to the XMLDecoder
    constructer ?
    You may be getting a security error you are not
    seeing,
    because when running with Java Web Start, your app may
    be running with only sandboxed
    permissions, as opposed to full permissions when run
    from commandline.I jarsigned the jar file and granted full security
    permission to the application. So this is certainly not
    because of security violation. BTW, the behavior is
    odd. My application runs for the first time right after
    downloading or updating, but after I closed the application
    and tried to launch it for the second time, it failed.
    >
    The substantial differences when running under Java
    Web Start that I can think of are:
    1.) a SecurityManager is installed.
    2.) the app runs in a secondary AppContext,
    3.) the classes are loaded by a JNLPClassLoader, and
    4.) top level JFrame(s) are created before your app
    creates one (ie: (Frame.getFrames())[0] may not
    be your window.)
    Thanks for the clarifications. The 2nd, 3rd, and 4th
    points you made here are certainly right, but how can
    I possibly know what triggers which exception?

  • Shmget failure when using a large cachesize with DB_SYSTEM_MEM flag enabled

    This is probably due to me not understanding the requrements well enough. I am using bdb with given env flags (notabley DB_PRIVATE disabled, DB_SYSTEM_MEM enabled). I call set_shm_key with required args. However, this app fails at runtime with given error if I define a 1.5 GB cache size.
    It seems that the system is calling shmget with value (117441140) that is beyond the kernel constraints (shmmax=33554432). This app runs well if I do NOT setup cachesize and let it default. This implies some relationship between cachesize & shared memory size. Is that correct? What am I doint wrong here. Any help is appreciated.
    Thanks,
    Usamah
    Error:
    =========================
    shmget: key: 117441140: unable to create shared system memory region: Invalid argument
    =========================
    Setup:
    ==========================
    envFlags = DB_INIT_CDB | DB_CREATE | DB_INIT_MPOOL | DB_THREAD | DB_SYSTEM_MEM;
    dbEnv->set_cachesize(dbEnv, 1, 500 * 1024 * 1024, 4);
    shMemSegId = ftok(errorFile, 7);
    dbEnv->set_shm_key(hornetDbAbstract->dbEnv, (key_t)shMemSegId);
    ===========================
    Kernel shared memory settings:
    ===========================
    [umalik@tamerlane buzzer]$ cat /proc/sys/kernel/shmall
    2097152
    [umalik@tamerlane buzzer]$ cat /proc/sys/kernel/shmmax
    33554432
    [umalik@tamerlane buzzer]$ cat /proc/sys/kernel/shmmni
    4096
    ============================
    System:
    ============================
    [umalik@tamerlane buzzer]$ cat /proc/version
    Linux version 2.6.17-1.2142_FC4smp ([email protected]) (gcc version 4.0.2 20051125 (Red Hat 4.0.2-8)) #1 SMP Tue Jul 11 22:57:02 EDT 2006
    [umalik@tamerlane buzzer]$ cat /proc/meminfo
    MemTotal: 1814900 kB
    MemFree: 157236 kB
    Buffers: 39484 kB
    Cached: 888456 kB
    SwapCached: 0 kB
    Active: 1222584 kB
    Inactive: 356452 kB
    HighTotal: 917312 kB
    HighFree: 48980 kB
    LowTotal: 897588 kB
    LowFree: 108256 kB
    SwapTotal: 1966072 kB
    SwapFree: 1965500 kB
    Dirty: 100 kB
    Writeback: 0 kB
    Mapped: 753796 kB
    Slab: 55552 kB
    CommitLimit: 2873520 kB
    Committed_AS: 1052532 kB
    PageTables: 8592 kB
    VmallocTotal: 116728 kB
    VmallocUsed: 4104 kB
    VmallocChunk: 108876 kB
    HugePages_Total: 0
    HugePages_Free: 0
    HugePages_Rsvd: 0
    Hugepagesize: 2048 kB
    bdb version: 4.5.20
    ============================

    Hi Usamah,
    The values that you presented denote that you are running with the defaults settings for the shared system memory. If you print out the value of the generated key resulted after the "ftok" call, you will observe that the key 117441140 should be the base segment ID (that is, the key generated with the "ftok" call) plus 2, meaning the "shmget" call failed when attempting to allocate memory segments for the Memory Pool subsystem. You will need a total of 3 segment IDs; more information on this can be found here:
    http://www.oracle.com/technology/documentation/berkeley-db/db/api_c/env_set_shm_key.html
    It's possible that your system wasn't able to find and allocate contiguous memory, even though you specified that the 1,5GB cache should be broken in 4 portions.
    I suggest you try to reconfigure the shared system memory by doing the following:
    - edit /etc/sysctl.conf and add the following lines:
    kernel.shmmax = 536870912
    kernel.shmall = 536870912
    - run the following from the console:
    /sbin/sysctl -p
    - reboot your system, and run again the test application.
    Let us know if the issue gets resolved this way, and if you need further help.
    Regards,
    Andrei

  • Getting kernel protection failure when using a particular vsti - plugin.

    Hi
    I have recently upgraded my computer system from a quad g5 to a macpro. I use my mac mostly for composing/producing music. I use Steinberg Cubase 4.
    Initially there has been some compability issues with Cubase 4, but using the last updates has made it a fairly pleasant experience with few problems. I use this software daily.
    I really have a lot of vst -instruments that I use in Cubase, but there is one that now seems unusable; the ReFX Nexus softsynth.
    I have been in contact with the ReFX support for help, but the software seems to be installed ok and it works well on other similar computers/Os x - versions/Cubase 4.
    Now Nexus is the only software that consequently crashes Cubase when I try to load the synth in Cubase vst - rack inside Cubase.
    I bring the crash report in the hope that anyone can see anything peculiar in the process. This report was made after i tried to start Nexus as the only plug - in in Cubase that was already up running stable.
    Date/Time: 2007-07-28 23:24:06.692 +0200
    OS Version: 10.4.10 (Build 8R2218)
    Report Version: 4
    Command: Cubase 4
    Path: /Applications/Cubase 4.app/Contents/MacOS/Cubase 4
    Parent: WindowServer [58]
    Version: 4.0.3.2229 (4.0.3.2229)
    PID: 352
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.reFX.Nexus 0x20f24472 main_macho + 578666
    1 com.reFX.Nexus 0x20e79e7a 0x20e5f000 + 110202
    2 com.reFX.Nexus 0x20e94cea AUVSTViewEntry + 53630
    3 com.reFX.Nexus 0x20e967b8 AUVSTViewEntry + 60492
    4 com.steinberg.VSTPluginManager 0x1a690484 0x1a68d000 + 13444
    5 com.steinberg.VSTPluginManager 0x1a68fa17 0x1a68d000 + 10775
    6 com.steinberg.cubase 0x00bbea9b MpexSetProperty(long, long double, unsigned long, void*) + 1409399
    7 com.steinberg.cubase 0x009acffe start + 10136834
    8 com.steinberg.cubase 0x00a17bc8 start + 10574028
    9 com.steinberg.cubase 0x009acffe start + 10136834
    10 com.steinberg.cubase 0x009ad0fc start + 10137088
    11 com.steinberg.cubase 0x00a8f0ba MpexSetProperty(long, long double, unsigned long, void*) + 165782
    12 com.steinberg.cubase 0x00a195b6 start + 10580666
    13 com.steinberg.cubase 0x0094d0dd start + 9743841
    14 com.steinberg.cubase 0x0094c26e start + 9740146
    15 com.steinberg.cubase 0x00956e8d start + 9784209
    16 com.steinberg.cubase 0x009a6e9c start + 10111904
    17 com.steinberg.cubase 0x00abfe03 MpexSetProperty(long, long double, unsigned long, void*) + 365791
    18 com.steinberg.cubase 0x009138c2 start + 9508294
    19 com.steinberg.cubase 0x009196d4 start + 9532376
    20 com.steinberg.cubase 0x009a6e9c start + 10111904
    21 com.steinberg.cubase 0x0077815f start + 7822947
    22 com.steinberg.cubase 0x009af119 start + 10145309
    23 com.steinberg.cubase 0x009af119 start + 10145309
    24 com.steinberg.cubase 0x00a174e6 start + 10572266
    25 com.steinberg.cubase 0x009af119 start + 10145309
    26 com.steinberg.cubase 0x009af119 start + 10145309
    27 com.steinberg.cubase 0x009af119 start + 10145309
    28 com.steinberg.cubase 0x009af119 start + 10145309
    29 com.steinberg.cubase 0x009f5f4c start + 10435664
    30 com.steinberg.cubase 0x009af119 start + 10145309
    31 com.steinberg.cubase 0x00a174e6 start + 10572266
    32 com.steinberg.cubase 0x009af119 start + 10145309
    33 com.steinberg.cubase 0x00a8f529 MpexSetProperty(long, long double, unsigned long, void*) + 166917
    34 com.steinberg.cubase 0x00bc8323 CPSOLAAnalysisEnhIf::DestroyInstance(CPSOLAAnalysisEnhIf*) + 37249
    35 com.steinberg.cubase 0x00bc950d CPSOLAAnalysisEnhIf::DestroyInstance(CPSOLAAnalysisEnhIf*) + 41835
    36 com.apple.HIToolbox 0x92deb537 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1093
    37 com.apple.HIToolbox 0x92deabdc SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 304
    38 com.apple.HIToolbox 0x92df1fbc SendEventToEventTarget + 56
    39 com.apple.HIToolbox 0x92df244f ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 1169
    40 com.apple.HIToolbox 0x92deb8ee DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2044
    41 com.apple.HIToolbox 0x92deabdc SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 304
    42 com.apple.HIToolbox 0x92df1fbc SendEventToEventTarget + 56
    43 com.steinberg.cubase 0x00bc494d CPSOLAAnalysisEnhIf::DestroyInstance(CPSOLAAnalysisEnhIf*) + 22443
    44 com.steinberg.cubase 0x009f0959 start + 10413661
    45 com.steinberg.cubase 0x009f0b0b start + 10414095
    46 com.steinberg.cubase 0x00a9b5fa MpexSetProperty(long, long double, unsigned long, void*) + 216278
    47 com.steinberg.cubase 0x0088ffd3 start + 8969431
    48 com.steinberg.cubase 0x007c00f1 start + 8117749
    49 com.steinberg.cubase 0x0000240a start + 270
    50 com.steinberg.cubase 0x00002325 start + 41
    Thread 1:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082cace CFRunLoopRunInMode + 61
    3 com.apple.audio.CoreAudio 0x9146841e HALRunLoop::OwnThread(void*) + 158
    4 com.apple.audio.CoreAudio 0x91468239 CAPThread::Entry(CAPThread*) + 93
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x901101bf semaphoretimedwaittrap + 7
    1 com.steinberg.cubase 0x00d6dd81 0x1000 + 14077313
    2 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.ColorSync 0x915a86cf pthreadSemaphoreWait(t_pthreadSemaphore*) + 35
    2 com.apple.ColorSync 0x915c2de0 CMMConvTask(void*) + 60
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 4:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.ColorSync 0x915a86cf pthreadSemaphoreWait(t_pthreadSemaphore*) + 35
    2 com.apple.ColorSync 0x915c2de0 CMMConvTask(void*) + 60
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 5:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.ColorSync 0x915a86cf pthreadSemaphoreWait(t_pthreadSemaphore*) + 35
    2 com.apple.ColorSync 0x915c2de0 CMMConvTask(void*) + 60
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 6:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.audio.midi.CoreMIDI 0x9615893b XServerMachPort::ReceiveMessage(int&, void*, int&) + 101
    2 com.apple.audio.midi.CoreMIDI 0x96150e8d MIDIInPortThread::Run() + 113
    3 com.apple.audio.midi.CoreMIDI 0x96151b6d XThread::RunHelper(void*) + 17
    4 com.apple.audio.midi.CoreMIDI 0x961594ad CAPThread::Entry(CAPThread*) + 93
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 7:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.steinberg.cubase 0x00a54ac5 start + 10823625
    2 com.steinberg.cubase 0x00e486a8 0x1000 + 14972584
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 8:
    0 libSystem.B.dylib 0x9002493f semaphorewaittrap + 7
    1 com.steinberg.cubase 0x007356fc start + 7549952
    2 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 9:
    0 libSystem.B.dylib 0x90047dd7 semaphoretimedwait_signaltrap + 7
    1 com.apple.audio.CoreAudio 0x9147565c CAGuard::WaitFor(unsigned long long) + 212
    2 com.apple.audio.CoreAudio 0x9147557e CAGuard::WaitUntil(unsigned long long) + 66
    3 com.apple.audio.CoreAudio 0x91473efa HP_IOThread::WorkLoop() + 690
    4 com.apple.audio.CoreAudio 0x91473c43 HPIOThread::ThreadEntry(HPIOThread*) + 17
    5 com.apple.audio.CoreAudio 0x91468239 CAPThread::Entry(CAPThread*) + 93
    6 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 10:
    0 libSystem.B.dylib 0x90037b57 machwaituntil + 7
    1 ...ple.CoreServices.CarbonCore 0x90ce6319 Delay + 118
    2 ...opellerheads.rewire.library 0x1a9967e8 RWPUnregisterDeviceImp + 21574
    3 ...opellerheads.rewire.library 0x1a9b1a5c RWPUnregisterDeviceImp + 132794
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 11:
    0 libSystem.B.dylib 0x901101bf semaphoretimedwaittrap + 7
    1 com.steinberg.cubase 0x00e40bd7 0x1000 + 14941143
    2 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 12:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9083e188 CFRunLoopRun + 60
    3 ...lemony.MelodyneRewireDevice 0x1b5b1e7f GNMessagePortLoop(void*) + 157
    4 ...lemony.MelodyneRewireDevice 0x1b5cb65b GNThreadHandler(void*) + 103
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 13:
    0 libSystem.B.dylib 0x900bc26c sem_wait + 12
    1 ...lemony.MelodyneRewireDevice 0x1b5a451d GNReWire2AudioDeviceHost::workerThreadFunction(void*) + 99
    2 ...lemony.MelodyneRewireDevice 0x1b5cb65b GNThreadHandler(void*) + 103
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 14:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.steinberg.cubase 0x00a54e6e start + 10824562
    2 com.steinberg.cubase 0x008ae02f start + 9092403
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 15:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.steinberg.cubase 0x00a54e6e start + 10824562
    2 com.steinberg.cubase 0x008ae02f start + 9092403
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 16:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.steinberg.cubase 0x00a54e6e start + 10824562
    2 com.steinberg.cubase 0x008ae02f start + 9092403
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 17:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.steinberg.cubase 0x00a54e6e start + 10824562
    2 com.steinberg.cubase 0x008ae02f start + 9092403
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 18:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.steinberg.cubase 0x00a54e6e start + 10824562
    2 com.steinberg.cubase 0x008ae02f start + 9092403
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 19:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.steinberg.cubase 0x00a54e6e start + 10824562
    2 com.steinberg.cubase 0x008ae02f start + 9092403
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 20:
    0 libSystem.B.dylib 0x901101bf semaphoretimedwaittrap + 7
    1 com.steinberg.cubase 0x008ae7ab start + 9094319
    2 com.steinberg.cubase 0x008aeba8 start + 9095340
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 21:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.steinberg.cubase 0x00a54ac5 start + 10823625
    2 com.steinberg.cubase 0x007af822 start + 8049958
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 22:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.steinberg.cubase 0x00a54ac5 start + 10823625
    2 com.steinberg.cubase 0x007af822 start + 8049958
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 23:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.steinberg.cubase 0x00a54ac5 start + 10823625
    2 com.steinberg.cubase 0x007af822 start + 8049958
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 24:
    0 libSystem.B.dylib 0x90047dd7 semaphoretimedwait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x90ce1da9 TSWaitOnSemaphoreCommon + 163
    2 ...ickTimeComponents.component 0x97ee42a6 ReadSchedulerThreadEntryPoint + 4723
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 25:
    0 libSystem.B.dylib 0x90047dd7 semaphoretimedwait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x90ce1da9 TSWaitOnSemaphoreCommon + 163
    2 ...ple.CoreServices.CarbonCore 0x90cebcdc AIOFileThread(void*) + 1068
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x20f2445a ecx: 0x00000000 edx: 0x00000000
    edi: 0x210a3ee0 esi: 0x210a3ee0 ebp: 0xbfffe4a8 esp: 0xbfffe450
    ss: 0x0000001f efl: 0x00010246 eip: 0x20f24472 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0x1578fff com.steinberg.cubase 4.0.3.2229 /Applications/Cubase 4.app/Contents/MacOS/Cubase 4
    0x1b05000 - 0x1b47fff sqlite.dylib /Applications/Cubase 4.app/Contents/MacOS/sqlite.dylib
    0x1eb5000 - 0x1ebafff com.apple.audio.AppleHDAHALPlugIn 1.3.3 (1.3.3a1) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1fe0000 - 0x1fe1fff com.apple.textencoding.unicode 2.1 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x2f82000 - 0x2f83fff optaudiodsp.dylib /Applications/Cubase 4.app/Contents/MacOS/optaudiodsp.dylib
    0x2fdc000 - 0x2fe1fff optaudioprimitives.dylib /Applications/Cubase 4.app/Contents/MacOS/optaudioprimitives.dylib
    0x2fe7000 - 0x2febfff optaudiochannel.dylib /Applications/Cubase 4.app/Contents/MacOS/optaudiochannel.dylib
    0x167bd000 - 0x167c5fff com.apple.iokit.IOUSBLib 2.7.5 /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
    0x16b3b000 - 0x16baefff com.Syncrosoft.Synsoacc ??? (1.8.1.1) /Library/Application Support/Syncrosoft/pos/Synsoacc.bundle/Contents/MacOS/Synsoacc
    0x16e05000 - 0x16e3afff optconvif.dylib /Applications/Cubase 4.app/Contents/MacOS/optconvif.dylib
    0x17618000 - 0x176c7fff com.steinberg.omffilter 2.2.0.121 /Applications/Cubase 4.app/Contents/components/omffilter.bundle/Contents/MacOS/omffilter
    0x177e8000 - 0x17838fff com.DivXInc.DivXDecoder 6.0.5 /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x1a68d000 - 0x1a6b4fff com.steinberg.VSTPluginManager 1.0.0.281 /Applications/Cubase 4.app/Contents/components/VSTPlugManager.bundle/Contents/MacOS/VSTPlugManager
    0x1a98b000 - 0x1a9eafff se.propellerheads.rewire.library 1.7 /Users/jannoveertresvag/Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x1aa09000 - 0x1adc2fff se.propellerheads.reason.engine 3.0.5 /Applications/Reason/Reason.app/Contents/PlugIns/Reason Engine.plugin/Contents/MacOS/Reason Engine
    0x1ae9d000 - 0x1aefcfff se.propellerheads.rewire.library 1.7 /Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x1b105000 - 0x1b3bafff com.ableton.live-engine 5.2.2 /Applications/Live 5.2.2 OS X/Live.app/Contents/Resources/Ableton Live Engine.bundle/Contents/MacOS/Ableton Live Engine
    0x1b5a2000 - 0x1b7cffff com.celemony.MelodyneRewireDevice 3.2.1.3 /Library/Application Support/Propellerhead Software/ReWire/MelodyneRewireDevice.plugin/Contents/MacOS/MelodyneRewireDevice
    0x1bfb1000 - 0x1bfbefff com.steinberg.rewiredevice 3.0.5a13 /Library/Application Support/Steinberg/ReWire/Virtual Guitarist 2ReWire.bundle/Contents/MacOS/ReWireDevice
    0x1c1a6000 - 0x1c1c2fff com.abbeyroad.tg12413_1969.vst V1.1.5.0 (1.1.5.0) /Library/Audio/Plug-Ins/VST/TG124131969.vst/Contents/MacOS/TG124131969
    0x2093b000 - 0x2099efff [Unknown Bundle] [Unknown Bundle]
    0x20b05000 - 0x20b21fff com.abbeyroad.tg12413_2005.vst V1.1.5.0 (1.1.5.0) /Library/Audio/Plug-Ins/VST/TG124132005.vst/Contents/MacOS/TG124132005
    0x20dda000 - 0x20e3dfff [Unknown Bundle] [Unknown Bundle]
    0x20e5f000 - 0x20fbdfff com.reFX.Nexus 1.3.5 /Library/Audio/Plug-Ins/VST/Nexus.vst/Contents/MacOS/Nexus
    0x21733000 - 0x2174cfff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x21751000 - 0x2176afff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x41410000 - 0x414adfff com.apple.QuickTimeImporters.component 7.2 /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x41840000 - 0x41863fff com.apple.CoreMediaPrivate 1.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x419b0000 - 0x419ecfff com.apple.QuickTimeFireWireDV.component 7.2 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x41a30000 - 0x41a33fff com.apple.CoreMediaAuthoringPrivate 1.0 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x8fe00000 - 0x8fe4afff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.26 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91008000 - 0x91046fff com.apple.CFNetwork 129.20 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91059000 - 0x91069fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91074000 - 0x910f3fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112d000 - 0x9114bfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91157000 - 0x91165fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91168000 - 0x91307fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91405000 - 0x9140dfff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91414000 - 0x9141bfff libbsm.dylib /usr/lib/libbsm.dylib
    0x9141f000 - 0x91445fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91457000 - 0x914cdfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151e000 - 0x9151efff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91520000 - 0x9154cfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9155f000 - 0x91633fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166e000 - 0x916e1fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9170f000 - 0x917b8fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917de000 - 0x91829fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91848000 - 0x9185efff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9186a000 - 0x91885fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91890000 - 0x918cdfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918e1000 - 0x918edfff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f4000 - 0x91934fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91947000 - 0x919f9fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a3f000 - 0x91a55fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a5a000 - 0x91a78fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7d000 - 0x91adcfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aee000 - 0x91af2fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af4000 - 0x91b7afff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b7e000 - 0x91bbbfff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bc1000 - 0x91bdbfff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91be0000 - 0x91be2fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91be4000 - 0x91cc2fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91cdf000 - 0x91cdffff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91ce1000 - 0x91d6ffff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d76000 - 0x91d76fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d78000 - 0x91dd1fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91dda000 - 0x91dfefff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e06000 - 0x9220ffff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92249000 - 0x925fdfff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9262a000 - 0x92717fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92719000 - 0x92796fff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927d7000 - 0x92a07fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b21000 - 0x92b38fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b43000 - 0x92b9bfff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92baf000 - 0x92baffff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bb1000 - 0x92bc1fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bd0000 - 0x92bd8fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bde000 - 0x92be4fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bea000 - 0x92c7bfff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c8f000 - 0x92c93fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c96000 - 0x92cb4fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cc6000 - 0x92cccfff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cd2000 - 0x92d35fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d5c000 - 0x92d9dfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dc4000 - 0x92dd2fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dd9000 - 0x92ddefff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92de3000 - 0x930d8fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931de000 - 0x931e9fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9325b000 - 0x93911fff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c92000 - 0x93d0dfff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d46000 - 0x93e00fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e43000 - 0x93e43fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e45000 - 0x94006fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9404c000 - 0x9408dfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94095000 - 0x940cffff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940d4000 - 0x940eafff com.apple.CoreVideo 1.4.1 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9427d000 - 0x9428cfff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94293000 - 0x9429efff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942ea000 - 0x94304fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9430a000 - 0x94613fff com.apple.QuickTime 7.2.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x949f1000 - 0x94a0efff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9614c000 - 0x96182fff com.apple.audio.midi.CoreMIDI 1.5.1 (41) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x9654b000 - 0x9654bfff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96bba000 - 0x96bbffff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x97ecd000 - 0x98d31fff com.apple.QuickTimeComponents.component 7.2 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x98fb2000 - 0x98fb4fff com.apple.QuickTimeH264.component 7.2 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x993b7000 - 0x9947dfff com.apple.QuickTimeMPEG4.component 7.2 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x99c79000 - 0x99c96fff com.apple.OpenTransport 3.0 /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x9b359000 - 0x9b359fff libmx.A.dylib /usr/lib/libmx.A.dylib
    Model: MacPro1,1, BootROM MP11.005C.B04, 4 processors, Dual-Core Intel Xeon, 2.66 GHz, 7 GB
    Graphics: ATI Radeon X1900 XT, ATY,RadeonX1900, PCIe, 512 MB
    Memory Module: DIMM Riser A/DIMM 1, 2 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser A/DIMM 2, 2 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser B/DIMM 1, 1 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser B/DIMM 2, 1 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser A/DIMM 3, 512 MB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser A/DIMM 4, 512 MB, DDR2 FB-DIMM, 667 MHz
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x87), Broadcom BCM43xx 1.0 (4.80.79.1)
    Bluetooth: Version 1.9.0f8, 2 service, 0 devices, 1 incoming serial ports
    Network Service: Innebygd Ethernet 2, Ethernet, en1
    PCI Card: ATY,RadeonX1900, Display, Slot-1
    Serial ATA Device: Hitachi HDS725050KLA360, 465.76 GB
    Serial ATA Device: SAMSUNG HD501LJ, 465.76 GB
    Serial ATA Device: ST3320620AS, 298.09 GB
    Serial ATA Device: ST3320620AS, 298.09 GB
    Parallel ATA Device: SONY DVD RW DW-D150A, 2 GB
    USB Device: Hub, Up to 480 Mb/sec, 500 mA
    USB Device: ProtectExecuter, Syncrosoft, Up to 12 Mb/sec, 500 mA
    USB Device: Hub, Up to 480 Mb/sec, 500 mA
    USB Device: iLok, iLok, Up to 1.5 Mb/sec, 500 mA
    USB Device: ProtectExecuter, Syncrosoft, Up to 12 Mb/sec, 500 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: USB Device, Up to 1.5 Mb/sec, 100 mA
    USB Device: Hub, Up to 12 Mb/sec, 100 mA
    USB Device: microKONTROL, KORG INC., Up to 12 Mb/sec, 500 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    FireWire Device: built-in_hub, unknown_value, Unknown
    FireWire Device: 0x101800, 0xA35, Up to 800 Mb/sec
    FireWire Device: 3200JB External, WD, Up to 400 Mb/sec

    Hi again.
    Thanks for answering, first of all.
    Yes, I have tested the hardware/memory with both Hardware test and the Memtest. All seems ok.
    The thing is, it is only this vst instrument software - Nexus - that causes trouble.
    When I start up the previous version Cubase SX 3 (through Rosetta) I can use the Nexus, but overall performance does not make this a satisfying alternative to the intel - optimized Cubase 4.
    I have de -installed and reinstalled Nexus, but no luck yet.
    And I would emphasize that Nexus is the only vsti - plugin that crashes Cubase. All other I have from Native Instruments, Ik multimedia, Toontrack and so on works just perfect. Funny..?
    Am I really supposed to reinstall OS x to get Nexus to work?

  • Display Login failure when using External Custom Login Form

    I am new to OAM area and really apreciate if some one can guide me in the right direction. I have configured External Custom Login Form (thanks to fusionsecurity blog) with Oracle Access Manager 11g + webgate 10g. If I enter correct user id and password in the below form, then all is good and able to access the protected resoruce.
    If I enter incorrect values for loginname/password fields, then the from simply refreshes itself and does not give me any error message. How can display error message when a user enters in correct values for those fields?
    <form action="http://hostname:7777/oam/server/auth_cred_submit" method="post">
    <fieldset>
    <legend>Login Screen</legend>
    <label for="username" accesskey="u">User Name:</label>
    <input type="text" id="username" name="username" size="15" tabindex="1">
    <label for="password" accesskey="p">Password:</label>
    <input type="password" id="password" name="password" size="15" tabindex="2">
    <input type="hidden" name="login-form-type" value="pwd">
    <input class="submit" type="submit" value="Login" tabindex="3">
    </fieldset>
    </form>
    Thanks

    Hi!
    I have installed Oracle Access Manager 11g + Webgate 11g and not 10g, but I think
    it has to work beause login is being processed by OAM (/oam/server/auth_cred_submit);
    and it if does not work, it may give you a clue on how to do it.
    Having stated that fact, it is very simple to do it: whenever I try to access a protected
    resource and I am not authenticated I am redirected to my login page and some
    special parameters are passed to it such as: request_id, OAM_REQ, authn_try_count and
    some others.
    authn_try_count is the magic one as it show the number of login tries, so here is
    a code snippet of my login page which uses JSTL for conditional processing.
    <form...>
    <c:if test="*${param['authn_try_count'] > 0}*">
    &lt;span class="error-msg"&gt;
    <fmt:message key="login.val.wrong.login"/>
    &lt;/span&gt;
    </c:if>
    </form>
    Best regards,
    Jesús García from
    Mexico city

  • N560GTX-Ti Twin Frozr II/OC Driver Failure when using Firefox

    I just bought this card a couple of days ago.  Seems to run good with a minor exception that scares me a little.  3 or 4 times in the last 12 hours I have gotten a video driver error while using Firefox. It even happened once while posting this message...hate when that happens. The screen goes blank for a few seconds and then recovers...Says something like "Display driver stopped responding....recovered..." and it shows my driver version # in the message.
    I am using the beta diver 290.36 and will switch back to the latest standard release tonight to see if it's something to do with the beta....but I don't think so...anybody?  I'll let ya know how that goes.
    I have a few questions:
    1) I've read other posts with the same/similar error.  One post said that a bios update "seemed to fix" it.  Really??..a risky BIOS update to fix a DRIVER error...hmmm.  I'll do it if I have to....but is it really necessary?
    2) Where do I find the latest bios for my card?
    3) What's up with Live Update 5....it doesn't do anything except for launch.
    4) What's the safest way to flash the bios (USB Flasher?)
    5) What are common idle and load temps for this card?
    Rig specs:
    Asus P8P67Pro B3 Rev
    CORSAIR XMS3 8GB (2 x 4GB) CMX8GX3M2A1333C9
    Cooler Master GX Series 650W
    MSI N560GTX-Ti Twin Frozr II/OC
    Windows 7 x64
    TIA,
    Cap

    Well maybe it's driver or I don't know.
    But for sure, that I know is this:
    1. Was running W7 x32 with latest drivers (or if newer appeared last 1-2 days, I was using former), there was no driver recovery.
    2. Now running W7 x64 with 275.33, because latest(as said above), gave me that recovery problem.
    3. My friend uses some ASUS GT430(or GTX), also on W7 x64 with latest, also gives him recovery. 275.33 gave him none.
    That is why I suspect on drivers when go sudden downclock (adaptive mode in nV CP). As I've noticed from GTX 560 Ti HWK(non-oc model), that clock from 822(850 I oc'd a bit) suddenly go to 50. Memory also, but forgot to how much.
    Maybe this sudden downclock (less voltage/amp drain) triggers something in windows (the famous...forgot wat is called - also on Vista) that crashes driver. Or BSOD if that "Windows feature" is disabled.

  • Alerts on failure when using Watched Folder method of PDFG.

    how to send alerts if PDFG fails to create PDF file via the Watched Folder service

    When you create your watch folder endpoint, you have to map some of the input variables for your process to a file pattern.
    This will take the file matching the pattern and put it in that variable. Now the variable type needs to be the right type to receive the file.
    From your error, it looks like you're trying to put a PDF file in a xfaForm variable, which wouldn't work. You need to put the PDF in a document variable.
    So, make sure in your process that you have an input document variable. Then in your watch folder configuration, when you map your input varibale to a file pattern, make sure you select literal and a pattern like *.pdf
    Jasmin

  • I'm hoping someone can kindly help with me with an error message that is causing PDF file generation failure when using InDesign CS6 for Windows and Acrobat Distiller 8.0

    <PDFX ISO="15930-1:2001" COMPLIANT="true">
    PDF/X Compliance Report
    1.  Summary
       Warnings: The total found in this document was 0.
       Violations: The total found in this document was 0.
       No problems were found in the document.
       This document passes PDF/X-1a:2001 compliance checks.
    </PDFX>

    @Jack – this is no error message, just a log, that all was running ok.
    See detailed answer here:
    Re: I am getting some errors while distilling the post script file.
    Uwe

Maybe you are looking for

  • I've identified the mole--how do i kill him.

    i was having a problem w/ my g4 slowing down. i found the problem to be the hp scanner monitor software choking down the cpu. i have removed all of the software associated w/ the scanner, but can't seem to get rid of that hp scanner monitor. every ti

  • Sol 8 Install on Dell Dim 8100 - Problem - ACPI?

    I am having a mixture of the problems stated on this forum's earlier threads. The kit is as follows: Solaris 8 for Intel 8.0 10/00 (2 CD's + 1 DCA floppy disk) DELL Dimension 8100 - Intel Pentium 4 1.3GHz processor + 128MB NON ECC RDRAM + 40GB Ultra

  • BAPI to download document from DMS

    Hi ALL I have the requirement that to download the all the active drawing(DWG) files to local file system or data base for purpose. 1. I am looking at BAPIS to download from external program. Do we have any BAPIS to get the files from DMS.? 2. And i

  • Bar in between Menu Items

    Hello, Can you advise how to create those tiny vertical bars in between each menu item, as shown above, using CSS3. I am trying to import a "line.gif" as shown, but it needs to be repeated and shortened as well. #header {           background-color:#

  • HT5312 how do i get to the rescue email address page?

    My young son cannot remember his security answers and I do not understand how to get to the rescue email address page.  please help