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.

Similar Messages

  • Broken Link Report with Variables

    In my broken links report, I have many links that contain dynamic variables that will be realized at execution time and are not static links.
    I have included some code from our page(s) below.
    This process works extremely well for our web pages, but I would like to clear up the broken link report.
    Is there a way to keep the code as is and have them removed from the broken link report, or is there better way to do this?
    Example:  
    <cfoutput query = “getDBcontent”>
    <cfset FileName =“../projectweb/images/#getDBcontent.FileType#.gif”>
    <cfset FileTitleAlt = “The title of this document is: #getDBcontent.FileTitle#”>
    <img src=”#FileName#” alt=”#FileTitleAlt#”> #currentrow# <a href=”../projectweb/files/#getDBcontent.Table_FileName#”
                     target=“_blank”>#getDBcontent.Table_FileNameTitle#</a><br />
    </cfoutput>
    After Execution:
    <img src=”pdf.gif” alt=”The title of this document is: Search Lists for Dummies”> 1
    <a href=”../projectweb/files/Search_Lists_for_Dummies.pdf” target=“_blank”> Search Lists for Dummies </a><br />
    <img src=”pdf.gif” alt=”The title of this document is: Adobe Dreamweaver CS5 with PHP”> 2
    <a href=”../projectweb/files/Adobe_Dreamweaver_CS5_with_PHP.pdf” target=“_blank”>
    Adobe Dreamweaver CS5 with PHP </a><br />
    <img src=”doc.gif” alt=”The title of this document is: How to Build a House”> 3
    <a href=”../projectweb/files/How_to_Build_a_House.doc” target=“_blank”> How to Build a House </a><br />
    <img src=”docx.gif” alt=”The title of this document is: Adobe Dreamweaver CS5 Classroom in a Book”> 4
    <a href=”../projectweb/files/Adobe_Dreamweaver_CS5_Classroom_in_a_Book.docx” target=“_blank”>
    Adobe Dreamweaver CS5 Classroom in a Book </a>
    The broken link report shows the following:
    FILES                                                      Broken Links
    /Books.cfm                                         ../projectweb/files/#getDBcontent.Table_FileName#
    /Books.cfm                                         #top
    /Books.cfm                                         #bottom
    Thank you in advance...
    Roger

    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.

  • CS 4 Dynamic Link to Encore doesn't work most of the time.  Encore stops operating after opening and periodically Premier Pro stops working.  I'm told that there has been a problem with CS4 when using Dynamic Link to go to Encore and build CD's.  Is there

    CS 4 Dynamic Link to Encore doesn't work most of the time.  Encore stops operating after opening and periodically Premier Pro stops working.  I'm told that there has been a problem with CS4 when using Dynamic Link to go to Encore and build CD's.  Is there a way around this?  Is there a patch to correct it?

    To build CD's???
    What problem does Encore have with DL?
    If DL is not working properly for you the way around this is to export from Premiere to either mpeg2-dvd for DVD or BluRay H.264 for BD-disks and import the files in Encore.

  • Link in my customized Report Template doesn't work – Apex 3.1

    I created a report template based on columns of my report
    My query report is:
    SELECT MEM_NAS ID, MEM_NOM NAME, MEM_DATE_NAIS BIRTH
    FROM ACMT_MEMBRE;
    My customized report template have this Row Template definition:
    <tr onclick="redirect('f?p=&APP_ID.:6:&SESSION.:::6:P6_NAS:#ID#');">
    <td #ALIGNMENT# class="t16data_edit">#NAME#</td>
    <td #ALIGNMENT# class="t16data_edit">#BIRTH#</td>
    </tr>
    This would redirect to the page 6 when user click anywhere on a row but it doesn’t work.
    I have this error message:
    CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');">
    I realized that problem is caused by #ID# because if I hardcode this ID, it works.
    How can my report template get the “ID” from my query report ?
    Apex version: 3.1
    Edited by: mario_romero77 on Jun 8, 2012 10:06 AM

    mario_romero77 wrote:
    I created a report template based on columns of my reportAlways post code wrapped in <tt>\...\</tt> tags to prevent the forum software mangling it.
    My query report is:
    SELECT MEM_NAS ID, MEM_NOM  NAME, MEM_DATE_NAIS  BIRTH
    FROM ACMT_MEMBRE; My customized report template have this Row Template definition:
    &lt;tr onclick="redirect('f?p=&APP_ID.:6:&SESSION.:::6:P6_NAS:#ID#');"&gt;
    <td #ALIGNMENT# class="t16data_edit">#NAME#</td>
    <td #ALIGNMENT# class="t16data_edit">#BIRTH#</td>
    </tr>
    Is the report template definitely of type Named Column (row template) (defined on App Builder page 4000:4654) and not Generic Columns (column template) (defined on page 400:258)?
    Note that the <tt>#ALIGNMENT#</tt> substitution string is not supported in named column templates. Set column alignment explicitly using HTML attributes in the template, or use CSS.
    This would redirect to the page 6 when user click anywhere on a row but it doesn’t work.
    I have this error message:
    CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');">
    {code}Where do you see this? It looks like there's a mismatch between the report columns returned by the query and those referenced in the report template. Or the data contains unsafe HTML characters that aren't being escaped.
    Yes, my report query has a column called ID and it's set as Hidden. This could be the problem. In a report based on a named column template any columns referenced in the template must be +shown+ in the report, even if (as in this case) the column value is not visible to the user: the positioning of the <tt>#ID#</tt> column placeholder in the <tt>onclick</tt> attribute rather than in a table cell is what makes it "hidden". *The Show checkbox for the ID column must be checked.*
    From the gobbledygook being generated it looks like there could be a row selector checkbox column in this report as well? Named column row templates must include substitution placeholders for every shown column. It's also advisable to keep the columns in the same order in the SQL, report column attributes and row template.
    Something like
    {code}
    &lt;tr onclick="redirect('f?p=&APP_ID.:6:&SESSION.:::6:P6_NAS:#ID#');"&gt;
    <td class="t16data_edit">#CHECK$01#</td>
    <td class="t16data_edit">#NAME#</td>
    <td class="t16data_edit">#BIRTH#</td>
    </tr>
    {code}
    I realized that problem is caused by #ID# because if I hardcode this ID, it works.
    How can my report template get the “ID” from my query report ?If the above doesn't help then the easiest way to troubleshoot this would be for you to upload the app to apex.oracle.com and post guest developer credentials for the workspace so we can see the whole thing: template, SQL, and report attributes. Otherwise we're likely to and up with a lot of tedious to and fro here posting bits of code and attribute values.

  • Mini DisplayPort to Dual-Link DVI Adapter doesn't work on Battery Power

    When I'm using the Apple Mini DisplayPort to Dual-Link DVI Adapter to connect a MacBook Air 13" to a 27" Display, it only works as long as the Power Adapter is connected. In other words
    Can anyone tell if this is normal behavior?

    Hello,
    From the news page here...
    http://xlr8yourmac.com/
    See if it's related to this...
    It also seems to be related to later OSX versions, like 10.8.x & 10.9.x
    The 2012 macs (and later apparently) (also later OSX versions on earlier Macs can do it also), not waking normally from sleep after hours being in sleep. (noted here ...
    http://www.xlr8yourmac.com/archives/feb13/022813.html#2012macswontwake
    "Why 2012 iMac/2012 Mac Mini won't Wake After Hours of Sleep (Hibernates/Powers Off)")
    The sleepimage file still reappears even if never slept. Delete it (hibernate off, etc) - within minutes its back.
    A note on that here - http://www.xlr8yourmac.com/feedback/Chameleon_SSD_Optimizer.html
    About iMac sleep...
    http://forums.macrumors.com/showthread.php?t=1529750
    Try this: "sudo pmset autopoweroff 0" and "sudo pmset standby 0"
    http://xlr8yourmac.com/archives/sep13/091313.html#10.8.5SleepEjectTip
    Two users reported that the opposite worked...
    Try this: "sudo pmset autopoweroff 1" and "sudo pmset standby 1"

  • APEX_ITEM report - SORT doesn't work

    Hi,
    For the following report, the SORT doesn't work. I've also tried with the "Report Attributes", but same result. Does someone know is there a way to make it sorted or can confirm it's not possible.
    Thanks.
    SELECT
    APEX_ITEM.CHECKBOX(11,id_cc_delai_recueil) id_cc_delai_recueil,
    APEX_ITEM.HIDDEN(12,id_cc_delai_recueil)||APEX_ITEM.HIDDEN(13,id_cc_regle)||APEX_ITEM.TEXT(14,numdelai,3) numdelai,
    APEX_ITEM.SELECT_LIST_FROM_LOV(15,typedoss,'DOSSIERS OU DOCUMENTS',NULL,'NO') typedoss,
    APEX_ITEM.TEXT(16,suppdoss,3) suppdoss,
    APEX_ITEM.SELECT_LIST_FROM_LOV(17,rem_suppdoss,'REMARQUE_DELAI',NULL,'YES','','') rem_suppdoss,
    APEX_ITEM.TEXT(18,perioactif,3) perioactif,
    APEX_ITEM.SELECT_LIST_FROM_LOV(19,rem_perioactif,'REMARQUE_DELAI',NULL,'YES','','') rem_perioactif,
    APEX_ITEM.TEXT(20,periosmact,3) periosmact,
    APEX_ITEM.SELECT_LIST_FROM_LOV(21,rem_periosmact,'REMARQUE_DELAI',NULL,'YES','','') rem_periosmact,
    APEX_ITEM.SELECT_LIST_FROM_LOV(22,dispoinact,'DISPOSITION1',NULL,'NO') dispoinact,
    APEX_ITEM.SELECT_LIST_FROM_LOV(23,rem_dispoinact,'REMARQUE_DELAI',NULL,'YES','','') rem_dispoinact
    FROM
    cc_delai_recueil
    WHERE id_cc_regle = :P52_ID_CC_REGLE
    ORDER BY
    3,
    2

    Paulo,
    Remove the Order By clause from your Select statement and then use the Report Attributes to determine your sort order.
    Jeff

  • My Labview Report generator is not working with 2013 excel version

    Hi All,
    My report generator tool kit which was developpend using labview 2011 was workign with excel 2010...after that i installed 2013 excel and the code is not working..
    Do i need to enable some setting to work with excel 2013.
    Basically this generator tool will copy the charts from excel and paste in power point...Please let me know.
    Thanks,
    Hareesh

    Ah, I understand now - I had assumed you were using the NI Toolkit.
    If you're not using the report generation toolkit, did you write your own VIs for communicating with Office or are you using a different toolkit? If you're using ActiveX to communicate with Office it may be that the ActiveX API has changed for Office 2013 - you will probably need to modify your program for the new calls.
    Since it wasn't as obvious as I thought with the report generation toolkit, it would help if you posted some code to try and understand what might be happening. Are you getting any errors in your application when you try to use Office 2013?
    Certified LabVIEW Architect, Certified TestStand Developer
    NI Days (and A&DF): 2010, 2011, 2013, 2014
    NI Week: 2012, 2014
    Knowledgeable in all things Giant Tetris and WebSockets

  • Export reports views doesn't work

    export the report view's in a file doesn't work. The file is created but still empty. Workaround is to get the sql and execute it in worksheet edit and cut and past the result in a excel sheet. It woul be better if the export works fine.

    This is working fine for me.
    What version of SQL Developer are you using?
    What OS are you on?
    What report did you run?
    What type of output did you select?
    -- Sharon

  • Report script doesn't work

    Hello everyone,
    Not sure what I am doing but for some reason my report scrip doesn't seem to be working. I can't understand why, the syntax is correct as far as I can see.
    <Column (Sparse1)
    Sparse1
    <Row (Dense1,"S2,D2,S3,S4,S5,S6,D3,S7)
    D1 - L0 member
    S2 - L0 member
    D2 - L0 member
    D3 - L0 member
    S3 - L0 member
    S4 - L0 member
    S5 - L0 member
    S6 - L0 member
    S7 - L5 member
    Actual code
    <Column (Period)
    Jan
    <Row (Account,Buyer,Currency,Version,Year,Site,Seller,Scenario,Supplier)
    Profit
    Buyer001
    Dollar_USD
    Draft_version
    Y2013
    Site001
    Seller001
    Budget
    Total_Supplier
    When I execute this, I don't get anything, when I have the same combination in Excel, I can see a figure.
    Any insight into this would be grateful.
    Edited by: N13 on May 14, 2013 2:14 AM
    Edited by: N13 on May 14, 2013 2:15 AM

    Ignore, it's fine. I manage to solve it, turns out that I didn't put the "!" sign at the bottom.

  • Contextual menu on links in mail doesn't work

    I had hoped that this annoying bug was fixed in release 10.10.1 of Yosemite. It is not and I have to ask the question.
    There is a contextual menu in mail if you option click on a link:
    The problem is: it doesn't work! All the three options do nothing. I submitted it to Apple but unfortunately it wasn't fixed. Somebody else has this problem and was able to fix it? It is quite annoying, like almost everything these days in Yosemite.
    I've don't a clean install of Yosemite several times. Didn't fix.

    Hi cchauvin08,
    If you can't post your page on the web for others to see,
    then perhaps you can paste the relevant markup/code. For example,
    what type of inputs are you using? You said "text box" do you mean
    a TextArea or a TextField? What does the widget constructor for
    that particular validation field look like? What does the markup
    look like, including the markup for the <form> tag?
    We're going to need more info due to the fact that some of
    these validation widgets have multiple configurations (types of
    validation).
    --== Kin ==--

  • TS3999 Argentina holiday link for iCal doesn't work, please help!!

    İ want to add argentina holiday calendar to my iCal but the link on apple page doesnt work.

    As you say the link doesn't work; neither does its originating domain alone. The note on the page concerned says that the calendar is valid only for 2010 and 2011, so evidently it's been withdrawn and not updated by its originator. I'm afraid that a number of the links on Apple's page have gone dead.

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

  • Save link as option doesn't work as expected anymore

    When I formerly right clicked a link to a file (to download) and chose the option '''Save link as''', I was able to save the file to the location I specified.
    At the moment this doesn't work anymore. When I click the same link as before and choose save link as, firefox wants to save the .htm page instead of the .csv file.

    You can try "Reset Download Actions": http://kb.mozillazine.org/File_types_and_download_actions

  • LInks over shape doesn't work

    I just recently reformatted my iWeb pages and I love them. The problem is that most of them are buried under a pictures category (I want them that way). When I created hyperlinks in iWeb it changed the color of my font. So I inserted a shape behind the text and put the hyperlinks there.
    That doesn't work. I also tried putting the hyperlinks back on the text and when I publish, they don't work either. I like the shapes and don't want to remove them. How can I keep the pink shapes under my pictures page and keep the text white?
    http://web.mac.com/kryst1012/iWeb/Krystin/Photos.html

    Keep all of your shapes right where they are! To make your text into hyperlinks then, just insert another shape...make it big or small enough to cover your text. Go ahead and drag it right over your text. Now attach the hyperlink to this shape. Now in the INspector,click over to the Graphics tab and change the opacity of this shape to 1%.
    You have now created a "hotspot" hyperlink over your text! All without moving any of your other shapes around! Publish and see the results... Let me know if it works out for you!

  • Broken link report only

    Not sure if it's a broken link, but on my Windows 8/IE10 computer when I click the link:
    "Update Internet Explorer to download the latest version of Adobe Flash Player for Windows 8 32-bit machine"
    the page was "greyed out" ... below the word "Download"
    Thanks,
    Lynn Lind
    Deming, NM

    "Update Internet Explorer" Is a Microsoft link and NO ONE here can do a thing about it.

Maybe you are looking for