Unable package OSX indesign file on Win Server

I package on to a AD based server,,, it creates a folder.. but it is empty
I package locally on my MP desk top it's ok..
Using CS5 .. but problem was there since CS4

Package the file to your Desktop and see if you can copy it up. My money is on file name length being the issue. If you can then it is time to call the helpdesk or Active Directory administrator to ensure that you have enough permissions for InDesign.
Though many run InDesign over the network it isn't officially supported and I think generally the permissions level is like most applications in the print industry where they ask for a broadbrush huge amount of permissions. I don't believe there is a system administrator guide for permissions anywhere, as that is considered supporting network indesign work.
I don't think Active Directory is wildly popular in the Mac world, but they have made progress every release since Panther to make it better. If the file name isn't your issue you may want to see if your AD administrator can set you up with a stunt share with full permissions to see if ID will play nice with it. My bet, again, is on file name length.

Similar Messages

  • Mac mini Server 10.6  unable to search for files on the server from desktop.

    I'm running Mac mini Server 10.6 with 15 various Apple Mac desktops 10.4 / 10.6. The problem i'm having is that i'm unable to search for files on the server from any of the desktops. I have fixed permissions and rebooted. I can perfomr a search though command - F and spotlight from the server.
    Anyone have any ideas?

    I have a Mac mini server with Mac osx 10.6.8 installed --- I have a website {UNDER CONSTRUCTION} installed on it with a REGISTERED DOMAIN NAME belizeansworldwide.com -->[DNS service w/GoDaddy]  & DSL INTERNET service  w/VERIZON --- {My server is the ONLY DEVICE CONNECTED to my VERIZON DSL router/modem}
    When I enter my DOMAIN NAME or WAN IP # in my browser(s)--> Chrome OR Safari -- i get my Verizon modem
    set-up page-->{this incl the WAN IP# as I expected}----{NORMALLY I WOULD ACCESS MY Actiontec
    modem/router via 192.168.1.1} --- While in that webpage there's an option "shared files/folders"   & clicking on that option DISPLAYS MY WEBSITE --->  {"PORT FORWARDING DID NOT RESOLVE THAT"}
    My next attempt @ a solution was through my Server's SystemPreference>Sharing>Internet Sharing
    & this the Original Object of my post ===>  "MY SHARING PANEL DOES NOT INCLUDE THE OPTION
    FOR   'Internet Sharing' among the others like CD DVD, Remote Login,Remote Management, Bluetooth Sharing, etc.etc ---- Hope this additional info will help to clarify  &/or explain my problem
    Thanks, & best regards to you & yours

  • Unable to create a file in Application Server using OPEN DATASET stattement.

    I am unable to create a file in Application Server using the following statement.
    OPEN DATASET filename FOR OUTPUT
    IN TEXT MODE ENCODING DEFAULT
    MESSAGE msg.
    The message I'm getting is "Permission Denied". I have checked authorisation using SU53 which says "The last authorization check was successful". Please help.

    You can use following code to capture the error.
    TRY.
          OPEN DATASET filename FOR OUTPUT IN BINARY MODE MESSAGE V_MSG.
          CATCH CX_ROOT
          INTO EXCEPTION.
          CALL METHOD O_EXCEPTION ->IF_MESSAGE~GET_TEXT
            RECEIVING
            RESULT = V_MSG.
          MESSAGE v_msg
          TYPE 'E'.
    ENDTRY.
    You can capture error in v_msg.
    Following are the exceptions for the same:
    Exceptions
    Catchable Exceptions
    CX_SY_FILE_OPEN
    Cause: The file is already open.
    Runtime Error: DATASET_REOPEN
      CX_SY_CODEPAGE_CONVERTER_INIT   
    Cause: The desired conversion is not supported. (Due to specification of invalid code page or of language not supported in the conversion, with SET LOCALE LANGUAGE.)
    Runtime Error: CONVT_CODEPAGE_INIT
    CX_SY_CONVERSION_CODEPAGE
    Cause: Internal error in the conversion.
    Runtime Error: CONVT_CODEPAGE
    CX_SY_FILE_AUTHORITY
    Cause: No authorization for access to file
    Runtime Error: OPEN_DATASET_NO_AUTHORITY
    Cause: Authorization for access to this file is missing in OPEN DATASET with addition FILTER.
    Runtime Error: OPEN_PIPE_NO_AUTHORITY
      CX_SY_PIPES_NOT_SUPPORTED   
    Cause: The operating system does not support pipes.
    Runtime Error: DATASET_NO_PIPE
    CX_SY_TOO_MANY_FILES
    Cause: Maximum number of open files exceeded.
    Runtime Error: DATASET_TOO_MANY_FILES   Non-Catchable Exceptions   
    Cause: An attempt was made to open a pipe that is already open.
    Runtime Error: DATASET_PIPE_POSITION
    Hope that will help you.
    Please reward if useful.

  • When packaging an InDesign file get missing plug-in error msg?

    When going to package an InDesign file, we get a message about missing a plug-in, and the only option is to hit "OK" which stops the packaging process. The info on the (missing???) plug-in says: SMD Channels Model.SDK.inDesign plug-in.
    We are using CS5, with all the latest updates installed. Thanks for any assistance.

    I found this: http://forums.adobe.com/thread/484963
    Id try exporting the file to .idml and see if that removes the reference. see Remove minor corruption by exporting

  • Unable to open leopard files on windows server

    Hi,
    We had a mac which was on Leopard and saved files to the server
    The file system we use is a Windows 2008 File Server, this has worked fine with leopard for years
    However I understand that Leopard splits the files into resource forks - and that Lion has dropped support for these files.
    That particular mac is now on Lion as we upgraded and encountering LOTS of issues
    I unable to open or edit lots of the files as i believe chunks of the files are missing.
    E.g an .eps file showed as 740KB on leopard - Viewing from a windows PC it was 730kb for the .eps and 10kb for the ._ resource fork.
    Now that we are on the LION upgrade, we only see the .eps file and it is only 730kb. Information missing is things such as preview (quark), Font data, type of file, version number
    Is there anyways to fix this? we have hundreds! of images, files etc created with leopard and now upgraded to lion they all have become useless!
    Rejoining the resource forks and files together so that they are usable on lion
    Thanks

    You also may want to post this in the Lion forum, someone there may have some insight.

  • Unable to delete a file on application server

    Hello Experts,
    I have gone through  couple of post and sample nothing worked that's the reason Iam posting a query here.
    Please help me with your valuable suggestions.
    I am reading a file from the application server running a BDC program to update my ztable all works fine.
    now i wanted to move this file to another folder thats too working perfectly but now when i try deleting the older one it is not getting deleted.
    I have closed the dataset and checked the authorization that is not a concern but still it is not getting deleted.
    I have pasted the code below.
    For READ and CLOSE dataset it returns subrc as 0 but after delete it returns 4.
    data : mess type string.
    OPEN DATASET ld_file FOR INPUT IN TEXT MODE ENCODING DEFAULT message mess.
    IF SY-SUBRC = 0.
    DO.
        READ DATASET ld_file INTO wa_string.
        if sy-subrc eq 0.
            append wa_string to it_string.
            clear wa_string.
        else.
            exit.
        endif.
      enddo.
      close dataset ld_file.
      delete dataset ld_file.
    else.
    WRITE 'Unable to open source file to move the content'.
    endif.
    Regards,
    Ranjith N

    Hello Mr Ghode,
    Thaking you for your response on my query.
    as you said to handle exception this is what i have done.
    kindly verify the same would be of great help.
    still iam unable to delete the file.  
    OPEN DATASET ld_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
      IF SY-SUBRC = 0.
        DO.
          READ DATASET ld_file INTO wa_string.        "LV_LINE is variable to hold line contents being read
          if sy-subrc eq 0.
            append wa_string to it_string.
            clear wa_string.
          else.
            exit.
          endif.
      enddo.
      close dataset ld_file.
      if sy-subrc eq 0.
      try.
        delete dataset ld_file.
        catch CX_dynamic_check into t_ref.
        err_txt = t_ref->get_longtext( ).
    endtry.
    endif.
    endif.
    Regards,
    Ranjith N

  • Moving InDesign files on a server that has stable INCX links

    What concerns are there with moving InDesign files into different folders on a file server that has INCX files linked as Unassigned InCopy Content? The INCX file location would stay constant. Were are not planning on using assignments. Our editorial/art staff currently moves InDesign documents from folder to folder to indicate the status of a document in the editorial workflow. Im curious if we can still do this once we transition to an InCopy/InDeisign Live Edit workflow. Ive done some initial testing with positive results. The InDesign link to the INCX files seem to stay intact.
    Any thoughts or concerns would be appreciated! -Mike

    Cool, thanks for the info. Wonder how you found that little tid-bit of information, must have been some sort of experiment.
    I once had a user work on a locally existing InDesign file for a few hours who wasn't in the habit of saving (since Indesign has such a great recovery feature.) Unfortunately, after a few hours of work, he went to finally save the document, but InDesign refused... couldn't even do a Save As. He called me down to his office in a panic since the document was still open. After a few minutes of checking InDesign logs on his Mac, I noticed a conflict in folder paths. I asked him if he moved the location of the InDesign document while the document was still open. He admitted that he probably did. After moving the InDesign document back to the original folder (same folder as the locked temp file), he was able to save the document. Go figure!
    -Mike

  • Unable to generate WSDL file in quality server in SOAMANAGER

    Hi Experts,
       I have developed a webservice in DEV  and generated the wsdl file in soamanager and it works fine. Now when i transport it to QAS webservice gets transported  ( SE80 i can see it  ) and in soamanager when i go to generate the wsdl file for QAS server it is not allowing me to do it.  In soamanager when you click on 'Open WSDL document for selected binding'  nothing happens. In the same screen it says ''Services: 0 / Endpoints: 0 '' .  
       In SICF i see the webservice name however  below that i dont see any nodes extending  but in DEV i see the client name and once again the webservice name in the below nodes.  It appears as below in DEV
    /default_host/sap/bc/srt/rfc/sap/zfi_customer_balance_sms/555/zfi_customer_balance_sms/
    But in QAS it appears as below
    /default_host/sap/bc/srt/rfc/sap/zfi_customer_balance_sms
    I have also transported the SICF entry to QAS ie right click on the webservice, click on Obj Directory entry  and put it in a TP and transport.  Even then the nodes dont appear in QAS.
    I am doubting wheather some services need to be activated in SICF.  I just need to generate the wsdl file in QAS and later in PRD.
    Any help on this will be greatly appriciated.
    Thanks
    Govind

    Hi Govind,
    To get the web service working in DEV you configured an endpoint for it using SOAMANAGER right?
    You need to do the same endpoint configuration again in QAS & PRD once you transport it there. When you transport the web service between the environments the endpoint configuration in SOAMANAGER isn't transported as well. You need to repeat the configuration exercise each time you transport the web service.
    If you are transporting lots of web services then there is functionality to do mass configuration of these web services.
    Regards, Trevor

  • Unable to deploy artifact file to Managed Server.

    In 3.0, I can deploy artifact file to Admin Server but not to an managed server. This happens with any artifact file.
    Am I doing some thing wrong?
    I get the following exception on the managed server log file:
    java.lang.NullPointerException
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCancelCallback(DeploymentReceiverCallbackDeliverer.java:214)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$200(DeploymentReceiverCallbackDeliverer.java:12)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$3.run(DeploymentReceiverCallbackDeliverer.java:80)
         at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)

    I found an existing CR - CR345563 for this issue. It says it is a "User Error"
    From someone who knows :
    "There is no support to deploying artifacts from IDE to a multi-server setup. The recommended way is to export the artifacts from IDE and import them from admin console of ALDSP."
    Edited by mreiche at 05/29/2008 12:23 PM

  • Problems with sharing InDesign files on Windows server

    Hi there. We have four designers that are working with InDesign CS5 and InCopy CS5. Three of these designers are working on Macs running OSX 10.8. The other is working on a Windows 7 machine. All of their files are stored on a Windows Server 2008 R2 file server. The problem is that whenever one of them makes updates to some files in a project and they save it, the others are unable to checkout any assignments from within either InDesign or InCopy. When they try to checkout the files to make changes, they get the following error message: "In use by Unknown in Adobe InDesign from document <file name>.indd"
    The strange thing is that their files used to be stored on a Server 2003 file server and they never had any problems. But since we moved them over to this Server 2008 R2 machine I can't help but wonder if it is a problem with the server. In either case, I wanted to ask this question in here to get any opinion on what this could be.
    Thanks in advance.

    Hi Stefano,
    I got similar problems, any solutions for me?
    Thanks...
    Ken

  • Unable to poll for files in FTP server using Proxy Service (in OSB Project)

    Here are the stepd followed for creating proxy service that should poll ftp server to retrieve files but polling is not happening and unable to see any errors in logs.
    1. Created service account by selecting resource type as static and providing the ftp user and password details.
    2. Created a New Proxy Service in eclipse
         Tab General - service type as Messaging Service
         Tab Messaging - Request Message Type as Text, Response message type as None
         Tab Transport - Protocol selected as "ftp"
              - Endpoint uri entered in the format - ftp://hostname:port/directory
    FTP Transport -Selected "external user" as User Authentication
              - Selected the Service Account thats created in step1/
                   - File mMask - *.*
                   - Polling Interval 60
                   - Read Limit 10
                   - Post Read Action - Delete
                   - Transfer mode - binary
                   - Download Directory - "some local directoy"
                   - Error Directory - "some local error directory"
    Could any one please help here to trouble shoot the polling issue and correct me if this is wrong approach.
    Thanks

    Did you configure the FTP adapter which is present in Weblogic server?I think he's using FTP transport in OSB and not the JCA adapter, if that's the case FtpAdapter configuration wouldn't help...
    unable to see any errors in logsThat's odd, try to mess up the hostname and see if you get a connection refused on the logs...
    It may be a permissions issue, the user you're connecting may not even "see" the files you place there... Try using the same user to create and to poll files...
    Cheers,
    Vlad

  • Unable to access gif files from the server

    hi all,
    i have successfully signed an applet and it is loading in the client system also. in that applet, i instantiated a jbutton as given below:
    JButton jb = new JButton(new ImageIcon("http://192.168.91.154:8080/success/set.gif"));
    but the icon din appear and a blank button appears, even when accessed from the server system.
    if i give the exact path like c:/blazix/webfiles/success/ set.gif, the icon is coming in the server system but not in other systems. i tried without port no also but in vain. pl solve my problem. what i need is how to
    specify the path of the file[any file] which is present in server.
    or if i put all the gif files in the jar file, can i access the gif files present in the jar file [set for archive] ? if i can, give me the soln for accessing the gif file present in the jar file, so that i need not access the server to get the gif files.(i.e) how to specify the path of the gif files present in the jar file?
    i ve one more doubt. the jni library file shld be in the server, and the client has to access the library in the server. i think the applet loaded in the client ll search for the library in the local m/c only . how to make the applet to search for library in the server??
    i feel only by using rmi we can solve this problem. am i correct? if so i feel that an appln or applet running in the server shld access the jni library, and the applet in the client side should communicate with this server appln using rmi to get the data.is it correct? is there
    anyother way?
    i appreciate your help in this regard. thanks in advance. bye, padmanbhan.

    Better information on what you are doing with JNI might help you get an answer.
    If you have some server process that needs to use JNI, then I would code a servlet to call, instead of using RMI to ge there.
    Depending on your environment, and the target audiences environment, RMI may just cause you a lot of grief. Firewalls etc, get in the way of RMI connections and force security holes to be opened in order to work.
    If you use a servlet, then traffic to your server process is done via standard http calls, which will already be enabled, because your app runs in a browser.
    If ther data requirements are heavy duty, your server could always send an XML stream to the client, which would allow you to describe complex data to the client.
    Running JNI stuff from the client directly means a lot of local infrastructure to run your app. The code you want to run, the JNI library ....
    If what you have is really an application, but want the convenience of starting it from a browser, look at Java WebStart. Then you can distribute an application via the browser, and WebStart will worry about the deployment issues for you.
    In Summary:
    Stay away from RMI from applets if you can help it.
    If you really have an App, then try WebStart to manage the distribution issues for you.

  • Unable to Find Shared Files on the Server

    Hello world,
    I am using Mac in my office and suddenly when I open our company's shared folders, my Mac finder doesn't show latest added files by my colleagues.
    I tried the following with no success:
    Restart.
    Disconnect from the server and reconnect.
    Relaunch the finder.
    Kill the finder using the Terminal.
    My company uses "small business server SBS 2008", and everything was working perfect until I installed "security update 2015-002 V. 1.0"!
    Please help.

    Well seems like this was a bug that was fixed in SQL 2012 Service Pack 2! I've just applied it to the system in question, and it works as it should now.
    At least this information is up here for others who may encounter it now!

  • Unable to open a file in Application server

    This path exist in the Application server.
            DR1/interfaces/Esker
    ORDHIST - This is the File name in whihc i need to save the data.
    I had specified the whole path as DR1/interfaces/Esker/ORDHIST
    I am trying to upload the data from the Internal table to the above specified file ORDHIST.
    It is not opening the File on the application server, it says that it 'could not open file'.
    Any suggestions will be apprecaited to open the file and transfer the data from
    Final Internal table to --> Application server
    Below is my code....If found any mistakes then plz correct me...
    *&      Form  UPLOAD_APPLSERVER
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM UPLOAD_APPLSERVER .
    DATA : GV_OUTPUT(275) TYPE C.
    DATA : P_FILE TYPE STRING.
    P_FILE = 'DR1/interfaces/Esker/ORDHIST'.
    OPEN DATASET P_FILE FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    IF SY-SUBRC <> 0.
        MESSAGE : I002(ZMSSG) WITH 'Could not open file'.
        STOP.
    ENDIF.
    LOOP AT T_FINAL1 INTO WA_FINAL1.
    CONCATENATE  WA_FINAL1-VBUND
                  WA_FINAL1-BSTNK
                  WA_FINAL1-KUNNR
                  WA_FINAL1-AUDAT
                  INTO GV_OUTPUT
                  SEPARATED BY ','.
    TRANSFER GV_OUTPUT TO P_FILE.
    IF SY-SUBRC <> 0 .
         MESSAGE : I003(ZMSSG) WITH 'Trasnfer is failed'.
         STOP.
    ENDIF.
    ENDLOOP.
    CLOSE DATASET P_FILE.
    ENDFORM.                    " UPLOAD_APPLSERVER
    Thanks & Regards,
    Krishna

    Hello Kittu,
    What was the Sy-Subrc value after executing the Open Dataset statement?
    If it is 8, then the problem could be with
    1) The path name not mentioned properly (or)
    2) User Id might not be having access to the file mentioned in the path
    Also, if you are using the App Server as UNIX then the filenames should be of case sensitive.
    Check the path first and note it down as per the actual case
    Hope this is helpful
    Thanks,
    Babu Kilari
    Edited by: Babu Kilari on Apr 6, 2009 6:18 AM

  • Unable to upload multiple files on FTP server.

    m trying to upload files present in one directory..
    its storing the first file properly...but from second file its giving error.
    my code is pasted below:
    ftp1.setFileType(FTPClient.BINARY_FILE_TYPE);
    ftp2.setFileType(FTPClient.BINARY_FILE_TYPE);
                 String filename="";
                FTPFile[] files = ftp1.listFiles();
                if ( files.length == 0 )
                    System.out.println("  No results.");
                } else
                     for (int i = 0; i < files.length; i++)
                          FTPFile f = files;
              filename = f.getName();      
              System.out.println(" > " + filename );
              ftp2.enterRemotePassiveMode();
         ftp1.enterRemoteActiveMode(InetAddress.getByName(ftp2.getPassiveHost()),
              if (ftp1.remoteRetrieve(filename) && ftp2.remoteStore(filename))
                   System.out.println("Successfull >" + filename);
              else
                   System.err.println(
                   "Couldn't initiate transfer. Check that filenames are valid.");
                   break __main;
         }//end of for
         ftp1.completePendingCommand();
         ftp2.completePendingCommand();
    }// end of else
    my code is actually trying to list files from FTP Server1 and copy this to FTP Server2.
    I think the problem is
    ftp2.enterRemotePassiveMode();
         ftp1.enterRemoteActiveMode(InetAddress.getByName(ftp2.getPassiveHost()),
    please can any one figure out the problem...
    any help suggestion is welcome....

    What about connecting to the remote server with cfftp. Then
    using
    cfdirectory to get a listing of the files. Loop over the
    listing using cfftp
    to grab each file.
    Bryan Ashcraft (remove brain to reply)
    Web Application Developer
    Wright Medical Technology, Inc.
    Macromedia Certified Dreamweaver Developer
    Adobe Community Expert (DW) ::
    http://www.adobe.com/communities/experts/
    "Dusty Carr" <[email protected]> wrote in message
    news:f59tue$731$[email protected]..
    >I need to get files from a remote server using cfftp, the
    problem is that
    > the files are not zipped into one file, there are
    multiple files with
    > different file names that change daily, all are .jpg
    extensions. I
    > thought
    > I could just use something like this:
    > <cfftp action = "getFile"
    > stopOnError = "Yes"
    > remotefile = "/*.jpg"
    > localfile = " my dir"
    > connection = "ftp_IDX"
    > failIfExists = "false"
    > passive="yes">
    >
    > But just using the * wildcard does not work. what am I
    missing here?
    >
    >

Maybe you are looking for

  • IPod Shuffle - strange problem HELP!!!!

    Hello, few days ago my iPod shuffle suddenly stopped playing. In the first place I thought it was a battery. But after over a 8hrs of charging, restoring software etc. it looks like that: after sliding the button into one of the two play modes only t

  • What is The Best Virus Removal Method?

    Hey there, I bought my Macbook Pro about a year ago, partially becuase I thought that they couldn't get viruses. Well, last week I found out that my Mac has been sending wierd emails to anybody, and everybody, in my email address book. I ran a virus

  • Route decisions based on destination TCP port with EIGRP

    Need information and plausibility on making routing decisions within EIGRP based on different destination TCP port.  I have a third party partner that we communicate too and they are adding a second location which we will connect too.  They are wanti

  • Opening downloaded dmg files

    Any file that I download that is dmg will not open. I get the message that it failed to mount. If I check get info on the file it says it should open with disk image mounter. when I click on it it eventually says device not configured. I tried openin

  • Enhancement Exit EXIT_SAPLV56L_002

    Hello everyone, I am trying to update the code inside the exit EXIT_SAPLV56L_002 via an include program inside it (ZXV56U25). The problem is, the code we inserted inside is not executed. This exit is already activated. I viewed it's documentation and