Broken Links after upgrade

Hi, after upgrading to the latest muse, adding a page and a few scrolling effects, 2 items on the menu no longer work for some reason. Both menu items have drop down menus, 'Portfolio' and 'contact', I have published the changes thinking that maybe they would do as they should, but did not work. The site is www.meamdesign.com.au Thanks for any help
I have been checking and double checking, moved the new page from the dropdown, this is now viewable, and the link within to the contact page works okay. Everything looks okay (see the screen shot)
I guess the question is, is there a bug int the upgrade?

Hi,
The container frame of the yellow scrolling image on the right is covering half of the menu. If you noticed, half of the "Invitation" menu item is un-clickable as well.
Regards,
Aish

Similar Messages

  • 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

  • [SOLVED] Broken setup after upgrading to 2.6.29

    I am running a x86_64 system.
    I have been running kernel26-2.6.28.7-2 for a while now. Upgrade to kernel26-2.6.28.8-1 caused some problem for me so I installed the older version from /var/cache/pacman/pkg/. After upgrading day before yesterday to 2.6.29.1, I can boot and login to the system but pretty much nothing works. The obvious problem that I can find out is that everyting is trying to load modules from 2.6.28-ARCH. After logging in even 'uname -r' reports 2.6.28-ARCH. I do have the /lib/modules/2.6.29-ARCH folder with all the modules.
    Any help will be much appreciated. I can provide further information if required. Thank you.
    Last edited by partha (2009-04-20 03:13:17)

    I was able to solve it. The problem was I was using grub installed from Ubuntu. So, there was some problem loading the kernel. Installing grub from arch fixed it. Thanks.

  • All files in 70gb+ library have broken link after 7.3 upgrade. oh man.

    I was fine and dandy with 7.2 running on my MBP. Life was good. I upgraded to OS 10.4.10 and iTunes 7.3 on the same day to get it talkin' nice with my iPhone and then BAM!! -- all of the tracks in iTunes were stricken with the hideous ! enclosed in a heinous circle of death. oh man oh man. All of them, too. I can't find a single track that works.
    My iTunes Library file is on my MBP but my music is on an external drive (and has been happily for a couple of years). I've been waiting for a fix from Apple but no dice. I'm itchin' like crazy here. What can I do (about my iTunes library, not the itching)?
    Sincerely,
    Desperate for Conway Twitty to ring proudly through my house once again.
    MBP 2.33 GHz, 2 gig RAM Mac OS X (10.4.10)
    MBP 2.33 GHz, 2 gig RAM Mac OS X (10.4.10)

    Seems to me I asked the same question a little earlier, as my files are in my laptop but on a partition that doesn't have the OS.
    I did what Niel suggested, maybe I'm not getting something but in /Volumes/ folder I could see both my drives/partitions aliases, nothing else. ??
    macbook intel 2,16 GHZ core 2 duo   Mac OS X (10.4.9)  

  • Broken links after uploading web site to server

    We created our office's web site using Dreamweaver CS4, and uploaded it to the server of our ISP.  Prior to uploading, we tested the site in both IE7 and Firefox, and everything worked fine.  After uploading, however, all images are lost and several of our links are broken.  Any suggestions on where to start looking and how to fix are very appreciated.

    Your code is whacked. Your page can't find the Spry files. Your code is like this:
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />
    That dot-dot part (../) means the page needs to back up to the parent folder, then enter the SpryAssets folder. Same for your images and links:
    <h1><a href="../Images/larger-logo.jpg"><img src="../Images/larger-logo.jpg" alt="logo" width="300" height="150" border="0" align="left" /></a></h1>
    Looks like you used a Dreamweaver template and somehow your links/references got messed up. It has nothing to do with uploading to a server. The problem is most likely caused by [a] Dreamweaver site not properly configured, or [b] improper use of a Dreamweaver template. You'll need to either manually fix all the bad code or try to recreate a page based on the template - or even recreate the template.
    First thing first - you need to understand the problem. Do you understand - looking at your code - what the problem is? Why those ../ are breaking things? Do you understand the concept of paths? You need to understand that before you can understand how to fix this.

  • Video and audio not linked after upgrade to cc

    I recently upgraded from 5.5 to CC. Every project that I know open, the video and audio are no longer linked. I right click and enabled is checked. It's a huge pain when editing!!
    Another starnge thing, after I reopen a project I'll notice that the audio tracks duplicated themselves??

    You're welcome.
    http://blogs.adobe.com/kevinmonahan/2013/09/11/marking-posts-as-correct-or-helpful-on-the- adobe-forums/

  • Keywords linked after upgrade LR4 to LR5

    I had a set of photos from a trip, and during working on them, upgraded from LR4 to LR5.  Photos are in folders by date i.e. 8/14/2013 etc.  Half the photos in one folder and all the photos in another folder are keyword linked.  If I change any of the photo's keywords, it changes all to the same keywords, erasing what is there in both folders.  When the program installed, it put the catalog in a temporary folder.  I caught it and changed to the correct folder.  The photos that I am having a problem with were involved with the temporary location.  How do I get rid of this problem.  The remaining 1500 photos are fine, but this is a problem for a couple hundred photos!  Thanks in advance.  Bob

    Buy the perpetually licensed LR5 upgrade: Products

  • IMovie projects have broken link after I moved file on external hard drive

    I have all my iMovie projects on an external hard drive, and it was working fine...until I accidentally broke the links by going into my external hard drive, creating a folder I named "Videos," and dumping the "iMovie Project" folder and the "iMovie Events" folder (which iMovie automatically created for me) into my new folder. I was just trying to consolidate everything into one folder, but that messed everything up. Once I realized what I had done, it would not let me press undo. Then I dragged the iMovie Project folder and the iMovie Events folder back onto the main part where they originally were, and that did not fix it.
    Does anyone have any tips on getting my links back? I'd be so appreciative!! I have almost 200 projects of my kids that I can't access now. I have iMovie '11. Thanks so much.

    The iMovie projects and iMovie Events folders have to be at the root (top) level of the drive they are on (or at the top level of  the User/Movies folder), otherwise iMovie 9 won't see them.
    As long as you have not changed the contents of these folders, if you put them back at a root location they should automatically appear in iMovie. 
    Geoff.

  • Links in Word no longer opening Adobe after upgrade

    Word unable to open abobe files from links after upgrade.
    This issue has occurred before because I have seen it several times
    in the corporate environments. Something to do with version 5
    upgrading to version 7 that breaks the ability to open adobe links
    in word and I believe other MS applications. Actually I think it
    has an issue opening just a saved adobe file form the desktop.
    Was wondering if there is a fix for these issues.

    I think perhaps you are in the wrong forum.
    This is the General Discussion group for Adobe's RoboHelp
    product. It sounds like your problem is with Acrobat which has its
    own forum.

  • Removed Movie from .Mac Web Gallery But Broken Link Remains?

    I published a movie to my Web Gallery successfully. I then tried to republish but got two movies in the Gallery. One movie worked and the other was a broken link. I removed the movie from .Mac using Share>Remove From .Mac, and the working movie was removed. But I am still left with a broken link in the Movies section of my Web Gallery. How can I remove this broken link?
    I checked my iDisk and found \Web\Sites\_gallery, but I can't find the index file for the gallery (only folders for the albums).
    Thanks, Will

    I'm having the same problem (broken links after a republish) -- and a few others:
    1) After about the first time, I have been unable to remove a movie from the gallery. I just get a connection error. I'm able to add movies (somehow the connection magically works) but removing fails most of the time.
    2) When adding a movie, for some reason, the title of the movie ends up replacing the "My Gallery" title for my entire web gallery. On the web gallery home page (over my photo albums and videos) it shows the title of the first video.

  • Orphaned files - broken links - URGENT

    Hi everyone
    I am currently going through and deleting 675 orphaned files
    and files that are old although if they create a broken link after
    deletion this will not show when I re run the link checker even
    though I know they are. Does anyone know why this is? I can't keep
    deleting things if it is going to create a broken link within the
    site. Also, is there any way of finding out where an individual
    document is located on the site if at all?
    Second issue is that orphaned files that I have deleted in
    both the local site and remote site are still coming up when I do
    the link check. Why is this so and how can I get them removed from
    the orphaned files list?
    Please help
    Merry

    many of the people offering answers use the NNTP newsgroup
    reader version.
    the webforum has been flaky lately i think.
    Here's my reply from a while ago-
    after deleting files- recreate the site cache.
    It's under the site menu on older versions, under
    site-->advanced on newer.
    dw's link checker checks html links, and links in "behaviors"
    that it
    understands.
    it will not check links in most javascript.
    What's an example of a broken link that dw didn't warn of
    when deleting the
    reported orphan? �url address to the page??
    and here are links to a google archive of the newsgroup.
    http://groups.google.com/group/macromedia.dreamweaver/search?group=macromedi
    a.dreamweaver&q=Orphaned+files+-+broken+links+-+URGENT&qt_g=1&searchnow=Sear
    ch+this+group
    http://groups.google.com/group/macromedia.dreamweaver/browse_frm/thread/3b1c
    2e1950cbb577/9ed3b0a716f876c5?lnk=gst&q=Orphaned+files+-+broken+links+-+URGE
    NT&rnum=1#9ed3b0a716f876c5
    > Hi Murray
    >
    > It's just that it says there are 9 posts regarding my
    original question
    > although when I open it up they don't show.
    >
    > Merry :)

  • Problem with internal links created in iweb 06 after upgrading to iweb 08

    I have a site I created in iweb 06 and have uploaded to my own server (not .mac). After switching to iweb 08, I have found that any blog entry that has a title with punctuation of any kind results in a broken link (404 page not found error). I am using fetch to upload the site, and am wondering if in need to change some fetch setting or preference. iweb 08 seems to use the blog entry title as the link, and it just won't work if there is any punctuation in the title. Everything uploaded perfectly in iweb 06. Is this a glitch in iweb 08 or am I doing something wrong. Thanks for any advice you can give. I have not upgraded to OS 10.5. (If you want to look at the site it's www.doylelogan.com/dlctravel)

    All your links are live except the one you mentioned.
    I don't understand what behavior you expect from the links. Your rollover color is very close to the normal and visited one. If you made it contrast more, the link would be more obvious.
    I don't like to underline links but maybe you need to do this if you feel that they are not obvious enough.
    Undo and redo the link that is not working.
    It may be that iWeb needs a jolt. Try the troubleshooting steps under "Fix iWeb" here....
    http://www.iwebformusicians.com/WebMusic/iWebTips.html
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.
    <Edited by Host>

  • USB Share broken after upgrade to Firmware 1.05.36

    Hi, Problem after upgrade to Firmware 1.05.36.  When connecting USB disk there no share created for the newly connected disk. The result is: Broken functionality backup to USB diskBroken functionality restore from USB disk It worked OK before thefirmware upgrade (I have been using this a lot). I have checked through ssh login: the disk mounts ok. Please fix!!

    Yes, that's exactly what I mean - the shares that are automatically created when you insert the drive (ie the functionality you seem to have lost). There's no setting to enable/disable that, at least that I know of. It should just always automatically do it. The shares themselves are just links in the /shares folder, to the relevant mount folder if what I can see on my MCM via SSH is what I think it is. You may be able to manually make the links yourself via the command prompt as a work-around. Please note that I haven't tried this myself, as my one works. But what I would do is try and install the firmware image again over the top of your current one. You can download it manually from this page and then install it via the dashboard using Settings > Firmware Update > Manual Update. There should be a button there that you press and point it to the firmware image file you downloaded and stored on your local machine. If the button isn't there, try a different browser (I find on my Windows machine it doesn't appear under Chrome, I have to use IE for that job).

  • After Upgrading to iOS 8.1 text images are broken

    After upgrading to iOS  8.1 my pictures within the text I sent prior to upgrading are showing as broken links.  I can see pictures that were sent after upgrading just fine but the ones seen before upgrading are broken as can be seen in the attached images. 

    hey guys, it's same with me.. idk what's is wrong with it.. my battery only provide for 5 hours from full until its dead.. i tried to minimize all application and turn off everything likes location service. etc but its still not working,, please fix this Apple idk how to using my iphone 4s again, it's *****

  • Clicking PDF links within a PDF no longer working after upgrade.

    After upgrading Adobe Reader to version 11.0.10, I can no longer click and open links to pdf documents that are within a pdf.  These files are password protected, but I don't even get the prompt to put in my password, I try to click a pdf link, and nothing.  There must have been some type of additional security/protection added in this version of Adobe Reader because I was able to open the same links in the earlier version of 11.  Can anyone offer any suggestions?
    Thank you.
    Ellen

    Hi Prabhakar,
    we have an open call on this issue. SAP replied on the 10th of March:
    "As this DTN issue isn't reproducable on our SP15 system, please upgrade your KM version to PL1, as per NOTE 911395(same as our test system). If for some reason the issue still exists after this upgrade I will further this issue with our Dev colleagues."
    I read the note mentioned (which contains a list of the changes in PL1) and it says nothing about this issue in particular, if I'm not mistaken. Our system is on SP15 (not SP15 PL1), so we'll have to upgrade to PL1 first before we can investigate this any further. I currently don't know when this update is scheduled by our systems engineering department.
    Is your system on PL1 by any chance? If so, then the problem has not been fixed in PL1 - which would be interesting for us to know.
    Thanks,
    Jens

Maybe you are looking for

  • File adapter: Variables in OS command

    Hi All, Is it possible to put variable (from variable substitution) into OS command line? I need to create a specific filename, that issues from its payload. But substitution doesn't work - filename appears with percentage symbols and var names. Than

  • Mail keeps retrieving old messages

    I was wondering if there is a way to set up mail where it stops getting old messages. I am trying to clear up my mailbox but every time I do it retrieves old messages from the server and then I have to clear those out. In addition, the old messages t

  • Scanning interface with epaon printer

    I have a WF-7520 & WF-4530 & WF-3640 All-in-One Printers. I had been using the WF-4530 for scanning using Adobe Acrobat X, version 10.1.12. The combination of Adobe and WF-4530 worked perfectly for several years. Then the WF-4530 started profusely le

  • Keynote '06 questions

    Is there a way to add a timeline chart to a slide? Also, is there a way to loop build in/build out effects on a slide?

  • How to edit "Single Row View" in Interactive Reports?

    Hi, When using Interactive Report when one clicks on the little page icon on the left on a gievn row - one is presented with a small output from all columns for that row. For example login as demo/demo to: http://apex.oracle.com/pls/apex/f?p=12988:1