Missing Links in InDesign CS3

We are using InDesign CS3 and the program itself works good, the problem I'm having is all our data is located on a server and I have replaced the server with a new one, now when we open a document it has missing links and it takes forever searching for \\oldserver\pictures before popping up missing links where you then point it to \\newserver\pictures. My question is why does InDesign use the unc path and not mapped drive letters? Is there a way to fix this for future? Also is there anyway to fix previous short a fixing each and ever missing link? I see CS4 has the option to check links or not but I don't see any options for CS3. Any help would be appreciated.
Thanks,
Tony

I'm not sure what that has to do with it? when opening up a documents it tries to resolve picture links the link pointing to \\oldserver\pictures (that server is no longer running) everything has been moved to \\newserver\pictures when the document finally opens you manually fix the links to point to new server save document then it opens fine the next time. I would rather have the links point to P:\Pictures as apposed to the unc path, the I wouldn't have this issue.

Similar Messages

  • Missing links in Indesign CS6!

    Good morning!
    Yesterday, my workmate and I did a .indb file in Indesign CS6. That .indb (book) is made of several .indd files (documents).
    So far so good. Then, after it was ready, we linked all images (using the Links panel) to each .indd and then we saved it.
    Today, I've tried to move those documents to my computer.
    However, the Links panel now shows many missing links in the images, according to the image below:
         I can't understand how Indesign CS6 missed links in this case, because we have already linked all images to each document.
         Please, I would like to learn more about this process of linking images to documents in Indesign.

    inDesign links documents via a file path.
    It doesn't actually add the image itself to the document, but rather relays a link to the where file resides on the hard drive.
    It then draws a representation of that image in the layout using a proxy thumbnail.
    So when it's linked it is actually looking at a file path, say something like
    If I move that file to a computer where the my documents folder has a different name say "C:\MyDocuments\Eugene\Images\Eugene1.png"
    "C:\MyDocuments\Marcelo\"
    Then when I open the file on Marcelo's computer the link would still be
    "C:\MyDocuments\Eugene\Images\Eugene1.png"
    I need to redirect the link to go to
    "C:\MyDocuments\Marcelo\Images\Eugene1.png"
    As stated above you should use
    File>Package
    Zip the folders the computer generates - and then send them to a new computer.
    Unzip and work on the file.

  • Link to InDesign CS3 Trial?

    Hi, I am trying to locate the InDesign CS3 trial download. Does anyone know where to find it? All the CS3 links I've found take me to the CS4 page where there does not seem to be a trial available yet.
    Thanks.

    I looked the other day myself, and it appears that the CS3 trials have been removed from the website. You used to be able to find them on the updates pages, but no more.

  • Links not showing in Links palette; InDesign CS3

    Specs:
    Version CS3
    OS: XP Professional
    Memory: 2gb
    After running several searches I found an almost identical question in this forum, but an answer was not posted, plus they had an older version.
    The link text (missing or not) is not showing up in the Links Palette. We have reset Preferences, by going to the actual location on the drive and removing them, forcing ID to recreate them on start up, but no luck. We always "Place" and never "Copy and Paste".
    If we "Package", we can see a list of the Links as normal, it's just in the Links Palette where we're having problems.
    Thanks for any help.

    I'm not sure that's what Thomas is asking. It sounds to me more like he has an empty links palette (where he ought to be seeing links to images) than that all he has placed are text and spreadsheets, and his preference is to embed those.
    Since prefs replacement isn't helping, and if I'm correct in my interpretation, I think the next step might be checking the video driver by turning off hardware video acceleration temporarily.
    Peter

  • How to find missing link in document

    Hi All,
    I require a script which can find missing links in Indesign document.
    If anybody has this script, please pass it to me.
    thanks.
    mon

    Thanks for your prompt reply.
    But it gives error "Link is read only" when I run this script.
    Please run this script and kindly let me know your comments.
    Thanks in advance.
    Mon

  • How to restore broken links after server migration in Indesign CS3???

    Hi All,
    I have used my google skills to no avail and everything I have read here has been a dead end for me. I can't be the only person in this situation, so hopefully someone can help!
    My marketing department has reached the storage limits of our shared network drive. Located on this drive is our (HUGE) image library which acts as a single central respository serving up our indesign links (read here: we don't package files - to conserve space). We have decided that in an effort to create a true archive and have more space for our image library we need to migrate the library to a new 16 terabit Drobo (yay!).
    The problem is that every INDD file that links to the current library will now suffer from broken links. We literally have hundreds of INDD files and thousands of links. The good news is...the file structure isn't changing at all! Just the server location is changing. Is there any way to to a batch update of the links that tells INDD to look for the exact same file path on a different drive?
    In short:
    current image library (old server): marketing/image library/photos/products/multiple product folders
    new image library (new server): drobo/image library/photos/products/multiple product folders
    I want to point InDesign to the new server and have it pick up the file path without having to navigate to each and every file individually. Voila!
    Is this even possible? Is there any 3rd party software to help? Other architechture solutions that might be suggested?
    Thanks so much for the help!
    Alex

    I wrote several scripts to solve this problem, here is one of them.
    // Change paths of links.jsx
    // Script for InDesign CS3 and CS4 -- changes the path of each link in the active document.
    // Version 1.0
    // May 13 2010
    // Written by Kasyan Servetsky
    // http://www.kasyan.ho.com.ua
    // e-mail: [email protected]
    var gScriptName = "Change paths of links";
    var gScriptVer = 1;
    var gOsIsMac = (File.fs == "Macintosh") ? true : false;
    var gSet = GetSettings();
    if (app.documents.length == 0) {
         ErrorExit("No open document. Please open a document and try again.", true);
    var gDoc = app.activeDocument;
    var gLinks = gDoc.links;
    var gCounter = 0;
    if (gLinks.length == 0) {
         ErrorExit("This document doesn't contain any links.", true);
    CreateDialog();
    //======================= FUNCTIONS =============================
    function CreateDialog() {
         var dialog = new Window("dialog", gScriptName);
         dialog.orientation = "column";
         dialog.alignChildren = "fill";
         var panel = dialog.add("panel", undefined, "Settings");
         panel.orientation = "column";
         panel.alignChildren = "right";
         var group1 = panel.add("group");
         group1.orientation = "row";
         var findWhatStTxt = group1.add("statictext", undefined, "Find what:");
         var findWhatEdTxt = group1.add("edittext", undefined, gSet.findWhatEdTxt);
         findWhatEdTxt.minimumSize.width = 300;
         var group2 = panel.add("group");
         group2.orientation = "row";
         var changeToStTxt = group2.add("statictext", undefined, "Change to:");
         var changeToEdTxt = group2.add("edittext", undefined, gSet.changeToEdTxt);
         changeToEdTxt.minimumSize.width = 300;
         var btnGroup = dialog.add("group");
         btnGroup.orientation = "row";
         btnGroup.alignment = "center";
         var okBtn = btnGroup.add("button", undefined, "Ok");
         var cancelBtn = btnGroup.add("button", undefined, "Cancel");
         var showDialog = dialog.show();
         if (showDialog== 1) {
              gSet.findWhatEdTxt = findWhatEdTxt.text;
              gSet.changeToEdTxt = changeToEdTxt.text;
              app.insertLabel("Kas_" + gScriptName + "_ver_" + gScriptVer, gSet.toSource());
              Main();
    function Main() {
         WriteToFile("\r--------------------- Script started -- " + GetDate() + " ---------------------\n");
         for (var i = gLinks.length-1; i >= 0 ; i--) {
              var currentLink = gLinks[i];
              var oldPath = currentLink.filePath;
              oldPath = oldPath.replace(/:|\\/g, "\/");
              oldPath = oldPath.toLowerCase();
              gSet.findWhatEdTxt = gSet.findWhatEdTxt.replace(/:|\\/g, "\/");
              gSet.changeToEdTxt = gSet.changeToEdTxt.replace(/:|\\/g, "\/");
              gSet.findWhatEdTxt = gSet.findWhatEdTxt.replace(/([A-Z])(\/\/)/i, "/$1/");
              gSet.changeToEdTxt = gSet.changeToEdTxt.replace(/([A-Z])(\/\/)/i, "/$1/");
              gSet.findWhatEdTxt = gSet.findWhatEdTxt.toLowerCase();
              gSet.changeToEdTxt = gSet.changeToEdTxt.toLowerCase();
              if (File.fs == "Windows") oldPath = oldPath.replace(/([A-Z])(\/\/)/i, "/$1/");
              var newPath = oldPath.replace(gSet.findWhatEdTxt, gSet.changeToEdTxt);
              if (File.fs == "Windows") {
                   newPath = newPath.replace(/([A-Z])(\/\/)/, "/$1/");
              else if (File.fs == "Macintosh") {
                   newPath = "/Volumes/" + newPath;
              var newFile = new File(newPath);
              if (newFile.exists) {
                   currentLink.relink(newFile);
                   gCounter++;
                   WriteToFile("Relinked \"" + newPath + "\"\n");
              else {
                   WriteToFile("Can't relink \"" + newPath + "\" because the file doesn't exist\n");
         WriteToFile("\r--------------------- Script finished -- " + GetDate() + " ---------------------\r\r");
         if (gCounter == 1) {
              alert("One file has been relinked.", "Finished");
         else if  (gCounter > 1) {
              alert(gCounter + " files have been relinked.", "Finished");
         else {
              alert("Nothing has been relinked.", "Finished");
    function GetSettings() {
         var settings = eval(app.extractLabel("Kas_" + gScriptName + "_ver_" + gScriptVer));
         if (settings == undefined) {
              if (gOsIsMac) {
                   settings = { findWhatEdTxt:"//ServerName/ShareName/FolderName", changeToEdTxt:"ShareName:FolderName" };
              else {
                   settings = { findWhatEdTxt:"ShareName:FolderName", changeToEdTxt:"//ServerName/ShareName/FolderName" };
         return settings;
    function ErrorExit(myMessage, myIcon) {
         alert(myMessage, gScriptName, myIcon);
         exit();
    function WriteToFile(myText) {
         var myFile = new File("~/Desktop/" + gScriptName + ".txt");
         if ( myFile.exists ) {
              myFile.open("e");
              myFile.seek(0, 2);
         else {
              myFile.open("w");
         myFile.write(myText);
         myFile.close();
    function GetDate() {
         var myDate = new Date();
         if ((myDate.getYear() - 100) < 10) {
              var myYear = "0" + new String((myDate.getYear() - 100));
         } else {
              var myYear = new String ((myDate.getYear() - 100));
         var myDateString = (myDate.getMonth() + 1) + "/" + myDate.getDate() + "/" + myYear + " " + myDate.getHours() + ":" + myDate.getMinutes() + ":" + myDate.getSeconds();
         return myDateString;
    You can specify a platform-specific path name, or a path in a  platform-independent format known as universal resource identifier (URI)  notation, or Mac OS 9 path name (for Mac).
    For example any of the following notations are valid:
    Windows
    c:\dir\file (Windows path name)
    /c/dir/file (URI path name)
    //10.44.54.70/Test/images (uniform naming convention (UNC) path name of the form //servername/sharename)
    //Apple/Test/images
    \\10.44.54.70\Test\images (Windows path name)
    \\Apple\Test\images (Windows path name)
    where 10.44.54.70 IP  address of the server, Apple -- DNS name of the server, Test -- share name
    Mac
    The following examples assume that the startup volume is MacOSX, and that there is a mounted volume Remote.
    /dir/file (Mac OS X path name)
    /MacOSX/dir/file (URI path name)
    MacOSX:dir:file (Mac OS 9 path name)
    /Remote/dir/file (URI path name)
    Remote:dir:file (Mac OS 9 path name)
    Remote/dir/file (Mac OS X path name)
    You can just copy a part of the path in Links panel and paste it to the script's dialog. In CS4, make sure to choose "Copy Platform Style Path" in context menu.
    The case of the characters doesn’t matter: you can type both in upper and lowercase in the script's dialog. For example  — Test, test, TEST, TeSt — are all the same for the script.
    Regards,
    Kasyan

  • Acrobat 9 pdf links not working from InDesign CS3. What is wrong?

    My links are working in my 40 page Indesign CS3 file using Mac. After I convert to a .pdf, some of the links are no longer going to the right location. They have either duplicated other links, or trying to take me incorrectly to my desktop or network. Can't figure out what is wrong.

    Links meant to  go to an outside website are supposed to be filled out in the following format : http://www.phillipmjones.net
    in Acrobat should look something like :  This is my personal website
    In Acrobat go go create you link then click on action:
    (I'm using my own personal website as an example)
    If you choose something else such as open a file then that is what it does.

  • PDF file linking on a CD (Acrobat Pro / InDesign CS3)

    Weve put 9 pdf documents on a CD (made in Mac InDesign CS3) for a client. The original plan was to hyperlink them together using icons (representing the other pdfs) that appear on each page of each document. Unfortanately were on to plan B as InDesign pdf links stop working once you copy them onto the CD.
    Is there a way to globally or automatically to apply hyperlink hotspots in Acrobat Pro? While I know I can make links that work on a CD in Acrobat Pro -- the best I could do in this case was pasting and repositioning link hot spots by hand on every page - and that was just one document.
    Any suggestions?
    Phil

    Will the Interactive PDF, along with the Word doc be written to the CD? And your hopes are the user will insert CD, open PDF, click link in PDF which opens Doc in Microsoft Word? You can accomplish this in many ways, but a few questions first...
    1. Does the content need to remain as a Word Document?
    2. Does the Word doc need to reside on CD?
    3. Are you using Mac or PC?

  • How do I update my InDesign CS3 plugins? I received a document from a colleague created in CS3 and I can't open it due to missing plugins.

    How do I update my InDesign CS3 plugins? I received a document from a colleague created in CS3 and I can't open it due to missing plugins.

    The error message is below. When I get info on the file it says it's a CS3 file.

  • [CS4 WinXP] InDesign crashes on opening docs with missing links

    Hi,
    I expect this issue is more to do with the PC than InDesign itself but I would be interested to know if anyone else has seen a similar problem (and been able to resolve it).
    The design team in my office have just been given new HP Compaq PCs with CS4 (inc. InDesign 6.0.4). When these designers attempt to open certain InDesign documents, their InDesign will crash with no warnings or dialogues. The same documents can be opened on other (older) PCs without crashing.
    The documents which crash all contain links to graphics on a network which is not available. The same document will open on older PCs but will obviously report missing links. The network is not available to the older PCs either. The older PCs are also running InDesign CS4 (6.0.4).
    If the failing documents are opened on older PCs and the links removed, these can then be opened on the new PCs with no issues.
    As I said, I expect this is a PC/Networking issue rather than InDesign itself but any help would be appreciated.
    Thanks
    Simon Kemp

    Try changing the preferences regarding checking links on open, and also using a workspace that doesn't include the links panel or preflight. That might be enough to get the files to open, and exporting to .idml or .inx and resaving might solve th problem (for that matter, it wouldn't hurt to export one from the older machine and see if that will open).

  • InDesign CS4 Package/Collect for Output - Missing links problem

    I posted this on the PC forum by mistake so I apologise for doubling up on the message for those who have found the same message twice. As far as I know this is a Mac only problem!
    Having recently freelanced in 3 design studios since the CS4 release, the Collect for Output problem within InDesign seems to be widespread. I've seen this happen on a range of machines from a G5's to laptops. All have been running the latest version of Leopard.
    For some unknown reason any document created in older versions of Indesign that is opened in IndDesign CS4 does not collect all the linked files when it's packaged. All preflight checks are fine, the new live preflight feature shows green light, I even tried re linking all files to a new source folder containing all links and it still only randomly collects one third of the needed linked files with no obvious pattern emerging between the files omitted, i.e clipping paths, colour profiles, file types.
    The worst thing is that it happens randomly on documents created fresh in InDesign CS4 as well so I'm having trouble trying to pinpoint where the problem stems from.
    This is driving people crazy, and I can see that it's going to be a major pain for numerous design agencies. I hope Adobe sorts this out quick or it's back to CS3 for most of us who charge for our time. I guess I can always send Adobe the bill for the time spent manually collecting all files for a job!!
    Please no obvious suggestions on preflight settings as it's happening to people with twenty plus experience in the business.
    Thanks for reading the post.

    Hi JAD the mad,
    we have the same problem on our machines here at work regarding the randomness of the Indesign CS4 package function collecting links.
    The office has recently upgraded to all new Power Mac G5's with Mac OS X Version 10.5.6. 2x2.8Ghz 4GB RAM, a new server and all new Adobe CS4 packages.
    Another user on the forum also has the same problem he said:
    nguyen khanh duy - 7:40am Nov 23, 08 PST (#31 of 67)
    I have a problems with my document created with Adobe Indesign CS4.
    I can not package the file with its links into a folder. Sometimes a few files are collected, but when I convert all the images into CMYK color space, none of them were collected.
    My documents contains 70 links and 140 pages.
    So when I need to collect links, I convert the document into CS3 INX file and use Indesign CS3 to collect the links.
    I've tried with other document with hundreds of links and all or them are 100 pages. All the links were collected. (offcourse with CS4)
    Please help me. Thank you very much
    As for our specific problem,
    We have files which do not package all the links properly. Indesign only packages a random amount of the links into the new folder. There seems to be no consistency with regard to file type, size, colour profile or location. The pre-flight shows a green light and this error seems to occur randomly. It is very annoying if we are working on the local hard drive and have links there and on the server and then want to package everything to upload to the server or to work on another computer. We have to find all the links and copy them individually to a new folder.
    Saving as with a new file name does not help. Also copying all links to a new folder from the links pallet does not copy all the links. The error is disconcerting due to it's seemingly random occurrence. We have tried all the simple solutions and it seems very much like a bug in the software.
    Does anyone else share this problem? It would be great to hear any suggestions or similar stories.
    Regards
    Steve

  • InDesign Cs4 Missing Links

    SO i have been reading around this discussion forum and havent quite found the answer im looking for.
    I am not very familiar with InDesign. Ultimatly someone made a webpage for us and i want to be able to transfer it over to Dreamweaver..which i am very familiar with.
    I have the file already designed. All files are on the local machine.
    WHen i open the file up, this is the error message i get:
    This Document contains 19 missing links to sources that are missing. You Can find or relink the missing links using the links panel.
    My question is this:
    1) is there a way to identify which links are missing?
    2) where is the links panel on the menu bar?
    Thanks for your help and Patience.
    I will admit, i am very much a amature with InDesign

    The names of the missing links will be listed in the links panel, which you'll find by Window > Links.
    If you really do have the files, you'll have to select them in the links panel and relink, directing ID to the correct location.

  • Broken link to download Indesign CS3 - can anyone help me download it?

    I had my Mac reset, but it won't accept the backup file I made of Indesign CS3. I looked online and tried to download Indesign CS3 from these two links, but keep getting this error message:
    Download CS3 products
    http://www.adobe.com/uk/downloads/other-downloads.html
    HTTP ERROR: 404 /support/downloads/dlm/main.jsp
    RequestURI=/support/downloads/dlm/main.jsp
    Indesign was working fine before and Bridge still works fine now. Any ideas?
    Thanks
    Emma

    Make sure you have cookies enabled.  If it continues to fail try using a different browser.
    An option for direct downloads is provided below...
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    CS3 and CS4: http://prodesigntools.com/download-adobe-cs4-and-cs3-free-trials-here.html

  • My indesign won't open 3 missing links

    I've been opening an file that was created before and it had some missing links, about 16. I tried to relink them and it worked out without any problems, except for 3 files.
    When i try to relink these files (they are jpg. and 1 pdf file) Indesign gives me the following error:
    Either the file does not exist, you do not have permission,or the file may be in use by another application.
    I checked and it's not open somewhere else, the file exists and i checked the permission settings which seemed okay...
    Also tried to resave the files under a different name, placed them on my desktop, made a copy. nothing worked.
    If someone know a solution I would be very grateful!

    Hi
    Try these options
    1. Check if the file is present in the current location.
    2. Relink the image and PDF file by selecting  (Windows-->links panel)  relink icon in the links panel.
                                            or
        Rename the link files and try to relink it again.
    Thanks
    Digiscape Gallery
    www.digiscapegallery.com

  • Missing fonts - InDesign CS3

    I've read all I could find about mssing fonts, but continue to have problems with opening InDesign files and receiving a message about a missing font(Arial Narrow).
    Indesign CS3 v5.04
    Two users(Administrator & a user(who has Local Administrator rights)  have no problem with missing font when opening the same file.
    Two different users(who both have Local Administrator rights) receive the message about missing font when opening the same file.
    The PC has the font loaded in Windows,
    I have copied Arial Narrow into Adobe\Indesign\Fonts directory
    I have deleted all Adobe*.lst files
    After the Adobe*.lst file is recreated the lst file has the specifics for Arial Narrow in the lst file.
    Not sure what to try next

    I didn't understand from the original message that the users were all working on the same PC. That would point away from the font problem, I think, and maybe toward a preferences corruption, though I couldn't say for sure.
    Certainly I think trying the patch would be good, and yes, there may be Adobefnt*.lst files in each user profile that should be deleted (maybe that's all that's wrong). Otherwise, replacing preferences for the affected users might be in order.
    On the same machine, assuming there is no problem about inidividual user customizations you don't want to share, you can copy the profile data from one user to another without problem, or you can rebuild each bad set from scratch. See this page for instructions (scroll down) and be sure to read the comments.Adobe InDesign CS4 * Setting preferences

Maybe you are looking for

  • How to deal with duplicate packages in AUR?

    What is the best way to report a duplicate package (often one version is orphaned and another has a maintainer... but both are still the same package) so that one (if one is orphaned, probably the orphaned one) can be deleted? Would I want to contact

  • Oracle EPM 11 installation issue.

    Hi All I m installing the new hyperion EPM 11.1.1.2 on a windows 2003 server which is running on Parallels desktop on a Macbook pro. I have installed MS Sql Server 2000 sp3, weblogic 9.2.3 , MS IIS 6.0, jre 1.50_12 as per the installation checlist do

  • User ids for customers

    Hi, I have a scenario in which I will be developing a web dynpro application where the Customers and Vendors will login and update the information regarding our orders. Now I donu2019t want that the customers or vendors accesses each other informatio

  • Unclosed character class near index 0

    Hi foks, I am tryin to remove few characters from a string with the help of replaceAll ( String, String ) method. But at the first replacement itself it gives error "Unclosed character class near index 0". what does this error mean? I dont have any '

  • ODI Date Variable

    Hello everyone, I am trying to use a variable in my package (ODI 12c). The variable type should be 'Date'. It takes the date a few months ago from the sysdate. I created my variable, my mapping and my package. However, it always give the mapping stag