InDesign CS 5.5 file relink error

Hello all...
One of our designers has a problem with modified links messages whenever he opens an In-Design file. In every file he opens, the links all show up as modified. If another user on the network opens the same file, the links show up as OK. Once he updates the file and saves it back, any other user that opens that file then shows the links as modified.
We have a dozen users, all Mac-based (10.6.8), all using CS5.5. We use a central Mac file server. Users copy a file to their desktop make corrections and then copy it back to the server. The server contains all the graphics linked within the file. The same problem arises when he opens a file directly off the server over the network, so it is not the physical location of the file. His file-sharing preferences on the server are the same as other users.
The only other issue (that we will be fixing soon) is that all the Macs, even though they are all synched to the Apple Americas/U.S. time server (time.apple.com), have different times on their computer (by a few minutes each way). While this has given us some problems in the past with people opening up the most recent file, but the date showing it was older, etc, this problem isn't happening with other Macs, whether they are set at a more recent time or older.
Any ideas?

As a rule, yes, but in this case, it doesn't matter if the individual machines are off because whether they are timed before or after this one, they don't have the relink issue. Besides, some of the files are months (or years) old and they (or their path) have not been modified in that time.
We are working on getting a network synch to the main server, but it has been sketchy in the past.

Similar Messages

  • Since upgrading to Maverick I'm unable to open any indesign files (receiving error code 4).

    I decided to uninstall, then redownload from Creative Cloud, but my Adobe Application Manager tries to launch and quits unexpectedly, over and over. I restarted my computer, but that wasn't helpful. I was considering uninstalling all of CC, but I'm concerned about the application manager issue inhibiting me from using any programs. Illustrator is working fine after an update...Help! I'm on deadline

    I had the same problem. Brand new Mac Pro with a fresh installation of Creatve Cloud.
    ID CC couldn't open CS6 files. Error code 4. As luck would have it I still have CS6 on an another Mac. When I have opened the file there and then did a Save As (CS6 file with another name) everything worked great. Strange.
    But now with the latest ID CC update it seems to work fine to open CS6 files without error code 4.
    I hope you managed to solve your problem in time?

  • Snow Leopard 10.6.2 CS4 InDesign can't open files with a "#" in file path

    Snow Leopard 10.6.2 CS4 InDesign can't open files with a "#" in file path using any of these perfectly normal methods:
    1. double-click file in the Finder (e.g in a Folder on your Mac or on your Mac desktop etc.)
    2. select file and choose "File... Open" command-o in the Finder
    3. drag file to the application icon in the Finder.
    4. Select file in Bridge and double-click, choose File.. Open.. or Drag icon to InDesign icon in dock.
    If you try to open an ID file named with a "#", you will get an error message "Missing required parameter 'from' for event 'open.'"
    This happens to any InDesign file that has a "#" (pound sign, number sign, or hash) in the filename or in the file path (any parent folder).
    To reproduce
    Name an InDesign file Test#.idd Try to open it in the Finder or Bridge (as opposed to the "Open" dilaog of InDeisng itself).
    "Solution"
    The file WILL open using File... Open... command-o while in InDesign application.
    Rename the file or folders that have a "#" (shift-3) in the filename.
    Report to Adobe if it bugs you.
    This does not occur in "plain" Leopard 10.5 nor Tiger 10.4
    Untested in Panther or before and
    Untested with CS3 and earlier in Snow Leaopard.
    Anyone have those and want to try this... ?

    In case this really bothers you: we've added a workaround for this into Soxy. If you enable the option, these documents will open fine on double-click.
    You need Soxy 1.0.7 from:
    http://www.rorohiko.com/soxy
    Go to the 'Soxy' - 'Preferences' - 'Other' dialog window, and enable 'Open InDesign via Script'
    (Irrelevant background info (it's all invisible to the user): the workaround works by special-casing how Soxy opens documents in InDesign: instead of using AppleScript, Soxy will use ExtendScript to instruct InDesign to open the document - which works fine).

  • How to Run Indesign Script in a file from plugin code in CS4?

    Hi,<br />I have the code to execute the InDesign script stored in external file for InDesign CS3.<br /><br />InterfacePtr<IScriptManager> scriptManager(Utils<IScriptUtils>()->QueryScriptManager(kJavaScriptMgrBoss)); <br />InterfacePtr<IScriptRunner> scriptRunner(scriptManager, UseDefaultIID()); <br />     IDFile scriptFile(scriptFilePath); <br />     if (scriptRunner->CanHandleFile(scriptFile)) <br />     { <br />       ScriptData returnValue; <br />       PMString errorString; <br />       ErrorCode error = scriptRunner->RunFile(scriptFile); <br />         ASSERT(error == kSuccess); <br />     } <br /><br />But the RunFile() method is cs4 expects an additional argument of the type RunScriptParams. <br />Someone please show me with a code snippet on how to excute a script file in CS4??

    Dear Ian
      Here I'm used the below coding in CS3, Its working fine....
    //In CS3 Coding
      PMString jsFullPath("c:\\windows\\sample.jsx"); // a path to my java script file
    do
    const
    IDFile outFile(jsFullPath);InterfacePtr<IScriptManager> scriptManager(Utils<IScriptUtils>()->QueryScriptManager(kJavaScriptMgrBoss));
    ASSERT( scriptManager ) ;
    InterfacePtr<IScriptRunner> scriptRunner(scriptManager,UseDefaultIID());
    ASSERT( scriptRunner ) ;
    if(scriptManager){
    InterfacePtr<IScriptRunner>scriptRunner(scriptManager,UseDefaultIID());
    RunScriptParams params(scriptRunner);
    ErrorCode err = scriptRunner->RunFile(outFile, kTrue, kFalse);
    while(kFalse);
    But the same time I used this coding in CS4, Its not woking
    //In CS4 Coding
    PMString jsFullPath("c:\\windows\\MacID\\BIN\\sample.jsx"); // a path to my java script file
    do
    const
    IDFile outFile(jsFullPath);InterfacePtr<IScriptManager> scriptManager(Utils<IScriptUtils>()->QueryScriptManager(kJavaScriptMgrBoss));
    ASSERT( scriptManager ) ;
    InterfacePtr<IScriptRunner> scriptRunner(scriptManager,UseDefaultIID());
    ASSERT( scriptRunner ) ;
    if
    (scriptManager){
    InterfacePtr<IScriptRunner>scriptRunner(scriptManager,UseDefaultIID());
    RunScriptParams params(scriptRunner);
    ErrorCode err = scriptRunner->RunFile(outFile, params);
    while(kFalse);
    I changed the "RunFile" arguments also
    RunScriptParams params(scriptRunner);
    ErrorCode err = scriptRunner->RunFile(outFile, params);
    But Still I'm facing the problem in InDesign CS4.  That's mean  "Adobe InDesign CS4" shout down for serious error happend.
    Please kindly help me, for solving this problem.
    Thanks & Regards
    T.R.Harihara Sudhan
    Message was edited by: Adobe-InDesign CS4

  • When trying to install an extension for InDesign CC 2014 I get an error message saying that the extension only works with version 7.0 or greater. My version is 10.0.0.7 x64 Build I was using this extension fine with InDesign CC

    When trying to install an extension for InDesign CC 2014 I get an error message saying that the extension only works with version 7.0 or greater. My version is 10.0.0.7 x64 Build I was using this extension fine with InDesign CCError message with InDesign CC 2014

    Used the 64bit version before CC 2014 as well so don't think that's the issue. Here is the text in the .mxi file if I have missed something:
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <macromedia-extension id="PrintUI Tools" name="PrintUI Tools" requires-restart="true" version="3.0.0">
      <author name="PrintUI.com"/>
      <description/>
      <license-agreement/>
      <products>
        <product maxversion="" name="InDesign" primary="true" version="7.0"/>
      </products>
      <files>
        <file destination="" file-type="CSXS" products="" source="PrintUIManagement.zxp"/>
      </files>
      <update url="http://printui.com/public/downloads/updates/printui_tools_update.xml"/>
    </macromedia-extension>

  • InDesign CS4 shutting down from serious error. Reinstall didn't help.

    I started getting a weird "file import error" in InDesign CS4 where I couldn't open any .indd files. After searching around I tried a couple fixes, including deleting preferences, validating my fonts (and removing ones with errors), and removing SING. After doing this, I started getting the "Serious error" message upon program startup and couldn't get it up and running. I tried reinstalling the program but it persists. Illustrator, Photoshop, and DreamWeaver still work fine. Any ideas?
    Crash report:
    Process:         Adobe InDesign CS4 [2530]
    Path:            /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Adobe InDesign CS4
    Identifier:      com.adobe.InDesign
    Version:         6.0.0.352 (6000)
    Code Type:       X86 (Native)
    Parent Process:  launchd [185]
    Date/Time:       2013-01-15 11:43:44.436 -0700
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          359584 sec
    Crashes Since Last Report:           10
    Per-App Interval Since Last Report:  231 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      971BFDD7-1685-4342-BB19-A8B24F54038D
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  0  Main Thread  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Main Thread  Dispatch queue: com.apple.main-thread
    0   PublicLib.dylib                         0x010ea0e7 ProtectiveShutdown::~ProtectiveShutdown() + 279
    1   ...adobe.InDesign.AppFramework          0x221302f9 0x22117000 + 103161
    2   PublicLib.dylib                         0x010b50db CmdUtils::ProcessCommand(ICommand*) + 59
    3   com.adobe.InDesign.Widgets              0x2699834f GetPlugIn + 2943
    4   WidgetBinLib.dylib                      0x027a0f4e CTreeViewWidgetMgr::InternalSetStyle(long) + 382
    5   WidgetBinLib.dylib                      0x027a117f CTreeViewWidgetMgr::RegisterStyleWidget(long, unsigned long, IDType<PluginID_tag>) + 127
    6   ...dobe.InDesign.TableStylesUI          0x2163ad32 0x2162c000 + 60722
    7   WidgetBinLib.dylib                      0x027a1418 CTreeViewWidgetMgr::GetNodeWidgetHeight(NodeID const&) const + 328
    8   WidgetBinLib.dylib                      0x0279c261 TreeWidgetControlView::ConstrainDimensions(PMPoint const&) const + 209
    9   ...dobe.InDesign.TableStylesUI          0x2164b6a1 0x2162c000 + 128673
    10  WidgetBinLib.dylib                      0x027918f1 SizePanelDetailController::ReadWrite(IPMStream*, IDType<ImplementationID_tag>) + 289
    11  com.adobe.InDesign.Widgets              0x26996cf9 MOwnerDrawDDCtrlData::AddWidget(IControlView*, long, short) + 22089
    12  PublicLib.dylib                         0x0118d1aa CreateObjectNoInit(IDataBase*, RsrcSpec const&, IDType<PMIID_tag>) + 570
    13  PublicLib.dylib                         0x0118d379 CreateObject(IDataBase*, RsrcSpec const&, IDType<PMIID_tag>) + 41
    14  ...obe.InDesign.Application UI          0x2232764d 0x222ef000 + 230989
    15  ...obe.InDesign.Application UI          0x22346ec5 GetPlugIn + 57493
    16  PublicLib.dylib                         0x010e6958 CInitializer::RegisterResources(IPMStream*, void*) + 24
    17  PublicLib.dylib                         0x010d53a1 CResourceShell::PrivateEnumerateResourcesLI(PMLocaleId const&, IDType<PluginID_tag> const&, unsigned long, short (*)(IPMStream*, void*), void*) + 353
    18  PublicLib.dylib                         0x010d54ea CResourceShell::EnumerateResourcesLI(PMLocaleId const&, IDType<PluginID_tag> const&, unsigned long, short (*)(IPMStream*, void*), void*, short) + 58
    19  PublicLib.dylib                         0x010e78b9 CInitializer::Register(IDType<PluginID_tag>, PMLocaleId const&) + 73
    20  ...adobe.InDesign.AppFramework          0x2217d163 GetPlugIn + 275763
    21  ...adobe.InDesign.AppFramework          0x2217d239 GetPlugIn + 275977
    22  ...adobe.InDesign.AppFramework          0x2213dee5 GetPlugIn + 17077
    23  com.adobe.InDesign                      0x000026eb main + 187
    24  com.adobe.InDesign                      0x00001fb2 start + 258
    25  com.adobe.InDesign                      0x00001ed9 start + 41
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x93f9d382 kevent + 10
    1   libSystem.B.dylib                       0x93f9da9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x93f9cf59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x93f9ccfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x93f9c781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x93f9c5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x93f76b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x93fa46e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x93fd35a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x9934bb90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x99347533 MPWaitOnQueue + 250
    5   PMRuntime.dylib                         0x00012668 MemUtils::GetAvailMem() + 296
    6   ...ple.CoreServices.CarbonCore          0x9932b54a PrivateMPEntryPoint + 68
    7   libSystem.B.dylib                       0x93fa4259 _pthread_start + 345
    8   libSystem.B.dylib                       0x93fa40de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x93f76afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x93f77267 mach_msg + 68
    2   ...ple.CoreServices.CarbonCore          0x993f3ab0 TS_exception_listener_thread + 160
    3   libSystem.B.dylib                       0x93fa4259 _pthread_start + 345
    4   libSystem.B.dylib                       0x93fa40de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x93fa4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93fa475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93fa63f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9936021e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x9934bb68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x99347533 MPWaitOnQueue + 250
    6   AdobeACE                                0x0004c38d 0x1b000 + 201613
    7   AdobeACE                                0x0004bd85 0x1b000 + 200069
    8   ...ple.CoreServices.CarbonCore          0x9932b54a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x93fa4259 _pthread_start + 345
    10  libSystem.B.dylib                       0x93fa40de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x93fa4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93fa475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93fa63f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9936021e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x9934bb68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x99347533 MPWaitOnQueue + 250
    6   AdobeACE                                0x0004c38d 0x1b000 + 201613
    7   AdobeACE                                0x0004bd85 0x1b000 + 200069
    8   ...ple.CoreServices.CarbonCore          0x9932b54a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x93fa4259 _pthread_start + 345
    10  libSystem.B.dylib                       0x93fa40de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x93fa4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93fa475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93fa63f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9936021e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x9934bb68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x99347533 MPWaitOnQueue + 250
    6   AdobeACE                                0x0004c38d 0x1b000 + 201613
    7   AdobeACE                                0x0004bd85 0x1b000 + 200069
    8   ...ple.CoreServices.CarbonCore          0x9932b54a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x93fa4259 _pthread_start + 345
    10  libSystem.B.dylib                       0x93fa40de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x93f76b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x93fa46f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x93fed05f pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x1f1eb552 C_EULA_AskToAcceptEULA + 21368
    4   com.adobe.amt.services                  0x1f1e6995 C_EULA_AskToAcceptEULA + 1979
    5   com.adobe.amt.services                  0x1f1eb5b0 C_EULA_AskToAcceptEULA + 21462
    6   libSystem.B.dylib                       0x93fa4259 _pthread_start + 345
    7   libSystem.B.dylib                       0x93fa40de thread_start + 34
    Thread 8:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x93f95ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x95cb7c53 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x93fa4259 _pthread_start + 345
    3   libSystem.B.dylib                       0x93fa40de thread_start + 34
    Thread 9:  IPCClient rcvr: FMClient.501.2530.2690368832.1
    0   libSystem.B.dylib                       0x93f95ac6 select$DARWIN_EXTSN + 10
    1   ...extensis.cpp-core-framework          0x298f9523 GIPCReceiver::OSWaitForData() + 2301
    2   ...extensis.cpp-core-framework          0x298edc0f GIPCClient::ReceiverThreadProc(GThread*) + 949
    3   ...extensis.cpp-core-framework          0x299719c7 GThread::PthreadInternal(void*) + 239
    4   libSystem.B.dylib                       0x93fa4259 _pthread_start + 345
    5   libSystem.B.dylib                       0x93fa40de thread_start + 34
    Thread 10:  Agent IF Message Handler
    0   libSystem.B.dylib                       0x93fa4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x93fa475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x93fa42b1 pthread_cond_timedwait$UNIX2003 + 72
    3   ...extensis.cpp-core-framework          0x2992ed5d GSemaphore::TimedWait(unsigned long) + 77
    4   ...extensis.cpp-core-framework          0x298f276f GIPCClient::GIPCMTDataAccumulator::WaitForData(unsigned long, std::vector<char, std::allocator<char> >&, bool) + 39
    5   ....ExtensisFontManagement.sdk          0x29eae2d7 GAgentIFMessageHandlerThread::RunMessageHandlerThread() + 497
    6   ....ExtensisFontManagement.sdk          0x29eaea65 GAgentIFMessageHandlerThread::AgentIFMessageHandlerThreadFunc(GThread*) + 67
    7   ...extensis.cpp-core-framework          0x299719c7 GThread::PthreadInternal(void*) + 239
    8   libSystem.B.dylib                       0x93fa4259 _pthread_start + 345
    9   libSystem.B.dylib                       0x93fa40de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x93f76b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x93fa46f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x93fed05f pthread_cond_wait + 48
    3   ...oost_thread-mt-1_34_1.dylib          0x01596080 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   ...adobe.InDesign.AppFramework          0x2220319f GetPlugIn + 824687
    5   ...oost_thread-mt-1_34_1.dylib          0x015993a6 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 34
    6   ...oost_thread-mt-1_34_1.dylib          0x015987e5 boost::thread_group::create_thread(boost::function0<void, std::allocator<boost::function_base> > const&) + 223
    7   libSystem.B.dylib                       0x93fa4259 _pthread_start + 345
    8   libSystem.B.dylib                       0x93fa40de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x93f76b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x93fa46f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x93fed05f pthread_cond_wait + 48
    3   ...oost_thread-mt-1_34_1.dylib          0x01596080 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   ...adobe.InDesign.AppFramework          0x2220319f GetPlugIn + 824687
    5   ...oost_thread-mt-1_34_1.dylib          0x015993a6 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 34
    6   ...oost_thread-mt-1_34_1.dylib          0x015987e5 boost::thread_group::create_thread(boost::function0<void, std::allocator<boost::function_base> > const&) + 223
    7   libSystem.B.dylib                       0x93fa4259 _pthread_start + 345
    8   libSystem.B.dylib                       0x93fa40de thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x93f76b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x93fa46f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x93fed05f pthread_cond_wait + 48
    3   ...oost_thread-mt-1_34_1.dylib          0x01596080 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   ...adobe.InDesign.AppFramework          0x2220319f GetPlugIn + 824687
    5   ...oost_thread-mt-1_34_1.dylib          0x015993a6 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 34
    6   ...oost_thread-mt-1_34_1.dylib          0x015987e5 boost::thread_group::create_thread(boost::function0<void, std::allocator<boost::function_base> > const&) + 223
    7   libSystem.B.dylib                       0x93fa4259 _pthread_start + 345
    8   libSystem.B.dylib                       0x93fa40de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                       0x93f76b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x93fa46f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x93fed05f pthread_cond_wait + 48
    3   ...oost_thread-mt-1_34_1.dylib          0x01596080 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   ...adobe.InDesign.AppFramework          0x2220319f GetPlugIn + 824687
    5   ...oost_thread-mt-1_34_1.dylib          0x015993a6 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 34
    6   ...oost_thread-mt-1_34_1.dylib          0x015987e5 boost::thread_group::create_thread(boost::function0<void, std::allocator<boost::function_base> > const&) + 223
    7   libSystem.B.dylib                       0x93fa4259 _pthread_start + 345
    8   libSystem.B.dylib                       0x93fa40de thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x93f76b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x93fa46f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x93fed05f pthread_cond_wait + 48
    3   ...oost_thread-mt-1_34_1.dylib          0x01596080 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   ...adobe.InDesign.AppFramework          0x2220319f GetPlugIn + 824687
    5   ...oost_thread-mt-1_34_1.dylib          0x015993a6 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 34
    6   ...oost_thread-mt-1_34_1.dylib          0x015987e5 boost::thread_group::create_thread(boost::function0<void, std::allocator<boost::function_base> > const&) + 223
    7   libSystem.B.dylib                       0x93fa4259 _pthread_start + 345
    8   libSystem.B.dylib                       0x93fa40de thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                       0x93f76b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x93fa46f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x93fed05f pthread_cond_wait + 48
    3   ...oost_thread-mt-1_34_1.dylib          0x01596080 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
    4   ...adobe.InDesign.AppFramework          0x2220319f GetPlugIn + 824687
    5   ...oost_thread-mt-1_34_1.dylib          0x015993a6 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 34
    6   ...oost_thread-mt-1_34_1.dylib          0x015987e5 boost::thread_group::create_thread(boost::function0<void, std::allocator<boost::function_base> > const&) + 223
    7   libSystem.B.dylib                       0x93fa4259 _pthread_start + 345
    8   libSystem.B.dylib                       0x93fa40de thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                       0x93f76b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x93fa46f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x93fed05f pthread_cond_wait + 48
    3   TINthread.dylib                         0x1f0447a5 ThreadUtils::ThreadPool::Dispatcher() + 277
    4   TINthread.dylib                         0x1f04483f ThreadUtils::ThreadPool::ThreadProc(void*) + 17
    5   libSystem.B.dylib                       0x93fa4259 _pthread_start + 345
    6   libSystem.B.dylib                       0x93fa40de thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                       0x93f9c412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x93f9c9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x93f9c5c6 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x010e9fe4  ecx: 0x089ce4f4  edx: 0x07e0a9f0
      edi: 0xbfffee48  esi: 0x039ee664  ebp: 0xbfffeea8  esp: 0xbfffede0
       ss: 0x0000001f  efl: 0x00010246  eip: 0x010ea0e7   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -     0x3ff7 +com.adobe.InDesign 6.0.0.352 (6000) <970AB63A-C7CF-E2BD-6F84-37178B986F1A> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Adobe InDesign CS4
        0x8000 -     0x8fff +InDesignModel ??? (???) <04F752B0-79DF-B0C0-0D40-E5D56F5E6763> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
        0xc000 -     0xcfff +InDesignModelAndUI ??? (???) <2822805A-73B5-F1C1-F21F-77EA75E194B8> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
       0x10000 -    0x16fff +PMRuntime.dylib ??? (???) <9428E22B-B3BF-6645-9DE1-E821B48AE928> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/PMRuntime.dylib
       0x1b000 -   0x128fff +AdobeACE ??? (???) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
      0x146000 -   0x64efff +AdobeAGM ??? (???) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
      0x7be000 -   0x7fdff7 +AdobeARE ??? (???) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
      0x807000 -   0x820fff +AdobeBIB ??? (???) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
      0x82a000 -   0x84bff7 +AdobeBIBUtils ??? (???) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
      0x858000 -   0xaebfc7 +AdobeCoolType ??? (???) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
      0xb6f000 -   0xf39fef +AdobeMPS ??? (???) <4E366E06-A4EB-4717-9639-0443743F5104> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
      0xfc8000 -  0x1029fff +ObjectModelLib.dylib ??? (???) <4FD4B086-E451-4EA3-2DBD-0CFB7EF8BBA2> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/ObjectModelLib.dylib
    0x1046000 -  0x107cfff +DataBaseLib.dylib ??? (???) <DAF68BCD-3194-48AD-5086-E06FD2529E85> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/DataBaseLib.dylib
    0x108c000 -  0x13fafff +PublicLib.dylib ??? (???) <BC602492-4629-CD2E-5901-D4A8AEE8BA69> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/PublicLib.dylib
    0x1557000 -  0x1578fda +AdobeAFL ??? (???) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
    0x1594000 -  0x159affe +libboost_thread-mt-1_34_1.dylib ??? (???) <DB58BCE6-F2FC-4E5B-B87F-ED405C3F62A7> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/libboost_thread-mt-1_34_1.dylib
    0x15a5000 -  0x1635fc3 +WRServices ??? (???) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x17b0000 -  0x17b4ffc +com.adobe.AdobeCrashReporter 2.5 (3.0.20080806) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x17ba000 -  0x216a57f +libicudata.dylib.36.0 36.0.0 (compatibility 36.0.0) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0
    0x216d000 -  0x223c23b +libicui18n.dylib.36.0 36.0.0 (compatibility 36.0.0) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.6/libicui18n.dyl ib.36.0
    0x22e5000 -  0x23b9db7 +libicuuc.dylib.36.0 36.0.0 (compatibility 36.0.0) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc.dylib.36.0
    0x241a000 -  0x2461fc7 +com.adobe.adobe_caps adobe_caps 2.0.99.0 (2.0.99.0) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x2467000 -  0x24ddfff +libboost_regex-mt-1_34_1.dylib ??? (???) <3FE3AFA1-CCA6-740C-9460-E04378983CF0> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/libboost_regex-mt-1_34_1.dylib
    0x2513000 -  0x26c9ff4 +com.adobe.amtlib amtlib 2.0.1.10077 (2.0.1.10077) <CB2EC3BF-6771-4DAB-BF29-6775FB6F9608> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x2700000 -  0x2740ff7  com.apple.vmutils 4.2 (106) <7AAF9FDA-AC1E-09FD-889E-68FFB5F94BA8> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x2759000 -  0x2890fef +WidgetBinLib.dylib ??? (???) <F506904C-A3A5-2E16-C1E4-BBB1018D4288> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/WidgetBinLib.dylib
    0x2926000 -  0x2b20fcf +AdobeOwl ??? (???) <F209A9B2-9606-4182-93D8-84B349CFBE48> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x2b9b000 -  0x3099fc3 +AdobeOwlCanvas ??? (???) <DC1EE447-FCDB-43C8-B6D2-A5454291C85D> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x33dd000 -  0x33ddff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
    0x3700000 -  0x3712ff7  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <8D606435-1A3C-FE0B-824A-1386809FFFF5> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x3716000 -  0x3723ff7 +com.adobe.asneu.framework asneu version 1.6.2f01 (1.6.2) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0x3727000 -  0x372bff9 +com.adobe.InDesign.Data Services UI 6.0.0.352 (???) <85A22E03-9C0E-6F41-9C99-DDD06DD88300> /Applications/Adobe InDesign CS4/Plug-Ins/Data Services/Data Services UI.InDesignPlugin/Data Services UI
    0x3730000 -  0x3737ff8 +com.adobe.InDesign.Data Services 6.0.0.352 (???) <B53B8B9E-B41C-A9C4-8070-B835E5DC71F2> /Applications/Adobe InDesign CS4/Plug-Ins/Data Services/Data Services.InDesignPlugin/Data Services
    0x373d000 -  0x3749ff5 +com.adobe.InDesign.DTTransform 6.0.0.352 (???) <C11BA48D-46A8-06FB-D803-15BE309A319E> /Applications/Adobe InDesign CS4/Plug-Ins/Data Services/DTTransform.InDesignPlugin/DTTransform
    0x3751000 -  0x3767feb +com.adobe.InDesign.Media Import Filter 6.0.0.352 (???) <B25EA5A7-E8AD-2EA0-D1F2-793594E772EB> /Applications/Adobe InDesign CS4/Plug-Ins/Filters/Media Import Filter.InDesignPlugin/Media Import Filter
    0x37f7000 -  0x37fafff +com.adobe.InDesign.PNG Import Filter UI 6.0.0.352 (???) <B11AF6F4-2AFF-7BA8-D2AE-BA2C0E6EC36A> /Applications/Adobe InDesign CS4/Plug-Ins/Filters/PNG Import Filter UI.InDesignPlugin/PNG Import Filter UI
    0x7de9000 -  0x7df7fe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <07211458-FD06-9FEF-3DF4-2E5F0304D4BC> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x7dfb000 -  0x7dfcff2 +com.adobe.InDesign.Help 6.0.0.352 (???) <0F4B3A38-9C70-AF9B-BF2E-214D9934FBD9> /Applications/Adobe InDesign CS4/Plug-Ins/UI/Help.InDesignPlugin/Help
    0x7ffa000 -  0x7ffcff2 +com.adobe.InDesign.SimpleTextImportFilter 6.0.0.352 (???) <78004381-49BA-D66C-35CE-45DB39FEBB1E> /Applications/Adobe InDesign CS4/Plug-Ins/Filters/SimpleTextImportFilter.InDesignPlugin/SimpleTextImportFilter
    0x1ef91000 - 0x1efb4fff +com.adobe.InDesign.Dictionary Editor Dialog 6.0.0.352 (???) <5C09D301-0BCE-7DBD-C28A-A1F55139E2CE> /Applications/Adobe InDesign CS4/Plug-Ins/Dictionaries/Dictionary Editor Dialog.InDesignPlugin/Dictionary Editor Dialog
    0x1efc9000 - 0x1efe4fff +com.adobe.InDesign.LILO 6.0.0.352 (???) <0E824840-5088-6779-6D7E-1D940C75F0E8> /Applications/Adobe InDesign CS4/Plug-Ins/Dictionaries/LILO/LILO.InDesignPlugin/LILO
    0x1f043000 - 0x1f046fff +TINthread.dylib ??? (???) /Library/Application Support/Adobe/SING/Mark II/TINthread.dylib
    0x1f1cb000 - 0x1f26cfc3 +com.adobe.amt.services AMTServices 2.0.1.10077 (BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09) (2 . 0) <31E82904-C3C2-424E-A1AE-A5EFADBB19B8> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices
    0x1f2ba000 - 0x1f2bfff3 +com.adobe.InDesign.QTAccess 6.0.0.352 (???) <1A40EE48-3845-A79D-198B-522022908941> /Applications/Adobe InDesign CS4/Plug-Ins/Filters/QTAccess.InDesignPlugin/QTAccess
    0x1f2c4000 - 0x1f2cefff +com.extensis.fontplugins 3.0.12.4 (3.0.12.4) <35C4B615-2162-FB86-5BDE-C05146996BC8> /Applications/Suitcase Fusion 4.app/Contents/Resources/PluginFiles/ExtensisPlugins.framework/ExtensisPlugins
    0x1f8ac000 - 0x1f8ccff9 +TextPanelLib.dylib ??? (???) <B37A8DDD-502A-8DCE-5574-FE4F8A52A48A> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/TextPanelLib.dylib
    0x1f8df000 - 0x1f8ebff3 +com.adobe.InDesign.SaveBack 6.0.0.352 (???) <5FEC3A18-4BD3-1044-6236-3115C0C6858E> /Applications/Adobe InDesign CS4/Plug-Ins/Filters/SaveBack.InDesignPlugin/SaveBack
    0x1f8f4000 - 0x1f8f8ff1 +com.adobe.InDesign.JPEG Export UI 6.0.0.352 (???) <8A3D6AD4-9FDF-4DBF-345C-3640D15B1C43> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/JPEG Export UI.InDesignPlugin/JPEG Export UI
    0x1fa00000 - 0x1faaafff +com.adobe.linguistic.LinguisticManager 4.0.0 (7963) <B915463F-F448-4704-A0D8-BEE4B780F298> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x1facd000 - 0x1fae6fff +com.adobe.InDesign.Sangam Preferences UI 6.0.0.352 (???) <8DF39D2E-CAE2-5231-4E82-6F8FC0866E68> /Applications/Adobe InDesign CS4/Plug-Ins/Filters/Sangam Preferences UI.InDesignPlugin/Sangam Preferences UI
    0x1faf5000 - 0x1fb41ffe +AdobeSangam 3.0.0 (compatibility 3.0.0) <7CA1710B-7675-42EA-A688-F3570ABB577B> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
    0x1fba4000 - 0x1fbf3ff3 +com.adobe.InDesign.SangamExport 6.0.0.352 (???) <9DBC6F9D-C04E-BD09-6655-B5FB0C504802> /Applications/Adobe InDesign CS4/Plug-Ins/Filters/SangamExport.InDesignPlugin/SangamExport
    0x1fc11000 - 0x1fd08fef +com.adobe.InDesign.SangamServicer-Mapper 6.0.0.352 (???) <F94FF017-6AC1-81D3-4380-B1572289D0D4> /Applications/Adobe InDesign CS4/Plug-Ins/Filters/SangamServicer-Mapper.InDesignPlugin/SangamServicer-Mapper
    0x1fd4d000 - 0x1fdd5fff +com.adobe.InDesign.Tagged Text Attributes 6.0.0.352 (???) <392E29FB-F331-5765-4292-C72B2008621A> /Applications/Adobe InDesign CS4/Plug-Ins/Filters/Tagged Text Attributes.InDesignPlugin/Tagged Text Attributes
    0x1fe06000 - 0x1fe12fed +com.adobe.InDesign.Tagged Text Filters UI 6.0.0.352 (???) <F2CD8EAB-8C46-480C-524F-E39E1E31F577> /Applications/Adobe InDesign CS4/Plug-Ins/Filters/Tagged Text Filters UI.InDesignPlugin/Tagged Text Filters UI
    0x1fe18000 - 0x1feb4ff2 +com.adobe.InDesign.Tagged Text Filters 6.0.0.352 (???) <0036BA3A-F257-141C-5B9F-5DFF9F7E8579> /Applications/Adobe InDesign CS4/Plug-Ins/Filters/Tagged Text Filters.InDesignPlugin/Tagged Text Filters
    0x1fec3000 - 0x20097ff7 +com.extensis.AutoActivationPlugin.ID6 3.0.12.4 (3.0.12.4) <6F2FF185-39B6-85D4-27A7-83363A73C26E> /Applications/Adobe InDesign CS4/Plug-Ins/Font Activation/ExtensisFontManagementIDCS4.InDesignPlugin/Contents/MacOS/ExtensisFontManageme ntIDCS4
    0x201ba000 - 0x201c2ff9 +com.adobe.InDesign.Clipping Path Dialog 6.0.0.352 (???) <C047A93F-1863-13EE-048F-9F9406C7DDFE> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/Clipping Path Dialog.InDesignPlugin/Clipping Path Dialog
    0x201cb000 - 0x201eefff +com.adobe.InDesign.Color Management UI 6.0.0.352 (???) <7932C550-D31C-6230-30FD-B4DC96D7F35B> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/Color Management UI.InDesignPlugin/Color Management UI
    0x201fa000 - 0x20247ff9 +com.adobe.InDesign.Color Picker Panel 6.0.0.352 (???) <6D5F716C-4997-E6CD-6625-8C95A4A630BB> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/Color Picker Panel.InDesignPlugin/Color Picker Panel
    0x20262000 - 0x20335ffb +com.adobe.InDesign.Dynamic Documents 6.0.0.352 (???) <F93D80E9-A3D8-41E4-EE20-54FC9C8DAD6B> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/Dynamic Documents.InDesignPlugin/Dynamic Documents
    0x2037a000 - 0x2045bfc3 +AdobeSWFPort ??? (???) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeSWFPort.framework/Versions/A/AdobeSWFPort
    0x2048f000 - 0x204a1ffd +com.adobe.InDesign.DynamicDocumentsUI 6.0.0.352 (???) <E6DE79DC-BA0F-C0CE-7C9E-2881BF96953B> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/DynamicDocumentsUI.InDesignPlugin/DynamicDocumentsUI
    0x204a7000 - 0x204aefff +com.adobe.InDesign.EPS UI 6.0.0.352 (???) <402F654F-BD3A-F518-319A-66F8351A1C0A> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/EPS UI.InDesignPlugin/EPS UI
    0x204b4000 - 0x204baff7 +com.adobe.InDesign.Generic Style Editor 6.0.0.352 (???) <6CDB2DCF-DBF6-F8F2-4CD4-575D9FDE0D4A> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/Generic Style Editor.InDesignPlugin/Generic Style Editor
    0x204c3000 - 0x204e5ff7 +com.adobe.InDesign.Gradient Panel 6.0.0.352 (???) <23AEA9F7-222A-BA00-5288-F5EE281C9155> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/Gradient Panel.InDesignPlugin/Gradient Panel
    0x204f4000 - 0x20537fff +com.adobe.InDesign.Graphic Panels 6.0.0.352 (???) <3491741F-72ED-3490-7CBF-FA5FB3027855> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/Graphic Panels.InDesignPlugin/Graphic Panels
    0x20550000 - 0x20565fff +com.adobe.InDesign.JPEG Export 6.0.0.352 (???) <842E1B3B-42C2-0191-198B-A392862655A2> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/JPEG Export.InDesignPlugin/JPEG Export
    0x20573000 - 0x205a8ff7 +com.adobe.InDesign.Output Preview 6.0.0.352 (???) <8DBEAAE5-BBA0-B48F-A83E-506430EAB349> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/Output Preview.InDesignPlugin/Output Preview
    0x205bb000 - 0x205c8ff1 +com.adobe.InDesign.OutputMiscUI 6.0.0.352 (???) <BA56ACAB-1453-D2E3-655C-EFDBD9543783> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/OutputMiscUI.InDesignPlugin/OutputMiscUI
    0x205d4000 - 0x20625ff7 +com.adobe.InDesign.PDF UI 6.0.0.352 (???) <F979295A-2243-A862-B339-1EA6780E6A7E> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/PDF UI.InDesignPlugin/PDF UI
    0x2063e000 - 0x2069efc7 +AdobeXMP ??? (???) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x206ad000 - 0x206bbffd +com.adobe.InDesign.Printer Styles 6.0.0.352 (???) <7C016F3F-411F-EC5F-75BB-8507878340C8> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/Printer Styles.InDesignPlugin/Printer Styles
    0x206c5000 - 0x20766fe1 +com.adobe.InDesign.PrintUI 6.0.0.352 (???) <8F9CB925-7B0F-FB0C-CE9E-8ACE5C193809> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/PrintUI.InDesignPlugin/PrintUI
    0x2079d000 - 0x207a7ff5 +com.adobe.InDesign.PS Import UI 6.0.0.352 (???) <B8028ED9-7B2F-96DF-ACA9-341B4F74EE88> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/PS Import UI.InDesignPlugin/PS Import UI
    0x207b0000 - 0x207c3fff +com.adobe.InDesign.Swatch Library Panel 6.0.0.352 (???) <80A8B416-E4AA-B266-FE6D-4D27A34626B8> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/Swatch Library Panel.InDesignPlugin/Swatch Library Panel
    0x207cb000 - 0x2083cff9 +com.adobe.InDesign.Swatches Panel 6.0.0.352 (???) <A27CCA98-A346-0EE7-65F5-721D79D0B8AC> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/Swatches Panel.InDesignPlugin/Swatches Panel
    0x20860000 - 0x208ceffd +com.adobe.InDesign.Transparency UI 6.0.0.352 (???) <763895B4-7EE8-FFAF-27F7-13C198906B92> /Applications/Adobe InDesign CS4/Plug-Ins/Graphics/Transparency UI.InDesignPlugin/Transparency UI
    0x208f2000 - 0x2092dfff +com.adobe.InDesign.Assignment UI 6.0.0.352 (???) <A910C644-993D-3FE0-924D-8AF5EFA4B614> /Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/Assignment UI.InDesignPlugin/Assignment UI
    0x20942000 - 0x20955fe5 +com.adobe.InDesign.InCopy Bridge UI 6.0.0.352 (???) <DCDBF6B5-5632-E91F-BB74-0EF1B28FF7CD> /Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/InCopy Bridge UI.InDesignPlugin/InCopy Bridge UI
    0x2095e000 - 0x20985fff +com.adobe.InDesign.InCopy Bridge 6.0.0.352 (???) <501249E6-E625-1E51-1821-B549B67DAB5E> /Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/InCopy Bridge.InDesignPlugin/InCopy Bridge
    0x20991000 - 0x20995ff9 +com.adobe.InDesign.InCopyExport 6.0.0.352 (???) <0DEA75D0-0A6E-4A74-C7DC-BCE47FE84CE6> /Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/InCopyExport.InDesignPlugin/InCopyExport
    0x2099c000 - 0x2099fff3 +com.adobe.InDesign.InCopyExportUI 6.0.0.352 (???) <B04E33E5-5B1B-4E42-A389-7A7ACECA9D6C> /Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/InCopyExportUI.InDesignPlugin/InCopyExportUI
    0x209a4000 - 0x209a9fff +com.adobe.InDesign.InCopyImport 6.0.0.352 (???) <1255EF04-F4D8-7327-63BF-EC98077DB93F> /Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/InCopyImport.InDesignPlugin/InCopyImport
    0x209ae000 - 0x209b2fff +com.adobe.InDesign.InCopyWorkflow UI 6.0.0.352 (???) <589DC441-A7AD-2227-7B6A-9A76051A3D6C> /Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/InCopyWorkflow UI.InDesignPlugin/InCopyWorkflow UI
    0x209b8000 - 0x209efff7 +com.adobe.InDesign.Note 6.0.0.352 (???) <A727FD92-2A60-E6A2-6FF5-8EAB4359DA2E> /Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/Note.InDesignPlugin/Note
    0x20a04000 - 0x20a0cffb +com.adobe.InDesign.NotePref 6.0.0.352 (???) <6A2E5C76-343F-CCD2-FE42-9F5D9C536E4C> /Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/NotePref.InDesignPlugin/NotePref
    0x20a17000 - 0x20a19ff2 +com.adobe.InDesign.Username UI 6.0.0.352 (???) <A2AEF94D-F8DA-9928-269E-F15F3AE94DA7> /Applications/Adobe InDesign CS4/Plug-Ins/InCopyWorkflow/Username UI.InDesignPlugin/Username UI
    0x20a1e000 - 0x20a60fff +com.adobe.InDesign.ButtonUI 6.0.0.352 (???) <4798B84D-AC6A-3649-2E7F-D77B605B0897> /Applications/Adobe InDesign CS4/Plug-Ins/Interactive/ButtonUI.InDesignPlugin/ButtonUI
    0x20a7b000 - 0x20a94ff7 +com.adobe.InDesign.MediaUI 6.0.0.352 (???) <11C77707-A565-50AC-CE15-51DC1F5DB074> /Applications/Adobe InDesign CS4/Plug-Ins/Interactive/MediaUI.InDesignPlugin/MediaUI
    0x20aa2000 - 0x20aabfff +com.adobe.InDesign.Alignment Panel 6.0.0.352 (???) <496EA1C7-E070-855A-0212-859689B7FEF3> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Alignment Panel.InDesignPlugin/Alignment Panel
    0x20ab2000 - 0x20adcff3 +com.adobe.InDesign.Asset Library Panel 6.0.0.352 (???) <5499FAE6-DD38-6283-C7BC-34D8AC5B9EC5> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Asset Library Panel.InDesignPlugin/Asset Library Panel
    0x20af2000 - 0x20b35fff +com.adobe.InDesign.Asset PubLibrary 6.0.0.352 (???) <ABA04474-28F1-A433-D1F6-9547C6340953> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Asset PubLibrary.InDesignPlugin/Asset PubLibrary
    0x20b4a000 - 0x20b78ff1 +com.adobe.InDesign.Book Panel 6.0.0.352 (???) <98F1E7EE-ED0E-3CB9-11AE-803FA2E1B624> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Book Panel.InDesignPlugin/Book Panel
    0x20b8d000 - 0x20b9dff7 +com.adobe.InDesign.Bookmark Panel 6.0.0.352 (???) <3BCF5D34-F64C-E02C-E115-B54F5588E88A> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Bookmark Panel.InDesignPlugin/Bookmark Panel
    0x20baa000 - 0x20bcdff1 +com.adobe.InDesign.Control Panel 6.0.0.352 (???) <36AC28AA-8BD0-5147-BCB9-EDFF8F55D947> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Control Panel.InDesignPlugin/Control Panel
    0x20bdd000 - 0x20be2fff +com.adobe.InDesign.Create Guides Dialog 6.0.0.352 (???) <1D544186-D159-F548-AC11-53BEA3B3E32C> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Create Guides Dialog.InDesignPlugin/Create Guides Dialog
    0x20be8000 - 0x20c11fff +com.adobe.InDesign.Eyedropper Tool 6.0.0.352 (???) <DCB9B263-CA26-3166-4295-8E5FD885D13E> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Eyedropper Tool.InDesignPlugin/Eyedropper Tool
    0x20c1f000 - 0x20c70ffd +com.adobe.InDesign.Hyperlinks Panel 6.0.0.352 (???) <1C45A1F4-0115-E4F3-A9EF-5CD82563FB3B> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Hyperlinks Panel.InDesignPlugin/Hyperlinks Panel
    0x20c87000 - 0x20cd7ff3 +com.adobe.InDesign.Index Panel 6.0.0.352 (???) <4C950BC3-94E5-7442-99CC-141B6E4BB781> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Index Panel.InDesignPlugin/Index Panel
    0x20cec000 - 0x20cf9fff +unihan ??? (???) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/unihan.framework/Versions/A/unihan
    0x20d0b000 - 0x20d44ff3 +com.adobe.InDesign.Info Panel 6.0.0.352 (???) <A44ED97C-5C45-8C81-0D44-F884E52CD784> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Info Panel.InDesignPlugin/Info Panel
    0x20d56000 - 0x20dacfef +com.adobe.InDesign.Knowledge Base 6.0.0.352 (???) <4B56F760-BA47-A4CF-5C39-E8B64CDB454D> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Knowledge Base.InDesignPlugin/Knowledge Base
    0x20dc0000 - 0x20de1ff9 +com.adobe.InDesign.Layers Panel 6.0.0.352 (???) <6ECE67A7-473C-F979-9836-C29783EF2C20> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Layers Panel.InDesignPlugin/Layers Panel
    0x20df3000 - 0x20df5ff7 +com.adobe.InDesign.Layout Adjustment Panel 6.0.0.352 (???) <69CB7865-2D40-C519-28BF-06B4700FADF6> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Layout Adjustment Panel.InDesignPlugin/Layout Adjustment Panel
    0x20dfa000 - 0x20e10fff +com.adobe.InDesign.Layout Adjustment 6.0.0.352 (???) <E647D3F3-A97C-0965-85A5-B9C8212B9F04> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Layout Adjustment.InDesignPlugin/Layout Adjustment
    0x20e1a000 - 0x20e3ffff +com.adobe.InDesign.Links UI 6.0.0.352 (???) <7A82B26D-9E4A-2C36-AF1B-E5728638E224> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Links UI.InDesignPlugin/Links UI
    0x20e51000 - 0x20eb1ff1 +com.adobe.InDesign.ObjectStylesUI 6.0.0.352 (???) <A8C7976D-0346-A50B-B6AD-492846741299> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/ObjectStylesUI.InDesignPlugin/ObjectStylesUI
    0x20ed1000 - 0x20ee4ff9 +com.adobe.InDesign.Page Setup Dialog 6.0.0.352 (???) <9E3076FE-2315-B82E-2CC8-62CBECED9137> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Page Setup Dialog.InDesignPlugin/Page Setup Dialog
    0x20eeb000 - 0x20f52ff9 +com.adobe.InDesign.Pages Panel 6.0.0.352 (???) <8BF988BB-791B-2EDD-4DB7-5DB1FB73C4D2> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Pages Panel.InDesignPlugin/Pages Panel
    0x20f6f000 - 0x20f78ff1 +com.adobe.InDesign.Sections UI 6.0.0.352 (???) <FA736396-CF9B-F6C4-BF76-5DE40597D321> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Sections UI.InDesignPlugin/Sections UI
    0x20f7e000 - 0x20f83ff9 +com.adobe.InDesign.StepRepeat 6.0.0.352 (???) <731A4ACB-E181-4D1C-DE20-3BC5A0C36074> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/StepRepeat.InDesignPlugin/StepRepeat
    0x20f8a000 - 0x20fb5ff7 +com.adobe.InDesign.Text Wrap Panel 6.0.0.352 (???) <8DE26186-BAD9-F996-87CB-F5201229551F> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Text Wrap Panel.InDesignPlugin/Text Wrap Panel
    0x20fc6000 - 0x20febffd +com.adobe.InDesign.TOC UI Dialog 6.0.0.352 (???) <13CDCE4A-D2D9-083E-0560-AE7BCC5C7C40> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/TOC UI Dialog.InDesignPlugin/TOC UI Dialog
    0x20ffb000 - 0x21018ff9 +com.adobe.InDesign.Transform Panel 6.0.0.352 (???) <82FA3595-A7D0-7A4A-8DF2-BB71C22E0A45> /Applications/Adobe InDesign CS4/Plug-Ins/Layout/Transform Panel.InDesignPlugin/Transform Panel
    0x21024000 - 0x21036ff3 +com.adobe.InDesign.Image Import UI 6.0.0.352 (???) <4426829B-28C7-6333-5ACA-B4F84EDB9F4D> /Applications/Adobe InDesign CS4/Plug-Ins/Page Item/Image Import UI.InDesignPlugin/Image Import UI
    0x21042000 - 0x21050fff +com.adobe.InDesign.Scotch Rules 6.0.0.352 (???) <74F27148-FACF-5BD6-0006-9DE1FD3F2D50> /Applications/Adobe InDesign CS4/Plug-Ins/Page Item/Scotch Rules.InDesignPlugin/Scotch Rules
    0x21058000 - 0x2108efff +com.adobe.InDesign.BNUI 6.0.0.352 (???) <AED17DBC-0E6D-6C1A-47FA-DCE1863C8E25> /Applications/Adobe InDesign CS4/Plug-Ins/PMPack/BNUI.InDesignPlugin/BNUI
    0x210a3000 - 0x210aaff7 +com.adobe.InDesign.CropTool 6.0.0.352 (???) <918C0A42-7442-4C3B-19C6-976479A0DD41> /Applications/Adobe InDesign CS4/Plug-Ins/PMPack/CropTool.InDesignPlugin/CropTool
    0x210b2000 - 0x21131fff +com.adobe.InDesign.DataMerge 6.0.0.352 (???) <198D3D5E-B1BB-FE63-13A4-3EBFB2A8FCD3> /Applications/Adobe InDesign CS4/Plug-Ins/PMPack/DataMerge.InDesignPlugin/DataMerge
    0x2115e000 - 0x2117fff7 +com.adobe.InDesign.DataMergeUI 6.0.0.352 (???) <6B9F2583-53D7-1319-0A1E-2A353D9837F7> /Applications/Adobe InDesign CS4/Plug-Ins/PMPack/DataMergeUI.InDesignPlugin/DataMergeUI
    0x21190000 - 0x2119efff +com.adobe.InDesign.PMWelcomeScreen 6.0.0.352 (???) <17CCEBF1-6941-902D-4742-B02B31B5A517> /Applications/Adobe InDesign CS4/Plug-Ins/PMPack/PMWelcomeScreen.InDesignPlugin/PMWelcomeScreen
    0x211ab000 - 0x211b1ff8  com.apple.carbonframeworktemplate 1.3 (1.3.11) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0x211b6000 - 0x21240ffb +com.adobe.InDesign.Package and Preflight UI 6.0.0.352 (???) <382B9E43-94D8-6410-3C4E-B58F9B851CDC> /Applications/Adobe InDesign CS4/Plug-Ins/Prepress/Package and Preflight UI.InDesignPlugin/Package and Preflight UI
    0x21270000 - 0x213abff7 +com.adobe.InDesign.Package and Preflight 6.0.0.352 (???) <4433C445-8D25-223C-05FC-8F5A7BE7F7CA> /Applications/Adobe InDesign CS4/Plug-Ins/Prepress/Package and Preflight.InDesignPlugin/Package and Preflight
    0x213eb000 - 0x2140fff6 +AdobeAXE8SharedExpat ??? (???) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x21417000 - 0x2150ffff +com.adobe.InDesign.JBX 6.0.0.352 (???) <E59EE5A5-9A7C-4163-F181-2F4573FF68DA> /Applications/Adobe InDesign CS4/Plug-Ins/Sandbox/JBX.InDesignPlugin/JBX
    0x2155d000 - 0x21560ff5 +com.adobe.InDesign.Script Label Panel 6.0.0.352 (???) <ABF61B34-056D-3C4A-8CE0-9975F05D8267> /Applications/Adobe InDesign CS4/Plug-Ins/Script/Script Label Panel.InDesignPlugin/Script Label Panel
    0x21567000 - 0x2156efff +com.adobe.InDesign.Scripts Panel 6.0.0.352 (???) <6CF81082-2079-F857-9AE3-54141FA55B18> /Applications/Adobe InDesign CS4/Plug-Ins/Script/Scripts Panel.InDesignPlugin/Scripts Panel
    0x21576000 - 0x2160afff +com.adobe.InDesign.Tables UI 6.0.0.352 (???) <D086D539-9F0F-E41D-A540-671BF40FE65C> /Applications/Adobe InDesign CS4/Plug-Ins/Tables/Tables UI.InDesignPlugin/Tables UI
    0x2162c000 - 0x21693fff +com.adobe.InDesign.TableStylesUI 6.0.0.352 (???) <8618D6AA-6181-6AAD-394A-C14C3FB08BA4> /Applications/Adobe InDesign CS4/Plug-Ins/Tables/TableStylesUI.InDesignPlugin/TableStylesUI
    0x216b2000 - 0x216f5ff7 +com.adobe.InDesign.Character Panel 6.0.0.352 (???) <3CA23003-ADED-0E4F-7914-02B14F96F3F3> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Character Panel.InDesignPlugin/Character Panel
    0x21712000 - 0x2172dfff +com.adobe.InDesign.Conditional Text UI 6.0.0.352 (???) <C53D556D-0A80-D348-7990-D4CF215CA67E> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Conditional Text UI.InDesignPlugin/Conditional Text UI
    0x2173d000 - 0x2174efff +com.adobe.InDesign.Create Outlines 6.0.0.352 (???) <34C8477C-B742-DC59-1530-F92449FB0634> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Create Outlines.InDesignPlugin/Create Outlines
    0x21757000 - 0x21810fff +com.adobe.InDesign.Find and Change Panel 6.0.0.352 (???) <2C457607-292C-1E46-F8D8-A0F9E83F52F3> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Find and Change Panel.InDesignPlugin/Find and Change Panel
    0x2183a000 - 0x21852fff +com.adobe.InDesign.Find Change Format Panel 6.0.0.352 (???) <79BC0738-646D-B618-43DE-63477BF8D87E> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Find Change Format Panel.InDesignPlugin/Find Change Format Panel
    0x2185f000 - 0x21875ff9 +com.adobe.InDesign.Font Usage Dialog 6.0.0.352 (???) <6667279D-486C-F58A-4BD6-068E8522E90A> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Font Usage Dialog.InDesignPlugin/Font Usage Dialog
    0x21880000 - 0x218dfff2 +com.adobe.InDesign.Glyphs Panel 6.0.0.352 (???) <DE87C30B-D802-A6E2-1BF7-2B40B762FA5C> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Glyphs Panel.InDesignPlugin/Glyphs Panel
    0x218f7000 - 0x218fdfff +com.adobe.InDesign.Hyphenation Panel 6.0.0.352 (???) <C3CFD45F-7B94-E9A8-1E18-8969784D4630> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Hyphenation Panel.InDesignPlugin/Hyphenation Panel
    0x21906000 - 0x21910ffd +com.adobe.InDesign.Indents and Tabs 6.0.0.352 (???) <7625F0BC-91D5-2A4D-1C28-9B004648D653> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Indents and Tabs.InDesignPlugin/Indents and Tabs
    0x21919000 - 0x2191efff +com.adobe.InDesign.Justification Panel 6.0.0.352 (???) <87EC2B50-54F6-086E-2095-949E3850D70D> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Justification Panel.InDesignPlugin/Justification Panel
    0x21925000 - 0x21929fff +com.adobe.InDesign.Keeps Panel 6.0.0.352 (???) <CF35583F-8A7F-0726-56F2-5DF5D4C0DF0F> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Keeps Panel.InDesignPlugin/Keeps Panel
    0x2192e000 - 0x21949ff3 +com.adobe.InDesign.Optical Kerning 6.0.0.352 (???) <A8B92C1B-ABA9-EF53-E6B1-500C12C97652> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Optical Kerning.InDesignPlugin/Optical Kerning
    0x21952000 - 0x2196efff +com.adobe.InDesign.Paragraph Panel 6.0.0.352 (???) <C954E80A-D677-9EA5-B71A-9647B4AFBFE7> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Paragraph Panel.InDesignPlugin/Paragraph Panel
    0x2197c000 - 0x21986ff2 +com.adobe.InDesign.Paragraph Rules Panel 6.0.0.352 (???) <FEA8CA85-E548-98EB-6B74-51F8275DEBA4> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Paragraph Rules Panel.InDesignPlugin/Paragraph Rules Panel
    0x2198d000 - 0x2199bffb +com.adobe.InDesign.Path Type UI 6.0.0.352 (???) <E88B9803-C125-424B-7D7D-E601E99071DB> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Path Type UI.InDesignPlugin/Path Type UI
    0x219a5000 - 0x219acff5 +PathTypeLib.dylib ??? (???) <DAE01C24-16F1-7785-78DC-90936D2606E6> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/PathTypeLib.dylib
    0x219b2000 - 0x219caffd +com.adobe.InDesign.RunIn Styles Panel 6.0.0.352 (???) <0A845616-B800-CC27-3560-2AE8B80270E4> /Applications/Adobe InDesign CS4/Plug-Ins/Text/RunIn Styles Panel.InDesignPlugin/RunIn Styles Panel
    0x219d6000 - 0x219e7fff +com.adobe.InDesign.SING 6.0.0.352 (???) <30CE431D-04C6-F3ED-86E8-A67FA93DFB60> /Applications/Adobe InDesign CS4/Plug-Ins/Text/SING.InDesignPlugin/SING
    0x219f2000 - 0x21a20ffb +com.adobe.InDesign.Spelling Panel 6.0.0.352 (???) <3BAB117C-339B-CED2-C9B1-2C5C39F32FA0> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Spelling Panel.InDesignPlugin/Spelling Panel
    0x21a34000 - 0x21a3effd +com.adobe.InDesign.Story Panel 6.0.0.352 (???) <74C1A1C5-65C3-C7BF-00BD-57711F4C8312> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Story Panel.InDesignPlugin/Story Panel
    0x21a46000 - 0x21a84fff +com.adobe.InDesign.Style Panel 6.0.0.352 (???) <C0B6312B-D927-2AA8-5F42-961B774EE756> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Style Panel.InDesignPlugin/Style Panel
    0x21aa0000 - 0x21aa7ff5 +com.adobe.InDesign.Text Color Panel 6.0.0.352 (???) <7024E146-9825-7FD9-6782-EF8AAE336C14> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Text Color Panel.InDesignPlugin/Text Color Panel
    0x21aac000 - 0x21ac1ff1 +com.adobe.InDesign.Text Frame Options 6.0.0.352 (???) <7CC9425A-A54C-FC8D-9A34-CDCD403F2483> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Text Frame Options.InDesignPlugin/Text Frame Options
    0x21acc000 - 0x21b01fff +com.adobe.InDesign.Text Panel 6.0.0.352 (???) <F85AAED2-99E6-96BF-E4D5-3E9D700B1EEE> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Text Panel.InDesignPlugin/Text Panel
    0x21b14000 - 0x21b27ff5 +com.adobe.InDesign.Text Preferences 6.0.0.352 (???) <891714B6-9258-092B-F70D-6CE1AD5892A1> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Text Preferences.InDesignPlugin/Text Preferences
    0x21b31000 - 0x21b48ff9 +com.adobe.InDesign.Text Ruler 6.0.0.352 (???) <F6161D34-AF7E-3391-FFC8-34FCF31D2CF3> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Text Ruler.InDesignPlugin/Text Ruler
    0x21b53000 - 0x21b61ff2 +com.adobe.InDesign.Text Style Panel 6.0.0.352 (???) <8E84FBAC-3BB2-48C9-6A88-ED2E59AD9AF4> /Applications/Adobe InDesign CS4/Plug-Ins/Text/Text Style Panel.InDesignPlugin/Text Style Panel
    0x21b6a000 - 0x21b7bfe7 +com.adobe.InDesign.CSXS 6.0.0.352 (???) <157644AF-C315-2A02-4BB8-111ECF157B7E> /Applications/Adobe InDesign CS4/Plug-Ins/UI/CSXS.InDesignPlugin/CSXS
    0x21b89000 - 0x21bebfe7 +com.adobe.PlugPlug 1.0.0.73 (1.0.0.73) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x21c2d000 - 0x21cfffe7 +AdobeAXEDOMCore ??? (???) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x21d31000 - 0x21d4dff9 +com.adobe.InDesign.Galley Preferences 6.0.0.352 (???) <D09D8478-1DE4-1AD6-D39A-8A219AD3BEF6> /Applications/Adobe InDesign CS4/Plug-Ins/UI/Galley Preferences.InDesignPlugin/Galley Preferences
    0x21d5d000 - 0x21d63ffe +com.adobe.InDesign.General Preferences Panel 6.0.0.352 (???) <FCEA8C2E-AC68-949D-BD8D-E7C6F0AB0D73> /Applications/Adobe InDesign CS4/Plug-Ins/UI/General Preferences Panel.InDesignPlugin/General Preferences Panel
    0x21d69000 - 0x21d77ff5 +com.adobe.InDesign.Performance UI 6.0.0.352 (???) <6317F432-FD07-3257-6FD5-8B4AA98EAEE3> /Applications/Adobe InDesign CS4/Plug-Ins/UI/Performance UI.InDesignPlugin/Performance UI
    0x21d83000 - 0x21d96fff +com.adobe.InDesign.Shortcut Editor Dialog 6.0.0.352 (???) <3774220F-2424-05CF-F33E-9FACC829F118> /Applications/Adobe InDesign CS4/Plug-Ins/UI/Shortcut Editor Dialog.InDesignPlugin/Shortcut Editor Dialog
    0x21da0000 - 0x21dabfff +com.adobe.InDesign.Tool Box 6.0.0.352 (???) <6694A1DD-95E8-5C43-1908-414AD2532EB4> /Applications/Adobe InDesign CS4/Plug-Ins/UI/Tool Box.InDesignPlugin/Tool Box
    0x21db5000 - 0x21dbcffb +com.adobe.InDesign.Tool Tips 6.0.0.352 (???) <817781E2-3F65-AD79-F9BC-0C678DBBAE7B> /Applications/Adobe InDesign CS4/Plug-Ins/UI/Tool Tips.InDesignPlugin/Tool Tips
    0x21dc5000 - 0x21dcbff7 +com.adobe.InDesign.PerformanceMetrics 6.0.0.352 (???) <71D6DC9A-F541-4A8D-B286-8AE1014BE5A0> /Applications/Adobe InDesign CS4/Plug-Ins/Utility/PerformanceMetrics.InDesignPlugin/PerformanceMetrics
    0x21dd0000 - 0x21dedff7 +com.adobe.InDesign.Plugin Manager 6.0.0.352 (???) <99E988D1-2785-D355-81C7-6300A143A614> /Applications/Adobe InDesign CS4/Plug-Ins/Utility/Plugin Manager.InDesignPlugin/Plugin Manager
    0x21dfd000 - 0x21e0affd +com.adobe.InDesign.Metadata UI 6.0.0.352 (???) <6AF3FED6-83AB-D0F4-4F4D-311FC7507E3A> /Applications/Adobe InDesign CS4/Plug-Ins/Workflow/Metadata UI.InDesignPlugin/Metadata UI
    0x21e12000 - 0x21ee7fdd +FileInfo ??? (???) <F0932F89-FC98-4BA9-B4F2-C58D0E71D3C1> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x21f18000 - 0x21f1dffd +com.adobe.InDesign.Workgroup UI 6.0.0.352 (???) <F899079C-F1BB-142A-0C23-D9E6C0A73937> /Applications/Adobe InDesign CS4/Plug-Ins/Workgroup/Workgroup UI.InDesignPlugin/Workgroup UI
    0x21f22000 - 0x21f55fff +com.adobe.InDesign.Snippet 6.0.0.352 (???) <7D920E48-DFF3-8E44-6EBD-488A7E42BBEA> /Applications/Adobe InDesign CS4/Plug-Ins/XMedia/Snippet.InDesignPlugin/Snippet
    0x21f64000 - 0x22054ff7 +com.adobe.InDesign.XMedia UI 6.0.0.352 (???) <2909FBFB-95D5-F044-7F3E-E4A597374150> /Applications/Adobe InDesign CS4/Plug-Ins/XMedia/XMedia UI.InDesignPlugin/XMedia UI
    0x220b7000 - 0x220fcfff +com.adobe.InDesign.Actions 6.0.0.352 (???) <780D3F7E-9CD7-0D76-5CA3-C1C56D0F0243> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Actions.InDesignPlugin/Actions
    0x22117000 - 0x2227dfef +com.adobe.InDesign.AppFramework 6.0.0.352 (???) <5C703944-BD46-6FE8-045A-322F46EF10D2> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework
    0x222ef000 - 0x2254ffff +com.adobe.InDesign.Application UI 6.0.0.352 (???) <1351FFD5-D065-FDD9-7F07-46261DA3F233> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Application UI.InDesignPlugin/Application UI
    0x2262e000 - 0x226fcfff +AdobeExtendScript 3.7.0 (compatibility 3.7.0) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x2273e000 - 0x227dffd7 +AdobeScCore 3.7.0 (compatibility 3.7.0) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x2281d000 - 0x2284cff7 +com.adobe.headlights.LogSessionFramework ??? (2.0.0.06112008) /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x22871000 - 0x22926fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
    0x2296c000 - 0x2297dffb +LogTransport2 ??? (???) <835B7B84-5A67-370B-AB39-8E448AA81FA0> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/Frameworks/LogTransport2.framework/Versions/A/LogTransport2
    0x22987000 - 0x229e9fe7 +com.adobe.InDesign.Assignments 6.0.0.352 (???) <18986D9E-9F7B-78FB-5866-ECAFE21B5F31> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/Assignments.InDesignPlugin/Assignments
    0x22a10000 - 0x22a4bfe8 +com.adobe.InDesign.AWS 6.0.0.352 (???) <CC3412D5-A824-15F5-9A96-F9E5BD845155> /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app/Contents/MacOS/Required/AWS.InDesignPlugin/AWS
    0x22a66000 - 0x22a96ff7 +com.adobe.InDesign.AWSUI 6.0.0.352 (???) <700E5059-F44C-4

    Just for good measure, trash the prefs (see Replace Your Preferences) and delete any of the files you find in John's list at Adobe Forums: InDesign crashes at startup becasue I'm not sure if the cleaner tool takes care of them. It's possible none of these files exist if ID never launched, but take a look. They will be hidden, so see Access hidden user library files | Mac OS 10.7 Lion if you don't already know how to find them.

  • Indesign cs5.5 out of memory error

    Hi,
    I am having constant problems with out of memory errors in indesign cs5.5 (version 7.5.3).  I am on a mac. Everything is up to date, I have preflight off, my display performance is on typical view and have tried restarted my computer multiple times.  I do not have any other programs open and the document I have open is 3 pages (8.5x11) with little content and a couple links to small images.  I do not know what to do!  This is affecting my job and my performance!! Please help!!!  Thank you!

    close the application
    Rename the preferences from the following location
    /Users/[User Name]/Library/Preferences/Adobe InDesign/Version #
    /Users/[User Name]/Library/Caches/Adobe InDesign/Version [#]
    then open a new document and then open the document you are facing an issue with it should clear the memory issue temporally
    Alternate :
    copy and paste the content in a new document and check if the 1st option does not work
    PS : changing the folder name would reset the preferences
    refer to KB : InDesign preferences and support file locations

  • Relink Errors during Clone in 8.0.6 Home

    Hi,
    Solaris SPARC 5.10
    11.5.10.2
    Running "perl adcfgclone.pl appsTier" I'm getting missing library errors on the link step when trying to create $ORACLE_HOME/lib/oracle. It looks just like the problem described in Note 370596.1, yet when I execute the workaround described in it, I still receive the same errors. Is there something else I can try?
    One has to look closely to see the error, because the return message from the Perl script is that the clone step completed successfully. One needs to examine the output log from the relink step to see it.
    Sincerely,
    Ted Persky
    Sun Microsystems, Inc.

    Hello,
    The error is the same as in Metalink 370596.1:
    ld: fatal: library -lmdknl: not found
    ld: fatal: library -lmdhh: not found
    ld: fatal: File processing errors. No output written to $ORACLE_HOME/rdbms/lib/oracle uploaded log
    Kind regards,
    Ted P.

  • Oracle Client install problem on Solaris8(relink errors)

    I tried to reinstall the Oracle client. I am getting errors like the
    following:
    Error in invoking target relink of makefile ins_precomp.mk, and a whole bunch of other mk relink errors. I kept ignoring them. And finally the installer reported the following error:
    ld.so.1:
    /export/home/oracle/jre/1.1.8/bin/../bin/sparc/native_threads/jre:
    fatal: libclntsh.so.9.0: open failed: No such file or directory
    (/export/home/oracle/OraHome1/lib/libnjni9.so)
    Error loading native library: libnjni9.so.
    java.lang.UnsatisfiedLinkError: jniGetOracleHome
         at oracle.net.common.NetGetEnv.getOracleHome(Compiled Code)
         at oracle.net.ca.CmdlineArgs.setOraArgs(Compiled Code)
         at oracle.net.ca.NetCA.<init>(Compiled Code)
         at oracle.net.ca.NetCA.main(Compiled Code)
    Any help is appreciated.
    Thanks
    Hemanth

    Since I don't have libclntsh.so.9.0 in the lib directory I tried to generate it using genclntsh command. But it throws errors like
    ./genclntsh
    Undefined first referenced
    symbol in file
    nnfyboot /export/home/oracle/OraHome1/lib/libn9.a(nnfgt.o)
    ld: fatal: Symbol referencing errors. No output written to /export/home/oracle/OraHome1/lib/libclntsh.so.9.0
    cat: cannot open /tmp/clntst9.5548/*.nm
    sort: can't stat /tmp/clntst9.5548/*.objs: No such file or directory
    usage: ar -d[-vV] archive file ...
    ar -m[-abivV] [posname] archive file ...
    ar -p[-vV][-s] archive [file ...]
    ar -q[-cuvV] [-abi] [posname] [file ...]
    ar -r[-cuvV] [-abi] [posname] [file ...]
    ar -t[-vV][-s] archive [file ...]
    ar -x[-vV][-sCT] archive [file ...]
    ar: creating /export/home/oracle/OraHome1/lib/libclntst9.a
    Created /export/home/oracle/OraHome1/lib/libclntst9.a
    Completely stumped as to whats going on.
    Any help is appreciated
    Thanks
    Hemanth

  • Relinking errors after installing 12.1.1 on XP with VC++ (VS2008 Express)

    Hi,
    I am facing a lot of relinking errors after installing 12.1.1 on XP with VC++ (VS2008 Express Edition).
    I had followed Oracle E-Business Suite R12 Installation Steps on Windows XP (Oracle E-Business Suite R12 Installation Steps on Windows XP and for VS2008 have followed metalink note MS Visual Studio 2008 and Visual C++ 2008 Express for Oracle E-Business Suite Release 12 on Windows [ID 1070674.1]
    After applying the patch from section 1 9491976, there are a lot of relinking issues as follows:
    =========================
    Relinking module 'ADCONV.exe' in product fnd ...
    gnumake -f
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_2360.mk
    D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/ADCONV.exe
    Starting link of fnd executable 'ADCONV.exe' on Thu Apr 22 15:28:28 IST 2010
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_2360.mk:758:
    *** target pattern contains no `%'. Stop.
    Done with link of fnd executable 'ADCONV.exe' on Thu Apr 22 15:28:28 IST 2010
    Relink of module "ADCONV.exe" failed.
    See error messages above (also recorded in log file) for possible
    reasons for the failure. Also, please check that the Unix userid
    running adrelink has read, write, and execute permissions
    on the directory D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin,
    and that there is sufficient space remaining on the disk partition
    containing your Oracle Applications installation.
    Relinking module 'AFTBLGEN.exe' in product fnd ...
    gnumake -f
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_2360.mk
    D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/AFTBLGEN.exe
    Starting link of fnd executable 'AFTBLGEN.exe' on Thu Apr 22 15:28:28 IST
    2010
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_2360.mk:758:
    *** target pattern contains no `%'. Stop.
    Done with link of fnd executable 'AFTBLGEN.exe' on Thu Apr 22 15:28:28 IST
    2010
    Relink of module "AFTBLGEN.exe" failed.
    See error messages above (also recorded in log file) for possible
    reasons for the failure. Also, please check that the Unix userid
    running adrelink has read, write, and execute permissions
    on the directory D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin,
    and that there is sufficient space remaining on the disk partition
    containing your Oracle Applications installation.
    Relinking module 'APPR60UE.dll' in product fnd ...
    Removing any existing temp directory
    rm -rf temp
    creating the temp directory
    mkdir temp
    changing permissions for the temp directory
    chmod 777 temp
    Getting the object file names for this APPR60UE.dll
    gnumake -f
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_2360.mk
    appr60ue.LIST
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_2360.mk:758:
    *** target pattern contains no `%'. Stop.
    Unable to get the objects for module "APPR60UE.dll".
    See error messages above (also recorded in log file)
    for possible reasons for the failure.
    adrelink is exiting with status 1
    =========================================
    Has anyone faced something similar in the past?
    Regards,
    Neeraj

    Hi Helios,
    That got resolved after I added the location of the dll in the PATH.
    Now i m getting LINK : fatal error LNK1181: cannot open input file 'LIB/KERNEL32.LIB'
    The log looks like:
    Relinking module 'fndcpesr.exe' in product fnd ...
    gnumake -f
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_5384.mk
    D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/fndcpesr.exe
    Starting link of fnd executable 'fndcpesr.exe' on Thu Apr 22 17:35:31 IST
    2010
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_5384.mk:2908:
    warning: overriding commands for target
    `D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_5384.mk:759:
    warning: ignoring old commands for target
    `D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_5384.mk:2955:
    warning: overriding commands for target
    `D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_5384.mk:1340:
    warning: ignoring old commands for target
    `D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    link.exe
    -MAP:D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/fndcpesr.map
    -NODEFAULTLIB -NOLOGO -SUBSYSTEM:CONSOLE -ENTRY:mainCRTStartup
    -OUT:D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/fndcpesr.exe
    D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/lib/fdpesr.obj \
         D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/lib/FNDCORE.lib
    D:/oracle/LADPCDEV/apps/tech_st/10.1.2/precomp/lib/msvc/orasql10.lib
    D:/oracle/LADPCDEV/apps/tech_st/10.1.2/precomp/lib/msvc/orasqx10.lib
    D:/oracle/LADPCDEV/apps/tech_st/10.1.2/RDBMS/lib/oraclient10.lib
    D:/oracle/LADPCDEV/apps/tech_st/10.1.2/RDBMS/lib/oracommon10.lib
    D:/oracle/LADPCDEV/apps/tech_st/10.1.2/NETWORK/lib/oranro10.lib
    D:/oracle/LADPCDEV/apps/tech_st/10.1.2/NETWORK/lib/oran10.lib
    D:/oracle/LADPCDEV/apps/tech_st/10.1.2/NETWORK/lib/oranl10.lib
    D:/oracle/LADPCDEV/apps/tech_st/10.1.2/lib/oranls10.lib
    D:/oracle/LADPCDEV/apps/tech_st/10.1.2/lib/oracore10.lib /LIB/MSVCRT.LIB
    /LIB/OLDNAMES.LIB "LIB"/KERNEL32.LIB "LIB"/USER32.LIB "LIB"/ADVAPI32.LIB
    "LIB"/WINSPOOL.LIB "LIB"/COMDLG32.LIB "LIB"/GDI32.LIB "LIB"/VERSION.LIB
    LINK : warning LNK4044: unrecognized option '/LIB/MSVCRT.LIB'; ignored
    LINK : warning LNK4044: unrecognized option '/LIB/OLDNAMES.LIB'; ignored
    LINK : fatal error LNK1181: cannot open input file 'LIB/KERNEL32.LIB'
    gnumake: ***
    [D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/fndcpesr.exe] Error 157
    Done with link of fnd executable 'fndcpesr.exe' on Thu Apr 22 17:35:31 IST
    2010
    Relink of module "fndcpesr.exe" failed.
    See error messages above (also recorded in log file) for possible
    reasons for the failure. Also, please check that the Unix userid
    running adrelink has read, write, and execute permissions
    on the directory D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin,
    and that there is sufficient space remaining on the disk partition
    containing your Oracle Applications installation.
    Regards,
    Neeraj

  • InDesign won't close files

    Hallo everybody,
    I'm new her at InDesign-Scripting-Forum, but I have a great problem, and hope there is somebody out who can help me:
    My problem is that InDesign won't close files which have been opened.
    Just a little Javascript (I have reduced it to the minimum):
    var myFile="1.indd";
    // Open the file
    var myDoc=app.open(File(myFile));
    // Close the file
    myDoc.close(SaveOptions.no);
    if(app.documents.length > 0)
            alert("Still " + app.documents.length + " files opened");
    If this script starts from InDesign Javascript Panel, there are no problems or errors.
    InDesign will open the file (1.indd), and closes the file, and no alert will appear.
    But.... if the Javascript ist copied to the InDesign "startup script" folder, so that InDesign should
    run this script on InDesign Startup,the alert will appear.
    If you are running the script in a loop, just like working with 10 files of a current directory,
    InDesign will show alert of 10 opened files at the end.
    So.. at the end of the script, I want to move the (opened and closed) file to another directory.
    But when InDesign "says" the file is opened, I cannot move or rename the file.
    (It is only possible when running the script manually by the Javascript Panel).
    Can anybody help me, so that I can close the file, or that InDesign will close the file
    when running as a "startup-script"?
    Thanks very much.
    Martin.

    I have 8 MB of RAM. I restarted all the software, but not my computer.
    It is in the left column that I am having the problem.
    There was a previous discussion thread where a user on Mountain Lion was having the same issue, but it wasn't resolved in that discussion thread either.

  • InDesign quits after network connection lost error

    InDesign all of a sudden is crashing with the following error:
    "The network connection was lost for the file InDesign SavedData, or the file was modified by another process"
    followed by:
    Adobe InDesign is shutting down. A serious error was detected. Please restart InDesign to recover work in any unsaved InDesign documents." (button) "Return to Finder"
    then:
    "InDesign quit unexpectedly. Click Reopen to open application again. Click Report to see more detailed information and send a report to Apple."
    Then I get the Adobe Crash Report.
    Restarting InDesign gives the same results, both opening a file and opening the application directly.
    I have trashed InDesign Preferences and tried throwing away the InDesign Recovery folder, but no change.
    Specifics:
    -InDesign CS5, ver 7.0.4.553
    -iMac Core i7, OS 10.7.4
    -I am not in a network environment—all InDesign documents are local.
    -InDesign CS4 works okay.
    Here is the the crash report:  http://pastebin.com/1ZvvSJCa
    Any suggestions will be greatly appreciated!
    Thanks,
    Cliff

    Adobe support tells me Adobe does not support saving files to a server.
    Neema: i understand that,InDesign does crashes on server.we have very limited support on servers
    Neema: Please try to save the file locally on machine and see the behaviour of indesign.
    Jack: I've worked with indesign since the beginning and i never had that problem... only when inadvertently pulling the plug from my computer
    Jack: Having files locally is not an option
    Jack: Can you tell me what the line in the crash log means?
    Jack: 2 DataBaseLib.dylib 0x000000010efb048a SUIDS::HandleLostNetConnect(IDFile const&) + 74
    Jack: this part specifically:
    Jack: HandleLostNetConnect(IDFile const&) + 74
    Jack: I have done extensive searches for this error (specifically with the + 74 at the end. I find many with a different number. Each number means a different reason why the network connection was lost, but there is no mention anywhere of 74
    Neema: i do apologize for the inconvenience Jack.Adobe donot recommend saving or opening files from server.
    Neema: we donot have support on servers.And cannot commit on its behavior on server
    Jack: That is disappointing!!
    Jack: I still need to know the meaning of HandleLostNetConnect(IDFile const&) + 74
    Neema: We understand that.But application behaves differently on servers.
    Neema: we apologize but we donot know the exact meaning of the error you received.As stated this varies from server to server

  • Relink error while installing 11i

    Sawwan,
    i am installing 11i in one of test server Oracle linux 4.6, while installing its hitting below error.
    v -f /u02/oracle/upgdb/9.2.0/bin/otrcrep /u02/oracle/upgdb/9.2.0/bin/otrcrep0
    mv: cannot stat `/u02/oracle/upgdb/9.2.0/bin/otrcrep': No such file or directory
    make: [iotrcrep] Error 1 (ignored)
    mv otrcrep /u02/oracle/upgdb/9.2.0/bin/otrcrep
    mv: cannot stat `otrcrep': No such file or directory
    make: [iotrcrep] Error 1 (ignored)
    chmod 751 /u02/oracle/upgdb/9.2.0/bin/otrcrep
    chmod: cannot access `/u02/oracle/upgdb/9.2.0/bin/otrcrep': No such file or directory
    make: [iotrcrep] Error 1 (ignored)
    - Linking otrccref
    rm -f otrccref;
    gcc -o otrccref -L/u02/oracle/upgdb/9.2.0/otrace/lib/ -L/u02/oracle/upgdb/9.2.0/lib/ -L/u02/oracle/upgdb/9.2.0/lib/stubs/ -o otrccref -L/u02/oracle/upgdb/9.2.0/otrace/lib/ -L/u
    02/oracle/upgdb/9.2.0/lib/ -L/u02/oracle/upgdb/9.2.0/lib/stubs/ /u02/oracle/upgdb/9.2.0/otrace/lib/otrccref.o -ltracefe9 -ltrace9 -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9
    -lcore9 -lunls9 -lnls9 \
    -ltracept9 -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lnls9 `cat /u02/oracle/upgdb/9.2.0/lib/sysliblist` -ldl -lm `cat /u02/oracle/upgdb/9.2.0/lib/syslib
    list` -Wl,-rpath,/u02/oracle/upgdb/9.2.0/lib:/lib:/usr/lib -lm `cat /u02/oracle/upgdb/9.2.0/lib/sysliblist` -ldl -lm
    /usr/lib/gcc/i386-redhat-linux/3.4.6/libgcc_s.so: undefined reference to `dl_iterate_phdr@GLIBC_2.2.4'
    collect2: ld returned 1 exit status
    make: [otrccref] Error 1 (ignored)
    mv -f /u02/oracle/upgdb/9.2.0/bin/otrccref /u02/oracle/upgdb/9.2.0/bin/otrccref0
    mv: cannot stat `/u02/oracle/upgdb/9.2.0/bin/otrccref': No such file or directory
    make: [iotrccref] Error 1 (ignored)
    mv otrccref /u02/oracle/upgdb/9.2.0/bin/otrccref
    mv: cannot stat `otrccref': No such file or directory
    make: [iotrccref] Error 1 (ignored)
    chmod 751 /u02/oracle/upgdb/9.2.0/bin/otrccref
    chmod: cannot access `/u02/oracle/upgdb/9.2.0/bin/otrccref': No such file or directory
    make: [iotrccref] Error 1 (ignored)
    - Linking otrccol
    lib -lm `cat /u02/oracle/upgdb/9.2.0/lib/sysliblist` -ldl -lm `cat /u02/oracle/upgdb/9.2.0/lib/sysliblist` -Wl,-rpath,/u02/oracle/upgdb/9.2.0/lib:/lib:/usr/lib -
    lm `cat /u02/oracle/upgdb/9.2.0/lib/sysliblist` -ldl -lm
    /usr/lib/gcc/i386-redhat-linux/3.4.6/libgcc_s.so: undefined reference to `dl_iterate_phdr@GLIBC_2.2.4'
    collect2: ld returned 1 exit status
    make: [ctxsrv] Error 1 (ignored)
    mv -f /u02/oracle/upgdb/9.2.0/bin/ctxsrv /u02/oracle/upgdb/9.2.0/bin/ctxsrvO
    mv: cannot stat `/u02/oracle/upgdb/9.2.0/bin/ctxsrv': No such file or directory
    make: [ictxsrv] Error 1 (ignored)
    mv ctxsrv /u02/oracle/upgdb/9.2.0/bin/ctxsrv
    mv: cannot stat `ctxsrv': No such file or directory
    make: [ictxsrv] Error 1 (ignored)
    chmod 751 /u02/oracle/upgdb/9.2.0/bin/ctxsrv
    chmod: cannot access `/u02/oracle/upgdb/9.2.0/bin/ctxsrv': No such file or directory
    make: [ictxsrv] Error 1 (ignored)
    gcc -o ctxhx -L/u02/oracle/upgdb/9.2.0/ctx/lib/ -L/u02/oracle/upgdb/9.2.0/lib/ -L/u02/oracle/upgdb/9.2.0/lib/stubs/ /u02/oracle/upgdb/9.2.0/ctx/lib/ctxhx.o -L/u02/oracle/upgdb/
    9.2.0/ctx/lib/ -lm -lsc_ca -lsc_fa -lsc_ex -lsc_da -lsc_ut -lsc_ch -lsc_fi -lsc_lo -lctxhx -lc -Wl,-rpath,/u02/oracle/upgdb/9.2.0/ctx/lib -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -
    lxml9 -lcore9 -lunls9 -lnls9 `cat /u02/oracle/upgdb/9.2.0/lib/sysliblist`
    /usr/lib/gcc/i386-redhat-linux/3.4.6/libgcc_s.so: undefined reference to `dl_iterate_phdr@GLIBC_2.2.4'
    collect2: ld returned 1 exit status
    make: [ctxhx] Error 1 (ignored)
    mv -f /u02/oracle/upgdb/9.2.0/ctx/bin/ctxhx /u02/oracle/upgdb/9.2.0/ctx/bin/ctxhxO
    mv: cannot stat `/u02/oracle/upgdb/9.2.0/ctx/bin/ctxhx': No such file or directory
    make: [ictxhx] Error 1 (ignored)
    mv ctxhx /u02/oracle/upgdb/9.2.0/ctx/bin/ctxhx
    mv: cannot stat `ctxhx': No such file or directory
    make: [ictxhx] Error 1 (ignored)
    chmod 751 /u02/oracle/upgdb/9.2.0/ctx/bin/ctxhx
    chmod: cannot access `/u02/oracle/upgdb/9.2.0/ctx/bin/ctxhx': No such file or directory
    make: [ictxhx] Error 1 (ignored)
    Completed...
    The value of IS_RAC:false
    Relinking with RAC OFF
    Starting: "make -if /u02/oracle/upgdb/9.2.0/rdbms/lib/ins_rdbms.mk rac_off"
    rm -f /u02/oracle/upgdb/9.2.0/lib/libskgxp9.so
    cp /u02/oracle/upgdb/9.2.0/lib//libskgxpd.so /u02/oracle/upgdb/9.2.0/lib/libskgxp9.so
    rm -f /u02/oracle/upgdb/9.2.0/lib/libskgxn9.so
    cp /u02/oracle/upgdb/9.2.0/lib//libskgxns.so /u02/oracle/upgdb/9.2.0/lib/libskgxn9.so
    /usr/bin/ar cr /u02/oracle/upgdb/9.2.0/rdbms/lib/libknlopt.a /u02/oracle/upgdb/9.2.0/rdbms/lib/ksnkcs.o
    Completed...
    Starting: "make -if /u02/oracle/upgdb/9.2.0/rdbms/lib/ins_rdbms.mk ioracle"
    - Linking Oracle
    rm -f /u02/oracle/upgdb/9.2.0/rdbms/lib/oracle
    gcc -o /u02/oracle/upgdb/9.2.0/rdbms/lib/oracle -L/u02/oracle/upgdb/9.2.0/rdbms/lib/ -L/u02/oracle/upgdb/9.2.0/lib/ -L/u02/oracle/upgdb/9.2.0/lib/stubs/ -Wl,-E `test -f /u02/
    oracle/upgdb/9.2.0/rdbms/lib/skgaioi.o && echo /u02/oracle/upgdb/9.2.0/rdbms/lib/skgaioi.o` /u02/oracle/upgdb/9.2.0/rdbms/lib/opimai.o /u02/oracle/upgdb/9.2.0/rdbms/lib/ssoraed.
    o /u02/oracle/upgdb/9.2.0/rdbms/lib/ttcsoi.o /u02/oracle/upgdb/9.2.0/lib/nautab.o /u02/oracle/upgdb/9.2.0/lib/naeet.o /u02/oracle/upgdb/9.2.0/lib/naect.o /u02/oracle/upgdb/9.2.0
    /lib/naedhs.o /u02/oracle/upgdb/9.2.0/rdbms/lib/config.o -lserver9 -lodm9 -lskgxp9 -lskgxn9 -lclient9 -lvsn9 -lwtcserver9 -lcommon9 -lgeneric9 /u02/oracle/upgdb/9.2.0/rdbms/li
    b/defopt.o -lknlopt `if /usr/bin/ar tv /u02/oracle/upgdb/9.2.0/rdbms/lib/libknlopt.a | grep xsyeolap.o > /dev/null 2>&1 ; then echo "-loraolap9" ; fi` -lslax9 -lpls9 -lplp9 -l
    server9 -lclient9 -lvsn9 -lwtcserver9 -lcommon9 -lgeneric9 -lknlopt -lslax9 -lpls9 -lplp9 -ljox9 -lserver9 -locijdbcst9 -lwwg9 `cat /u02/oracle/upgdb/9.2.0/lib/ldflags` -l
    nsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lnro9 `cat /u02/oracle/upgdb/9.2.0/lib/ldflags` -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lmm -lnls9 -lcore9 -lnls9 -lcore9
    -lnls9 -lxml9 -lcore9 -lunls9 -lnls9 `cat /u02/oracle/upgdb/9.2.0/lib/ldflags` -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lnro9 `cat /u02/oracle/upgdb/9.2.0/lib/ldflags`
    -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -ltrace9 -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lnls9 `if /usr/bin/ar tv /u02/oracle/upgdb/9.2.0/rdbms/
    lib/libknlopt.a | grep "kxmnsd.o" > /dev/null 2>&1 ; then echo " " ; else echo "-lordsdo9"; fi` -lctxc9 -lctx9 -lzx9 -lgx9 -lctx9 -lzx9 -lgx9 -lordimt9 -lnls9 -lcore9 -lnls9 -l
    core9 -lnls9 -lxml9 -lcore9 -lunls9 -lnls9 -lsnls9 -lunls9 -lxsd9 -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lnls9 `cat /u02/oracle/upgdb/9.2.0/lib/syslibli
    st` -Wl,-rpath,/u02/oracle/upgdb/9.2.0/lib:/lib/i686:/lib:/usr/lib -lm `cat /u02/oracle/upgdb/9.2.0/lib/sysliblist` -ldl -lm `test -f /u02/oracle/upgdb/9.2.0/rdbms/lib/skg
    aioi.o && echo -laio`
    /usr/lib/gcc/i386-redhat-linux/3.4.6/libgcc_s.so: undefined reference to `dl_iterate_phdr@GLIBC_2.2.4'
    collect2: ld returned 1 exit status
    make: [u02/oracle/upgdb/9.2.0/rdbms/lib/oracle] Error 1 (ignored)
    mv -f /u02/oracle/upgdb/9.2.0/bin/oracle /u02/oracle/upgdb/9.2.0/bin/oracleO
    mv: cannot stat `/u02/oracle/upgdb/9.2.0/bin/oracle': No such file or directory
    make: [ioracle] Error 1 (ignored)
    mv /u02/oracle/upgdb/9.2.0/rdbms/lib/oracle /u02/oracle/upgdb/9.2.0/bin/oracle
    mv: cannot stat `/u02/oracle/upgdb/9.2.0/rdbms/lib/oracle': No such file or directory
    make: [ioracle] Error 1 (ignored)
    chmod 6751 /u02/oracle/upgdb/9.2.0/bin/oracle
    chmod: cannot access `/u02/oracle/upgdb/9.2.0/bin/oracle': No such file or directory
    make: [ioracle] Error 1 (ignored)
    Completed...
    /u02/oracle/upgdb/9.2.0/bin/oracle did not relink properly.
    Please review relink errors in this log file

    /usr/lib/gcc/i386-redhat-linux/3.4.6/libgcc_s.so: undefined reference to `dl_iterate_phdr@GLIBC_2.2.4'
    collect2: ld returned 1 exit status
    make: [passwdconvert] Error 1 (ignored)
    gcc -o remtool -L/u02/oracle/upgdb/9.2.0/ldap/lib/ -L/u02/oracle/upgdb/9.2.0/lib/ -L/u02/oracle/upgdb/9.2.0/lib/stubs/ -o remtool -L/u02/oracle/upgdb/9.2.0/ldap/lib/ -L/u02/oracle/upgdb/9.2.0/lib/ -L/u02/oracle/upgdb/9.2.0/lib/stubs/ /u02/oracle/upgdb/9.2.0/ldap/lib/s0gslrcui.o -lncrypt9 -lldapclnt9 -lncrypt9 \
    -lncrypt9 -lgsldb9 -lgslssf9 -lgslssb9 -lgslssf9 -lgslssb9 -lgsldb9 -lgslssb9 -lsgsl_s9 -lgslber_s9 -lgslavl9 -lgslr9 -lgslec9 -lldapclnt9 -lncrypt9 -lpthread -lclntsh `cat /u02/oracle/upgdb/9.2.0/lib/ldflags` -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lnro9 `cat /u02/oracle/upgdb/9.2.0/lib/ldflags` -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lclient9 -lvsn9 -lwtc9 -lcommon9 -lgeneric9 -lwtc9 -lmm -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lnls9 `cat /u02/oracle/upgdb/9.2.0/lib/ldflags` -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lnro9 `cat /u02/oracle/upgdb/9.2.0/lib/ldflags` -lnsslb9 -lncrypt9 -lnsgr9 -lnzjs9 -ln9 -lnl9 -lclient9 -lvsn9 -lwtc9 -lcommon9 -lgeneric9 -ltrace9 -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lnls9 -lclient9 -lvsn9 -lwtc9 -lcommon9 -lgeneric9 -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lnls9 `cat /u02/oracle/upgdb/9.2.0/lib/sysliblist` -ldl -lm -Wl,-rpath,/u02/oracle/upgdb/9.2.0/lib:/lib:/usr/lib
    /usr/lib/gcc/i386-redhat-linux/3.4.6/libgcc_s.so: undefined reference to `dl_iterate_phdr@GLIBC_2.2.4'
    collect2: ld returned 1 exit status
    make: [remtool] Error 1 (ignored)
    mv oidldapd /u02/oracle/upgdb/9.2.0/bin/oidldapd
    mv: cannot stat `oidldapd': No such file or directory
    make: [inst_servers] Error 1 (ignored)
    mv oidrepld /u02/oracle/upgdb/9.2.0/bin/oidrepld
    mv: cannot stat `oidrepld': No such file or directory
    make: [inst_servers] Error 1 (ignored)
    chmod 4755 /u02/oracle/upgdb/9.2.0/bin/oidldapd
    mv oidmon /u02/oracle/upgdb/9.2.0/bin/oidmon
    mv: cannot stat `oidmon': No such file or directory
    make: [inst_admtools] Error 1 (ignored)
    mv oidctl /u02/oracle/upgdb/9.2.0/bin/oidctl
    mv: cannot stat `oidctl': No such file or directory
    make: [inst_admtools] Error 1 (ignored)
    mv ldapdelete /u02/oracle/upgdb/9.2.0/bin/ldapdelete
    mv: cannot stat `ldapdelete': No such file or directory
    make: [inst_clienttools] Error 1 (ignored)
    mv ldapmodify /u02/oracle/upgdb/9.2.0/bin/ldapmodify
    mv: cannot stat `ldapmodify': No such file or directory
    make: [inst_clienttools] Error 1 (ignored)
    mv ldapmodifymt /u02/oracle/upgdb/9.2.0/bin/ldapmodifymt
    mv: cannot stat `ldapmodifymt': No such file or directory
    make: [inst_clienttools] Error 1 (ignored)
    mv ldapadd /u02/oracle/upgdb/9.2.0/bin/ldapadd
    mv: cannot stat `ldapadd': No such file or directory
    make: [inst_clienttools] Error 1 (ignored)
    mv ldapaddmt /u02/oracle/upgdb/9.2.0/bin/ldapaddmt
    mv: cannot stat `ldapaddmt': No such file or directory
    make: [inst_clienttools] Error 1 (ignored)
    mv ldapsearch /u02/oracle/upgdb/9.2.0/bin/ldapsearch
    mv: cannot stat `ldapsearch': No such file or directory
    make: [inst_clienttools] Error 1 (ignored)
    mv ldapcompare /u02/oracle/upgdb/9.2.0/bin/ldapcompare
    mv: cannot stat `ldapcompare': No such file or directory
    make: [inst_clienttools] Error 1 (ignored)
    mv ldapbind /u02/oracle/upgdb/9.2.0/bin/ldapbind
    mv: cannot stat `ldapbind': No such file or directory
    make: [inst_clienttools] Error 1 (ignored)
    mv ldapmoddn /u02/oracle/upgdb/9.2.0/bin/ldapmoddn
    mv: cannot stat `ldapmoddn': No such file or directory
    make: [inst_clienttools] Error 1 (ignored)
    mv ldifwrite /u02/oracle/upgdb/9.2.0/bin/ldifwrite
    mv: cannot stat `ldifwrite': No such file or directory
    make: [inst_clienttools] Error 1 (ignored)
    mv oidpasswd /u02/oracle/upgdb/9.2.0/bin/oidpasswd
    mv: cannot stat `oidpasswd': No such file or directory
    make: [inst_clienttools] Error 1 (ignored)
    mv oidreconcile /u02/oracle/upgdb/9.2.0/bin/oidreconcile
    mv: cannot stat `oidreconcile': No such file or directory
    make: [inst_clienttools] Error 1 (ignored)
    mv datagen /u02/oracle/upgdb/9.2.0/ldap/bin/datagen
    mv: cannot stat `datagen': No such file or directory
    make: [inst_utils] Error 1 (ignored)
    mv bulkmodify /u02/oracle/upgdb/9.2.0/bin/bulkmodify
    mv: cannot stat `bulkmodify': No such file or directory
    make: [inst_utils] Error 1 (ignored)
    mv passwdconvert /u02/oracle/upgdb/9.2.0/bin/passwdconvert
    mv: cannot stat `passwdconvert': No such file or directory
    make: [inst_utils] Error 1 (ignored)
    mv remtool /u02/oracle/upgdb/9.2.0/bin/remtool
    mv: cannot stat `remtool': No such file or directory
    make: [inst_utils] Error 1 (ignored)
    Completed...

  • Make and relink errors .. any help ???

    Thanks to Thomas Gutzman, atlast I was successful to start
    orainst.cm and start to install. But now the installation was
    not successful, with the following errors:
    (1) The TNS listener executables were not linked. check log file
    (2) Error during 'relinking wrap executables...'
    (3) Relinking error for Trace. check log file.
    (4) Relinking error. The executables for Oracle8 Std (RDBMS)
    were not made successfully. please check log file.
    In the $ORACLE_HOME/orainst/make.log file,
    Following error messages have been identified.
    (a) $ORACLE_HOME/bin/gennttab: $ORACLE_HOME/bin/get_platform: No
    such file or directory
    (b) $ORACLE_HOME/bin/gennfgt: $ORACLE_HOME/bin/get_platform: No
    such file or directory
    (c) /usr/i-386/bin/ld: can not open -lnsl: No such file or
    directory.
    More than one occurance of error (a) and (c) happened. I do not
    know what to do.
    CAN ANYONE HELP ME OUT ?
    Thanks in advance
    Satya S Kolachina
    null

    Thomas Gutzmann (guest) wrote:
    : Satya S Kolachina (guest) wrote:
    : : Thanks to Thomas Gutzman, atlast I was successful to start
    : : orainst.cm and start to install. But now the installation was
    : : not successful, with the following errors:
    : : (1) The TNS listener executables were not linked. check log
    : file
    : : (2) Error during 'relinking wrap executables...'
    : : (3) Relinking error for Trace. check log file.
    : : (4) Relinking error. The executables for Oracle8 Std (RDBMS)
    : : were not made successfully. please check log file.
    : : In the $ORACLE_HOME/orainst/make.log file,
    : : Following error messages have been identified.
    : : (a) $ORACLE_HOME/bin/gennttab: $ORACLE_HOME/bin/get_platform:
    : No
    : : such file or directory
    : : (b) $ORACLE_HOME/bin/gennfgt: $ORACLE_HOME/bin/get_platform:
    No
    : : such file or directory
    : : (c) /usr/i-386/bin/ld: can not open -lnsl: No such file or
    : : directory.
    : : More than one occurance of error (a) and (c) happened. I do
    not
    : : know what to do.
    : : CAN ANYONE HELP ME OUT ?
    : : Thanks in advance
    : : Satya S Kolachina
    : Satya,
    : sorry, I made a mistake; you're right, it only helped one step
    : ahead. Thanks to a contribution from Lawrence Simela I was able
    : to find the correct way: it must be the development version of
    : glibc.
    : Please try:
    : 1. connect to ftp.tu-chemnitz.de
    : 2. cd to
    /pub/linux/redhat-ftp/redhat/redhat-5.2/i386/RedHat/RPMS
    : 3. download glibc-devel-2.0.7-29.i386.rpm
    : in binary (image) mode.
    : 4. install/replace the package as root by entering:
    : rpm -ivh --replacefiles glibc-devel-2.0.7-29.i386.rpm
    : If you had installed glibc-2.0.7-29.i386.rpm, as I had written
    in
    : my note, or if you get an error regarding /sbin/install-info,
    you
    : may better try
    : 4. rpm -ivh nodeps replacefiles
    glibc-devel-2.0.7-29.i386.rpm
    : Someone wrote that it's enough to touch /sbin/install-info so
    it
    : just exists, but that didn't help much. I had to use --nodeps.
    : It looks as if the link /usr/src/linux points to the wrong
    : directory afterwards. You should redirect it to the older
    : version, otherwise you cannot build a new kernel. I did not yet
    : check if any of the new files have to be moved prior to
    building
    : a new kernel.
    : Interestingly I got a nasty error message saying something like
    : "An operating system error occurred while trying to spawn
    : '/home/oracle/bin/otrccref' while redirecting output to
    : 'h^^^^'."
    : This could be fixed by backing up /bin/sh and replacing it by
    : /bin/ksh (temporarily, before starting orainst, switching it
    back
    : afterwards).
    : The current status at my system is that I get a memory fault
    when
    : running svrmgrl, but my guess is that this is due to the fact
    : that I had not set the kernel parameters correctly, but before
    I
    : go an try to build the kernel I will reinstall the system,
    having
    : fiddled around so much.
    : It would be great if someone with better insight into the
    psyche
    : of Linux would comment on this.
    : K
    I'm getting this same message on a Linux Slackware 3.6 machine.
    Can't seem to figure it out.
    null

  • Relinking Error. The executables for Oracle8 Entrprise (RDBMS) were not made

    I am trying to install Oracle8051EE_Intel.tgz.
    Relinking Error. The executables for Oracle8 Entrprise (RDBMS) were not made successfully.
    The error in the install.log file are:
    (( OIERR-SYSTEM: make -f ins_rdbms.mk ORACLE_HOME=/var/database/ora001/app/oracle/product/8.0.5 install ))
    When running the command:
    make -f ins_rdbms.mk ORACLE_HOME=/var/database/ora001/app/oracle/product/8.0.5 install
    from the /CD-ROM/rdbms/lib directory, I get the errors:
    /var/database/ora001/app/oracle/product/8.0.5/lib//libplsf.a(spssimb.o): In function `pss_gets':
    spssimb.o(.text+0x4ef): the `gets' function is dangerous and should not be used.
    /var/database/ora001/app/oracle/product/8.0.5/lib//libgeneric.a(skgfr.o): In function `skgfrcre':
    skgfr.o(.text+0x4de): the `llseek' function may be dangerous; use `lseek64' instead.
    /var/database/ora001/app/oracle/product/8.0.5/lib//libserver.a(hoco.o): In function `hoconsi':
    hoco.o(.text+0x104d): undefined reference to `__strtoq_internal'
    /var/database/ora001/app/oracle/product/8.0.5/lib//libserver.a(hoco.o): In function `hoconui':
    hoco.o(.text+0x126a): undefined reference to `__strtouq_internal'
    collect2: ld returned 1 exit status
    make: *** [var/database/ora001/app/oracle/product/8.0.5/rdbms/lib/oracle] Error 1
    How do I resolve this problem?

    I don't know if it can help you, but I had to face something quite like that installing Oracle 8.1.7 on Aix 5L.
    In fact, you don't need to have C compiler on the system to relink products. "ld" and "ar" commands are used to do it. But you need to have all the necessary libraries installed. So check if filesets bos.adt.lib and bos.adt.libm are installed and then try a "relink all" from an oracle's shell.

Maybe you are looking for

  • Problem with Collaboration and Portal accessed via multiple URLs

    Here is the scenario. We have the portal installed that can be accessed from an external domain: portal.company.com. We recently upgraded to WCI 10gR3 and in the process we added an internal server that uses an OAM webgate which handles Integrated Wi

  • Question marks instead of images

    In the last week, I have found that Safari has started replacing images in some sites with question marks in blue boxes. I know it is a Safari issue rather than a website issue because the same sites open normally in other browsers. Any suggestions?

  • Data migration Tally to SAP B1

    Hi Friends I need a information about data migration from tally to sap business one. can anybody guide me how to do ? regards kamlesh

  • Help with Convert to Symbol

    I'm trying to link a flash page to another flash page. I'm following the instructions given to me and it has worked up until now. I convert the text to symbol>select button, then I go to actions, type in the filename.swf and add the level in the scri

  • Trouble adding PDF printer

    I seem to be unable to add PDF to my list of printers, as I have been able to do in the past. Is it no longer necessary to add a .PPD file to print directly to PDF from, say, Illustrator or InDesign? Any help would be most appreciated. Thank you! Jon