Is the CS4 Link Checker Broken?

The Link Checker in CS4 correctly shows me my broken links.  In the Files tab, I create a new file to fix one of the broken links.  I run the link checker again, and it still reports the file as missing, even though it is now listed in the files tab.
If I exit Dreamweaver, come back in, and run the link checker again, it runs correctly (it doesn't show the link as broken).
Is this a user error or a bug?
Brian

Hi
This is not really a 'bug', it just takes cs4 a while before including your new file into the site cache. To give you some idea of how long, try cut/paste a file from your os's file browser into dreamweaver.
PZ

Similar Messages

  • The documentation links are broken......

    This page contains installation, migration, and upgrade documentation as well as product and component release notes. For information on using Oracle Application Server, refer to the Oracle Application Server documentation library. The library is available on another disk in the Oracle Application Server CD-Pack or on the Oracle Technology Network.
    This is the exactly text in the installations guides after read and install OAS 9.0.4 (the installation release notes would be integrates in the installation docuement...) in a cold failover cluster (I have installed a lot of things and I don't know what heaven they are for... I haven't seen any guide either in the CD or in documentation pages and all the links to administrator or user guides are broken... also would be great any guides about tunning OAS.
    These are so strange things...??? All searchs like 'OracleAS administrator guide' return marketing results and white paper they are absolutly unuseful...
    Well... What i need?? just few things....
    1.- How to start, stop and monitoring OracleAS. scripts and things like these....
    2.- How could I deploy and standar J2EE application in this cluster...
    3.- Everything I have installed following oracleAS 10g application guide what it is for... and what i need to start stop (and how) it works whith minimun requierements...
    4.- I have installed OAS in the same machine where I have Oracle 9i database (It is so strange thing???) how could I start both at the same times whith my two oracle homes after I have renamed the original oracle to oracle.orig following installation guide.... (two listeneres, two oracle homes, how....)
    5.- And where are agents examples for Cold fail over cluster in a sun solaris???
    I have spend 5 days and I still doesn't have anything just the database (which documentation is wonderful) Where could I find documentations so wonderful like you have for databases?? or oracleAS are beta releases???

    All OracleAS 10g 9.0.4 user guides and documentation are available here:
    http://download-west.oracle.com/docs/cd/B10464_04/index.htm
    ...and the links are working just fine for me. Perhaps you experienced a transient network problem....
    Regards, OTN

  • Basic webpage link checker

    Hello all,
    I am attempting to write a basic link checker to parse an html page and determine if any links are dead. I found a couple tutorials online, and am using one of them to test a webpage. However, i am running into multiple problems. The basic link checker verifies links by using the http HEAD request, it then checks the response code and determines from there if the link is dead.
    However, I have two major problems with this:
    1) How can I verify links when they are not using http, for instance a ftp link on a webpage?
    2) Sometimes when I parse link, i am losing the protocol from the link....
    ie. href="http://www.ibm.com/systems/x/=>href="//www.ibm.com/systems/x/"
                 Reader rd = getReader(rootURI);
                  // Parse the HTML.
                  kit.read(rd, doc, 0);
                  // Iterate through the elements
                  // of the HTML document.
                  ElementIterator it = new ElementIterator(doc);
                  javax.swing.text.Element elem;
                  System.out.println("Starting Validation from: " + rootURI);
                  while ((elem = it.next()) != null) {
                    SimpleAttributeSet s = (SimpleAttributeSet)elem.getAttributes().getAttribute(HTML.Tag.A);
                    if (s != null) {
                      System.out.println("attributeSet: " + s);
                      String link = (String)s.getAttribute(HTML.Attribute.HREF);
                      System.out.println("Validating: " + link);
                      validateHref(link);
                    }else{
                      //System.out.println("Attribute set is empty");
                      //flag this to user
                  }This is the block of code i am using to extract the link from the html source. My console output looks like this:
    [stdout]
    attributeSet: href=//www.ibm.com/systems/x/ class=left-nav-overview
    Validating: //www.ibm.com/systems/x/
    [stdout]
    However, looking at the html source, the link should be http protocol....ie. http://www.ibm.com/systems/x , since i later check to make sure that http protocal urls start with "http:", these links that do not have http: at the beginning are being ignored...
    Can someone please help and explain to me how I can fix this? Also, i am eventually planning to turn this into more of a web spider, and traverse levels of pages checking and validating the links.
    Thank you,
    Nick

    heres the full source. Let me know if theres anything else to make my questions more clear. Thanks!
        import java.io.*;
        import java.net.*;
        import javax.swing.text.*;
        import javax.swing.text.html.*;
    public class enhanceLinkCheck {
           static int failCnt = 0;
          public static void main(String[] args) {
              HttpURLConnection.setFollowRedirects(false);
              EditorKit kit = new HTMLEditorKit();
              Document doc = kit.createDefaultDocument();
              // The Document class does not yet
              // handle charset's properly.
              doc.putProperty("IgnoreCharsetDirective",
                Boolean.TRUE);
               try{
                    //String rootURI = "http://www-304.ibm.com/jct01004c/systems/support/supportsite.wss/docdisplay?lndocid=MIGR-65651&brandind=5000008#osa";
                    String rootURI = "http://www-304.ibm.com/jct01004c/systems/support/supportsite.wss/docdisplay?lndocid=MIGR-65665&brandind=5000008";
                  // Create a reader on the HTML content.
                  Reader rd = getReader(rootURI);
                  // Parse the HTML.
                  kit.read(rd, doc, 0);
                  // Iterate through the elements
                  // of the HTML document.
                  ElementIterator it = new ElementIterator(doc);
                  javax.swing.text.Element elem;
                  System.out.println("Starting Validation from: " + rootURI);
                  while ((elem = it.next()) != null) {
                    SimpleAttributeSet s = (SimpleAttributeSet)elem.getAttributes().getAttribute(HTML.Tag.A);
                    if (s != null) {
                      System.out.println("attributeSet: " + s);
                      String link = (String)s.getAttribute(HTML.Attribute.HREF);
                      System.out.println("Validating: " + link);
                      validateHref(link);
                    }else{
                      //System.out.println("Attribute set is empty");
               }catch (Exception e){
                    e.printStackTrace();
               System.out.println("Failed links: " + failCnt);
               System.exit(1);          
          // Returns a reader on the HTML data. If 'uri' begins
          // with "http:", it's treated as a URL; otherwise,
          // it's assumed to be a local filename.
            static Reader getReader(String uri)
              throws IOException {
              if (uri.startsWith("http:")) {     
                // Retrieve from Internet.
                URLConnection conn = new URL(uri).openConnection();
                return new InputStreamReader(conn.getInputStream());
                }else {
                  // Retrieve from file.
                  return new FileReader(uri);
            private static void validateHref(String urlString){
                 if((urlString != null) && (urlString.startsWith("http://"))){
                      try{
                           URL url = new URL(urlString);
                           URLConnection connection = url.openConnection();
                           if(connection instanceof HttpURLConnection){
                                HttpURLConnection httpConnection = (HttpURLConnection)connection;
                                httpConnection.setRequestMethod("HEAD");
                                httpConnection.connect();
                                int response = httpConnection.getResponseCode();
                                if(response >=400){
                                     System.out.print("[FAILED]");
                                     failCnt++;
                                System.out.println("Response: " + response);
                                String location = httpConnection.getHeaderField("Location");
                                if(location != null){
                                     System.out.println("Location: " + location);
                                System.out.println();                            
                           }else {
                                System.out.println("Connection not HTTP: " + connection);
                      }catch (IOException e){
                           e.printStackTrace();
    }

  • Link Checking

    If anyone recalls, there was a little window that opened separately in Adobe GoLive that showed what was linked to what you had selected. My question is does anyone know if there is something similar to that in Dreamweaver? That was really useful because we have a big site. We have accidentally deleted linked things so that is why I am asking.

    Hi
    I believe the dreamweaver link checker is not as good as the go-live one, (only what I have heard).
    But if you select the following: File - Check Page - links, this will open dreamweavers link checker.
    PZ
    www.pziecina.com

  • 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).

  • Dreamweaver 8 - Problematic Broken Link Check

    On a regular basis I use Dreamweaver 8's broken link checker
    to convert
    relative links to absolute throughout single HTML files.
    Once upon a time, I could use the results pane to quickly
    replace all
    of the broken links. Ever since installing Dreamweaver 8
    (upgraded from
    MX) I've had the following problem with the link checker:
    1. It seems to find all of the broken links correctly,
    however, when I
    try to change them into absolute, it doesn't actually make
    the changes.
    2. Sometimes it even makes incorrect changes to the path of
    the link,
    such as changing the image link to a .html link randomly (I
    have no
    idea how this happens!)
    3. When it asks if I'd like to replace the other references
    to the same
    file, and I respond yes, it does nothing.
    After researching this topic somewhat, I have found temporary
    solution,
    but it's driving me crazy and I'm looking for a long-term
    resolution
    for this issue.
    If I delete my WinFileCache-xxxxxx.dat file (under User >
    Application
    Data > Macromedia > Dreamweaver 8 > Configuration)
    before opening
    Dreamweaver, the problem is resolved until the end of that
    specific
    session. As soon as I close Dreamweaver and reopen it, the
    problem
    returns.
    I understand that by deleting the WinFileCache file I am
    basically
    starting with a clean slate, which is why this method is
    temporarily
    effective. However, this is a daily problem for me and I'm
    sick of
    having to do it every single time I use the program....
    SO...if any of you have any thoughts, suggestions, or similar
    complaints, please share - I'm desperate to find a long-term
    solution!
    Thanks!

    > On a regular basis I use Dreamweaver 8's broken link
    checker to convert
    > relative links to absolute throughout single HTML files.
    Why?
    > 1. It seems to find all of the broken links correctly,
    however, when I
    > try to change them into absolute, it doesn't actually
    make the changes.
    Give me an example of what it finds and what you want to
    change it to,
    please.
    > 2. Sometimes it even makes incorrect changes to the path
    of the link,
    > such as changing the image link to a .html link randomly
    (I have no
    > idea how this happens!)
    I would have to see this happen to believe it.
    > SO...if any of you have any thoughts, suggestions, or
    similar
    > complaints, please share - I'm desperate to find a
    long-term solution!
    The real question is - why are you regularly getting broken
    links? The only
    reason I can think of is that your local site is actually on
    a remote,
    shared network drive, and there is intermittant connectivity
    to it due to
    some recurring network anomaly. Can you tell me how your site
    is defined?
    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
    ==================
    "pooley2" <[email protected]> wrote in
    message
    news:[email protected]...
    > On a regular basis I use Dreamweaver 8's broken link
    checker to convert
    > relative links to absolute throughout single HTML files.
    >
    > Once upon a time, I could use the results pane to
    quickly replace all
    > of the broken links. Ever since installing Dreamweaver 8
    (upgraded from
    > MX) I've had the following problem with the link
    checker:
    >
    > 1. It seems to find all of the broken links correctly,
    however, when I
    > try to change them into absolute, it doesn't actually
    make the changes.
    >
    > 2. Sometimes it even makes incorrect changes to the path
    of the link,
    > such as changing the image link to a .html link randomly
    (I have no
    > idea how this happens!)
    >
    > 3. When it asks if I'd like to replace the other
    references to the same
    > file, and I respond yes, it does nothing.
    >
    > After researching this topic somewhat, I have found
    temporary solution,
    > but it's driving me crazy and I'm looking for a
    long-term resolution
    > for this issue.
    >
    > If I delete my WinFileCache-xxxxxx.dat file (under User
    > Application
    > Data > Macromedia > Dreamweaver 8 >
    Configuration) before opening
    > Dreamweaver, the problem is resolved until the end of
    that specific
    > session. As soon as I close Dreamweaver and reopen it,
    the problem
    > returns.
    >
    > I understand that by deleting the WinFileCache file I am
    basically
    > starting with a clean slate, which is why this method is
    temporarily
    > effective. However, this is a daily problem for me and
    I'm sick of
    > having to do it every single time I use the program....
    >
    > SO...if any of you have any thoughts, suggestions, or
    similar
    > complaints, please share - I'm desperate to find a
    long-term solution!
    >
    > Thanks!
    >

  • Templates show up as having broken links in site link check

    CS6
    I have about 20 templates for my site, and a couple of them show up as having broken links when I do a check links site wide search?
    When I make changes to these particular templates now, the new links and associated pages will show up as having broken links also?
    Then when I map the new pages to the correct page, I get the template is locked message?
    I suspect the problem starts with why are the templates being included in the link check to begin with.
    Any thoughts will be appreciated.
    Brad

    Wholesale site and each supplier requires a different menu and lay out.

  • I am getting the following error when I open my Safari Browser.the proceedure entry point sqlite3_wal_ check point could not be located in the dynamic link library SQLITE3.DLL

    I am getting the following error when I open my Safari Browser.the proceedure entry point sqlite3_wal_ check point could not be located in the dynamic link library SQLITE3.DLL

    Try going back to a restore point >  System Restore - Microsoft Windows

  • HT4623 My iPod Touch is te 4th generation with iOS 4 only... The desktop that it used to connect with was broken and I couldn't update my iPod touch as all content is linked to the iTunes on that broken PC. What should I do?I won't erase all my music reco

    My iPod Touch is te 4th generation with iOS 4 only... The desktop that it used to connect with was broken and I couldn't update my iPod touch as all content is linked to the iTunes on that broken PC. What should I do?I don't want to erase all my music recording. (couldn't back up easily...) my dairy, my financial record made on apps...
    If I got a new Mac book pro soon, would it helps backuping everything?

    awesome121, he does not an an iCloud account. You need iOS 5 or later for iCloud and the poster said he has iOS 4.
    awesome121 wrote:
    DO you have a icloud account?

  • With version 3.6.3 I can no longer do a right click with the mouse and check the properties of a live url link on web pages

    Windows XP Pro, SP3. Firefox 3.6.3. Ever since updating to this version a few weeks ago I can no longer do a right click of the mouse and check the properties of an active url link on webpages. I've always had the option before. I want this feature back!!!!

    In Firefox 3.6 Properties has been removed from the right click context menu.
    You can use ''View Image Info'' or ''View Page Info'' in the right click context menu to see the (image) properties.
    You can use the above mentioned extension (Element Properties 6) to get that context menu item back.
    See also Link And Forminfo: https://addons.mozilla.org/firefox/addon/6939

  • I may have totally screwed myself but...after installing Yosemite without checking first, my CS4 Design Premium suite wouldn't open. So I deinstalled it, but I only have disks for my old CS3. When I got the CS4 upgrade I downloaded it. What can I do??

    I may have totally screwed myself but...after installing Yosemite without checking for potential problems with Adobe software, my CS4 Design Premium suite wouldn't open. So after consulting some forums, I deinstalled it, but I only have disks for my old CS3. When I got the CS4 upgrade I downloaded it, back in 2011... What can I do?? Everything was fine before I upgraded that *#$%* Yosemite.

    You can find the CS4 download here: https://helpx.adobe.com/creative-suite/kb/cs4-product-downloads.html
    Benjamin

  • I am trying to edit my creative cloud account but the link is broken

    I am trying to edit my creative cloud account but the link is broken
    I am trying to close my creative cloud subscription.

    Hi Jeff,
    Yes I have a case number. I have chatted with chat more than 3 times with zero results, and I have also tried calling, but I can't get phone support for BC.
    This email is in response to support case #0210384334
    and I got this from the chat:
    Your request (# 15756) has been created by our support staff.
    I also got this email below. There's no way to reply to the email to let them know that I'm still having trouble. And when I click this link:
    Adobe Support Portal online
    I get a "413 Header lenght too long" error.
    (The below is the email I was sent and I don't know the "box" they are referring to...
    This is to inform you that you need to enter this link in the box.
    http://www.adobe.com/products/business-catalyst.html?promoid=IMJKY
    Thank you
    This email is in response to support case #0210384334
    We haven't heard from you in a while on this case and we would like to know how things are going. If your issue is still unresolved, please let us know so that we can assist you further.
    You can do this by visiting the Adobe Support Portal online to view your case history or send us information on your ongoing case. Look for your case number in the "recent activity" section. Should you need to send us additional information, you can do so by opening the case and submitting your update.
    If you have difficulties logging in, consult the Adobe ID and Membership FAQ.
    If we do not hear from you within 4 days of receiving this notice, we will assume that your issue has been resolved and will close the case.
    You will have up to 14 days after the case is closed to reopen it if you have additional concerns.
    Thank you,
    Adobe Customer Care

  • How to set a list form field data value that is linked to another document library's data when the link gets broken!!??

    In summary, I have created 3 document libraries and one issues list in a site collection.
    The issues list has a form that has mainly been created in SharePoint 2010 but tweaked in InfoPath 2007 and one of the fields links to the title of a document in the first document library (so an issue can be linked/referenced to a particular document).
    This all works great until I want to move a document (using the workflow that I built) from document library 1, to document library 2 or 3 as this is what I've set up to move documents through the business process we are taking it through.
    When this happens, the link between the issue that was raised originally against the document is broken and therefore you can no longer tell which document the issue is linked with.
    Does anyone know a way of 'setting' the field that is linked to data in another document library on original selection/creation of the issue, so that when the link is broken the original data remains.
    Any ideas welcome as I am stomped!!! 
    Cheers!!
    Louis Maxwell

    
    Hi  Louis,
    According to your description, my understanding is that you want to keep the link field of the issue list working after moving the linked document.
    Whether the link field  is a lookup column or not ?
    If so, due to the information source of  lookup column cannot be changed, you need to add other lookup fields for document library 2 and document library 3. Just one lookup column corresponds one document
    library. Then you can update the lookup column in the workflow when move the linked document. Such as when a document is moved to document library 2, you need to clear the lookup1 field (corresponding document library 1) and update the lookup2 field (corresponding
    document library 2).
    For updating the lookup column, you can refer to the following actions:
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • When I mouseover links, a gray dialog box appears but it is always blank. I have checked on other browsers and the same link brings up dialog.

    When I mouseover links, a gray dialog box appears but it is always blank. I have checked on other browsers and the same link brings up dialog.
    I am running Firefox RC.

    figured it out:
    - power off mac and turn back on while holding down Command + R (dont do it on an external keyboard just to be safe)
    - choose the re-install Lion option (I'm sure there is another way to re-install Lion, this is just the way I did it, not saying its the best or only method)
    - DO NOT INSTALL MACBOOK (Mid 2012) Software Update 1.0 - THIS SCREWS ADOBE UP!

  • Unable to download Adobe Acrobat 3D TRIAL from adobe site... the link is broken

    Unable to download Adobe Acrobat 3D TRIAL from adobe site... the link is broken

    I'm trying to download Adobe Acrobat 3D version 8, when i select the English, and try to dowload it takes me to another page saying Sorry, this page is not available   Error returned: 404.
    Adobe sent me an email with this link to download http://www.adobe.com/cfusion/tdrc/index.cfm?product=acrobat%5F3d&vk=22ECD3876CE2

Maybe you are looking for

  • Ipod 5G will not hold charge after 1.3 update

    using itunes to update my 5th Gen Ipod to v1.3 last week, I am now unable to get the ipod to hold a charge. when connecting normally, displays the message "please wait - very low battery" and every so often it will attempt to reboot showing the apple

  • I cant erase my usb

    When i put my usb drive in and its not in finder i go to Disk utility i try to erase but i cant click erase it doesn let me then when i try to repair it said it couldnt open.

  • Oracle 8i on Win XP?

    I installed Oracle 8i on XP succssfully and connected to database using SQL/plus with no problems. I installed Oracle Forms 6i on a different oracle home, it installed fine, but I could not connect to Database from Forms. The listener is runing and I

  • Reset to 'default' for all printing functions in about:config doesn't work.

    I have followed the instructions for resetting FFox printer interface to "default", where it should normally be, to the letter: http://kb.mozillazine.org/Problems_printing_web_pages#Reset_printer The system keeps flipping all the printer settings bac

  • CL_SALV_TABLE - how to trigger Double_Click question

    I am trying to find how to trigger an event on double click similar to  using Event Double_Click in Class CL_GUI_ALV_GRID   I am fresh out of the ABAP OO class and everything is a blur.  This is what I did.  I created a program that  with Data: r_gri