Alert: Broken Links on BI website

On http://www.oracle.com/technetwork/topics/bi/articles/index.html, every link to every document is broken.

Ya they are broken not working properly.......I gave you reply for the other post follow it you get to what you are looking for.

Similar Messages

  • Lots of broken links on Sun Website.

    Hi All,
    I am exploring java API and came across that there are lots of broken link on sun website . when ever i wanted to she the details about the class through google search the first link itself is broken for most of the class.I also tried to goto the sun website and navigate to the API documentation I was shocked to see that they all are broken.Sorry to post this here as there is no webmaster on sun website .Below are few of the links for your referance.
    http://java.sun.com/reference/docs/
    http://java.sun.com/reference/api/index.html

    Hi I just downloader firefox , This is what I gpt when I tried to view those links.
    The server at java.sun.com is taking too long to respond.
        *   The site could be temporarily unavailable or too busy. Try again in a few
              moments.
        *   If you are unable to load any pages, check your computer's network
              connection.
        *   If your computer or network is protected by a firewall or proxy, make sure
              that Firefox is permitted to access the Web.I think now there is no fault of IE& it is cool,I also find it strange how Mr.Djaunl can view those page .

  • Finding broken link in url

    Hi, 
    i would like to generate a report to identify broken links in a page or list pages under a website in CQ5 server. how can we generate this?
    pleas help me.
    Raja R

    http://dev.day.com/docs/en/cq/current/administering/external_link_checker.html

  • 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

  • Link checker does not seem to see some broken links-why?

    Hi,
    I have a problem with the link checker, it does not seem to report some broken links. Here is the context in which it happens.
    My site root folder contains (subset) :
    index.php
    Templates/child_userarea.dwt
    user-area/downloads.html
    (The file downloads.html is based on child_userarea.dwt.)
    In the template, I have <a href="../../index.php" title="Home page">Home</a>.
    In downloads.html, this link appears as <a href="file:///M|/Website/index.php" title="Home page">Home</a>.
    According to this post http://forums.adobe.com/message/934203#934203 by Murray, this is because Dreamweaver (CS4 in my case) thinks that index.php is outside the site root folder. I understand it thinks so because indeed ../../index.php points to the folder parent of the root folder. What I don't get is why doesn't the link checker report that ../../index.php does not exist? (And I'm sure it doesn't, there is no file called index.php outside the root folder.)
    Emilie

    That's the thing, it is correct! I have checked many times. Here is what is says:
    and M:\Website\CERC15\ does exist.
    For the time being, I have corrected the paths in the template, so for that particular file, it is now ok. However, I have no idea whether other paths are wrong since I am not sure any longer whether they are spotted by the link checker. I searched for other instances of file:///M|/Website and there is none left.
    I suspect this is just one more problem due to another problem non-identified so far (see e.g.http://forums.adobe.com/thread/506149?tstart=30). Since I renamed a big batch of files, I have had problems after problems: the templates disappearing (see that other post); I also lost all the files in 4 other folders (files for download linked to the pages through <a> tags); and Dreamweaver has become particularly slow (but this seems to have been fixed with erasing the cache and the personal preferences).
    I'd like to start from scratch again (and why not reinstall Dreamweaver), but I don't know how to recreate the site from zero without loosing anything (e.g. links to templates).

  • Broken links report generator doesn't work

    I found a website that didn't work with Firefox 3.6.15. I selected the Report broken website menu item. Typed in the problem description and clicked the Submit button. The popup broken link report continues to show 'sending report' with an in progress bar for the last 10 minutes! Apparently report sw cannot contact Firefox server to send report.

    Mozilla Website Evangelism has ended, the '''Report Broken Website...''' function is gone in 4.0 & later versions, and the server was shutdown in December - which is the problem you are experiencing. You can use the Submit Feedback... feature in the Help menu in 4.0 & later, but if the report is about a website that doesn't work properly in Firefox, Mozilla isn't going to contact the website and encourage them to fix their issues.

  • Reporting broken links

    Is there a quick and easy mechanism to report broken links? A documentation link form help.sap.com doesn't work:
    http://help.sap.com/businessobject/product_guides/PftPF/en/pf_usersguide_780c.pdf
    Maybe I'm blind, but I just can't seem to find a "report a dead link" type of thing.

    Hello Mark,
    That website doesn't have any feedback mechanism I am aware of. Just a thought, but if you post this in the forum category most related to that topic, someone from Product Management in SAP might see it as they read the forums here and the documents posted on the help.sap.com portal are written by people in the Product Management org.
    Best Regards,
    David

  • Broken Links not fixed after being changed-HELP PLEASE!

    I am trying to fix a website I created for a friend. I created it in Dreamweaver CS6 on a Mac. Everything was working on the website, the pitures were showing up and now 2 of the pages arent working. On both pages the spry bar is not working and some of the pictures will not show up. I have went to find broken links and redirected it to the correct file but it is not changing anything. I am not sure how to fix this problem, if anyone has any advice that would be great!! The website is www.serenityatthebeach.com.

    That line read correctly when I looked at it on the broken page colorcutstyle. I copied the code from the page if that would help. I hope this helps.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Stlye Services</title>
    <!-- TemplateEndEditable -->
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <style type="text/css">
    <!--
    @import url("webfonts/Jenna_Sue/stylesheet.css");
    body {
              font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
              background-color: #A9AB36;
              margin: 0;
              padding: 0;
              color: #000;
              background-image: url(background.jpg);
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
              padding: 0;
              margin: 0;
    h1, h2, h3, h4, h5, h6, p {
              margin-top: 0;           /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
              padding-right: 15px;
              padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
              font-family: "Jenna Sue";
              font-size: 50pt;
              text-align: center;
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
              border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
              color: #A9AB36;
              text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
              color: #6E6C64;
              text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
              text-decoration: underline;
    /* ~~ this fixed width container surrounds the other divs ~~ */
    .container {
              width: 960px;
              background-color: #E5E3E4;
              margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
    /* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
    .header {
              background-color: #ADB96E;
    /* ~~ This is the layout information. ~~
    1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    .content {
              padding: 10px 0;
    /* ~~ The footer ~~ */
    .footer {
              padding: 10px 0;
              background-color: #A9AB36;
    /* ~~ miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
              float: right;
              margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
              float: left;
              margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
              clear:both;
              height:0;
              font-size: 1px;
              line-height: 0px;
    .container .content p {
              font-size: 30pt;
    .Headers {
              color: #A8A92B;
    -->
    </style>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    </head>
    <body>
    <div class="container">
      <div class="header"><!-- end .header -->
      <div align="right"><a href="http://www.aveda.com/index.tmpl"><img src="Header1.jpg" alt="Header" name="logo" width="961" height="423" id="logo" /></a></div>
      </div>
      <div class="content">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="index.html">Home</a>      </li>
          <li><a href="colorcutstyle.html">Hair Services </a></li>
          <li><a href="../spapage.html">Spa Services </a>      </li>
          <li><a href="nailpage.html">Nail Services </a></li>
          <li><a href="makeup.html">Make-Up </a></li>
          <li><a href="../aboutus.html">About Us </a></li>
        </ul>
        <h1 class="Headers">Hair Services</h1>
        <p><img src="color.gif" width="792" height="612" alt="hairservice" /></p>
        <h1 class="Headers"><img src="IMG_2397.JPG" alt="salon picture" width="933" height="282" /></h1>
        <p>&quot;+&quot;indicates variations in the price determined by the work involved and the level of talent </p>
        <p align="left">24 hours cancellation notice is required </p>
      </div>
      <div class="footer">
        <p><a href="https://www.facebook.com/SerenityAtTheBeachSalonSpa?fref=ts"><img src="facebook-logo.png" alt="facebook" width="244" height="195" /></a><a href="https://plus.google.com/110271807602578049704/about?gl-us&hl=en"><img src="googleplus.png" alt="google plus" width="194" height="194" /></a><!-- end .footer --></p>
      </div>
      <!-- end .container --></div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>

  • Broken link report broken?

    Hi. I'm using Dreamweaver CS 5.5. I get the same results on Mac or Windows so I don't think this is OS specific.
    When I run "Site>Check links sitewide" I end up with a report that shows around 11,000 broken links on different pages. I am running this report on our development server (we Put files to our live site from the development server) but I'm not sure how that could be a cause. We've got a number of links to external websites that show as broken but when I check them randomly, they are all fine and the outside websites are up and running. It is also showing many internal links to other pages of our site as broken but again, random checks show them all as ok.
    Is there a secret I may be missing to run an accurate link report or is it just there for looks?
    Thanks.

    Thanks for taking a look Murray. Here are some samples (The domain for our page is www.insurance.wa.gov)
    social/index.shtml
    http://www.facebook.com/WSOIC
    social/index.shtml
    http://twitter.com/WAinsuranceblog
    social/index.shtml
    http://access.wa.gov/washington/blogs.aspx
    social/index.shtml
    http://access.wa.gov/washington/facebook.aspx
    social/index.shtml
    http://access.wa.gov/washington/twitter.aspx
    Our page to the left, the broken link to the right of course.

  • Relinking broken links with JSX

    Okay,
    Say I have a series of folders and I have linked art and the files they are linked to all mixed up in these folders. My file structure is as such;
    myFiles\HH01000-01999\HH01000-HH01099\HH001001.PDF
    and now I need to change the file structure to this;
    myFiles\HH\HH01000-01999\HH01000-HH01099\HH001001.PDF
    adding the folder HH breaks the links.
    What is the best way to identify the broken link and change its path with JSX? Anybody got any ideas?

    Thanks Carlos,
    this is how i ended up getting it done.
    function changeLinkedArt () {
        linkedPath = app.activeDocument.placedItems;
        outcome = 0;
    for(i=0; i < linkedPath.length; i++) {
        linkedPathArray = linkedPath[i].file.path.split("/");
        for(j=0; j < linkedPathArray.length; j++) {
            if(linkedPathArray[j] === "HH") {
                outcome = 1;
        if (outcome === 0) {
            fileName = linkedPath[i].file.toString();
            linkedFileArray = fileName.split("/");
            for(k=0; k < linkedFileArray.length; k++) {
                if(linkedFileArray[k] === "illustrations") {
                    linkedFileArray[k] = linkedFileArray[k] + "/HH";
                    NewIndexLine = linkedFileArray.join("/");
                    //alert(NewIndexLine);
                    linkedPath[i].file=File(NewIndexLine);
        outcome = 0;
    modified an adobe script to open all files in a folder and run the script on all of them.
    wanted to build some arrays to change all files in multiple folders but i could not get the ".getFiles( fileType );" to take a path instead of the Folder.selectDialog.
    thats the only thing that bugs me.

  • Broken link in Mozilla but not in Safari

    New Mac User here and I'm hoping someone is willing and able to help me out.
    I've got a PHP based website that I modify from time to time with a Content Management interface. It is professionally important that it comes up clean and reads clean. It is hosted by the web hosting agency that I have my domain name residing.
    I noticed recently that the some images on some pages show up in Safari (I just migrated everything over) but it shows up as a broken link in Mozilla. I just cleared the cache, history and cookies and refreshed the page in Mozilla and no image.
    Is there a good explanation for this?
    I could try this in Explorer on the Mac and I'm wondering if there may also be some difference in terms of how this page shows up on these three browsers in /Windows.
    Is it possible that I need to check six versions 2 OS's and 3 browsers to verify that this page is coming up professionally?

    HI,
    does this sound like total malarkey to you?
    No, not at all. JPG is the commonly used format for images for the web.
    Open an image file in Preview. From the menu bar click File / Save As. Select JPG.
    As an example go here: http://www.google.com/images?hl=en&source=imghp&biw=1277&bih=566&q=flowers&gbv=2 &aq=f&aqi=g10&aql=&oq=&gs_rfai=
    Right or control click any image then click Inspect Element. Type in JPG in the search field on the right, press return or enter on your keyboard. You'll see JPG highlighted.
    Carolyn

  • Broken Links is Broken

    DW CS4 is identifying valid links as broken. Most are links
    that were updated in the last few days and they are part of a
    template. The local site was saved and uploaded to the website. The
    links are OK on both the local site and the website. Is there some
    option or setting that needs to be changed?
    For example line 44 on:
    http://www.ironoakconnection.org/index.html
    is identified as broken. It's in the left navbar and works as
    expected.

    On this beautiful Sunday.................
    Hallelujah! 
    Well!  Is  there a way I can send you some virtual electronic champagne????? 
    I did what you said, changed that code. 
    The new broken link check showed this:
    flyingtigress.co.uk/index.html    Info/
    flyingtigress.co.uk/index.html    Music/
    flyingtigress.co.uk/index.html    Paintings/
    flyingtigress.co.uk/index.html    Photos/
    flyingtigress.co.uk/index.html    Books/ 
    Then I manually changed each link again one at a time, and the code returned
    itself to 
    [Music | Music/index.html]
    [Paintings | Paintings/index]
    [Photos | Photos/indexhtml]
    [Books | Books/index.html]
    BUT and this is the great bit, when it returned itself to that the links were
    NOT broken anymore (allegedly!) 
    I did find using the site checker those pesky two image files causing a fuss
    again, but I manually did those again and again this time I got rid of them too! 
    So.......the upshot of all this is that YOU are a genius, and I am so grateful
    to you.  I just wish I had the knowledge base of someone as expert as you....
    but I will learn from these things and hope to deal with problems one by one,
    but this is a great great victory! 
    I bet you will be so happy that you don't see my email again (well at least for
    a while!)
    Hahahaha!  Seriously thanks so much, I cannot answer the one about the fact that
    the link seems to be checking the remote server, I don't know what all that is
    about either, but it seems to be sorted and that is what really matters! 
    Yipeeeeeeeeeeeeeeeee!  I need to go and record a song to celebrate!  I think
    Lawdy Miss Claudy will remind me of this episode!  Don't ask me why! 
    Many many thanks
    Barb

  • Broken links at Adobe

    Adobe seems to have no place to report broken links at the Adobe website? I just tried to access http://groups.adobe.com/ and got this error message:
    Server Error
    The server encountered an internal error and was unable to complete your request.
    Could not connect to JRun Server.
    Tom Rogers

    Hi,
    this link is *supposed* to be for Flex 4.6 but when you unzip and install it is Flex 4.5. Can this be fixed as i would really like the 4.6 automation plugin instead of 4.5.
    https://www.adobe.com/cfusion/entitlement/index.cfm?e=flex4%5F6%5Fautomation%5Fplugin

  • Phantom broken links in Dreamweaver CS6

    Dreamweaver shows that I have 73 broken links, but they all work in my browser (and other people's browsers).  Why?  How do I get Dreamweaver to recognize that the links are not broken? 
    I am using Adobe Dreamweaver CS 6 on a Windows 7 PC.  The website is www.mathguy.us.  I set it up through GoDaddy.com
    Any thoughts would be appreciated.
    Earl

    Based on your comment, I took a look at the common thread on all of the missed files.  4 of them are PHP issues, like you suggested.  The other 69 links all had ampersands in them.  I suppose this is the issue.  I will try changing the file names to use "and" instead of "&" and see if that helps.  Thank you for your suggestion.
    Update:  This worked.  I can deal with 4 identified broken links due to PHP.  Taking the ampersand out of the file names fixed the rest.  Thank you very much!

  • Linking to Flash Websites

    I am relatively new to dreamweaver and have encountered a
    problem. When I am setting up links to other websites (for example,
    to our city's tourism page), if they have a flash video on them or
    flash buttons on them, those things do not show up. I can still
    navigate around the website, but if I slide the cursor over a
    picture or a button, it brings up a broken link icon. Is there
    anything I can do about this?

    When you are setting up links to other websites? So, you are
    creating a
    page, and on that page is a link to a website that contains a
    Flash
    element? Can you clarify, please?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "AME@CEW" <[email protected]> wrote in
    message
    news:f4bpbt$en$[email protected]..
    >I am relatively new to dreamweaver and have encountered a
    problem. When I
    >am
    > setting up links to other websites (for example, to our
    city's tourism
    > page),
    > if they have a flash video on them or flash buttons on
    them, those things
    > do
    > not show up. I can still navigate around the website,
    but if I slide the
    > cursor over a picture or a button, it brings up a broken
    link icon. Is
    > there
    > anything I can do about this?
    >

Maybe you are looking for