Broken link to Refunded Returns General Conditions

On log-in I've been shown some advert with image and advertising refunded returns. There was a link to general conditions, so I wanted to read it, but when clicked on it, the page showed the error: Sorry, that page doesn't exist. We can’t find a page with the url you entered. The URL for that page: https://www.paypal.com/pl/webapps/mpp/refunded-returns/general-conditions Can you correct that please? What is the correct address then? Thank you.

Jan,
Thanks for reporting this broken link. The "Oracle Web Services Manager - Feature Overview" link has been updated and is now available from: http://www.oracle.com/technology/products/webservices_manager/index.html
Regards,
...Lawrence/OTN

Similar Messages

  • Strange Broken Link

    I have an SQL Report with a link to a detail page.
    The link works for 9 out of the 10 rows, but on the 10th row, I'm getting a http 404, broken link error. The link is the same, session is the same, and the only difference is value of the key being passed into the next page. To make this even more strange, when I cut and paste the hyperlink into a new browser, the link works!
    Any ideas? Where can I look to find a potential problem?

    Nope...I use application items for keys used on multiple pages to simplify linkage and minimize parameter passing. I'm pretty darn certain about what caused this....
    First, I copied the page that was returning the 404 into a new page and started removing functionality with the hopes of identifying the problem area. Please realize that the page would work perfectly and then would suddenly stop rendering, so I new that something (data, code) was causing the intermittent issue.
    The first thing I did was remove ALL conditional logic on all items within the page and it still didn't render. Then I started deleting objects (on the copied page). The first thing I deleted was all the buttons, and sure enough, the page rendered perfectly, so I knew the problem was somewhere within the buttons. I moved all the buttons to specific region locations ('edit', 'create', 'create2', 'next', 'previous', etc.) and sure enough, the page rendered perfectly, using the exact same data that caused the problem, without any other changes. I've had no problems since.
    Because there seem to be doubts about this, I just recreated the problem. I moved all of the buttons to region template position #change# and it worked fine. I moved all of the buttons to region template position #create# and bang, the problem has reappeared. So the issue is within the #create# position. It causes a complete abort with an HTTP 404.

  • 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

  • A LOT of iTunes broken links/tracks after Music folder move...

    So yeah, I'm getting a TON of broken links / dead track links in iTunes after having to do two things to my iTunes install recently and I'm at wits end trying to fix it.
    I keep my iTunes Music Folder on an external and share the iTunes library between my work Macbook Pro and my home Macbook. Every Friday I drag my iTunes folder and all contents from my MBP onto an external and replace the iTunes folder on the 'weekend' MB, then do the same back on Monday. I keep my iTunes music 'View' as 'Date Added' so that I can always be listening to whatever is newest. It's how I roll.
    Well, this week I had some data problems during the transfer and had to use a previous week's iTunes Music Folder, which was fine as I hadn't added much this week.
    I also got a new external because the old one was getting a little shady, so after doing the iTunes Music Folder replacement I moved my music all over to a new external drive, told iTunes where it all was at. iTunes did it's thing, 'organized' my stuff and all seemed good - until I got back deeper into the catalogue of music and started getting a LOT of broken tracks. The songs are still there, in the correct folders and all, but for some reason iTunes isn't finding them.
    When I say a LOT, I mean so far it's hundreds of my 13,000 songs.
    Now I COULD use the 'Super Remove Dead Tracks' script from Doug's to find all the broken files then re-add the whole library, but it will add all the old songs out of order because they will get a new 'Added' date.
    I could also manually move thru my whole library holding down the arrow key for 'Next' to find all the broken links then go thru, select them, and use the 'iTunes Track CPR' script from Doug's to re-add them to the library with ratings intact, but still they will be out of order time-wise.
    I cannot find a script that will parse my library, find broken links, and re-associate them with their tracks, nor can I figure out why this happened and any other way to fix it. Repairing permissions hasn't helped. Any other ideas?

    Just to follow up with a more comprehensive example of looping through a Library to detect & repair "missing" file-tracks:
    <pre>
    property kErrAENoSuchObject:(-1728)
    on run
    tell (application "iTunes")
    set theLibraryPlaylist to (first library playlist)
    tell theLibraryPlaylist
    set theNumCandidateFileTracks to (count (every file track))
    repeat with i from 1 to theNumCandidateFileTracks by 1
    -- Get a reference to this file-track
    set thisFileTrackRef to (file track i)
    -- Get this file-track's info (useful for debugging, etc.)
    set thisArtist to (artist of thisFileTrackRef)
    set thisAlbum to (album of thisFileTrackRef)
    set thisName to (name of thisFileTrackRef)
    set thisFileTrackInfo to (thisArtist & " > " & thisAlbum & " > " & thisName)
    -- Display a diagnostic message every 500th file-track
    if ((i mod 500) = 0) then
    tell me
    display dialog ("Checking file-track #" & i & ": " & ¬
    return & return & thisFileTrackInfo) ¬
    buttons {"Cancel", "•"} giving up after 2.5
    end tell -- me
    end if
    -- Retrieve this file-track's target file (an AS 'alias' object), if any
    -- {!!! NOTE: Due to a bug in iTunes 7.x+ (esp. when downloading), AS might
    -- be unable to access the 'location' field of some file-tracks !!!}
    try
    set thisFileTrackTargetFile to (location of thisFileTrackRef)
    on error errMsg2 number errNum2
    -- Check whether it's that bizarre error: (-1728) "Can't get location of …"
    if (errNum2 = (kErrAENoSuchObject of me)) then
    -- Set up to just skip this track (assume it's being downloaded)
    set thisFileTrackTargetFile to (anything) -- (Other than 'missing value')
    else (* Re-signal all other errors *)
    error errMsg2 number errNum2
    end if
    end try
    -- Check whether this file-track is "missing" its target file
    if (thisFileTrackTargetFile = (missing value))
    -- Inform the user
    tell me
    display dialog ("Repairing this missing file-track: " & ¬
    return & return & thisFileTrackInfo) ¬
    buttons {"Cancel", "•"} giving up after 2.5
    end tell -- me
    -- Set up this target file's new pathname (e.g., via explicit user input, or
    -- better yet automatically reconstructed from this file-track's tags such
    -- as Artist, Album, Name, Kind, etc.)
    -- ... Translate this file-track's kind into a filename-extension
    set thisKind to (kind of thisFileTrackRef)
    set thisNameExt to "m4a" -- ... Default
    if ({thisKind} is in {("Protected AAC audio file")}) then -- Older DRM'd file
    set thisNameExt to "m4p"
    else if ({thisKind} is in {("MPEG audio file")}) then -- MP3
    set thisNameExt to "mp3"
    else if (thisKind contains "movie file") then -- E.g., interactive booklet
    set thisNameExt to "mov"
    end -- (thisKind = "MPEG audio file") ... else if ... else ...
    -- ... Auto-build this target file's new pathname
    set thisTargetFileNewPathname to ("New Disk:New Path:" & ¬
    thisArtist & ":" & thisAlbum & ":" & thisName & "." & thisNameExt)
    -- Assign this new target file (as an AS 'alias' object) to this file-track
    -- (This is the crucial step that was impossible in older versions of iTunes!)
    set (location of thisFileTrackRef) to (alias thisTargetFileNewPathname)
    end if -- (thisFileTrackTargetFile = (missing value))
    end repeat -- with i from 1 to theNumCandidateFileTracks by 1
    end tell -- theLibraryPlaylist
    end tell -- (application "iTunes")
    end run
    </pre>
    Regards,
    --P

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

  • Broken links to photos since iLife upgrade

    When I try to open a previously completed project, a window opens with a list of files that cannot be found. If I click Cancel, the project still opens but there are a lot of thumbnails that indicate a broken link. When I click Find File, it runs a search but does not return any results. Is my only option a manual repair of the links? I'm not even sure which photo belongs where. Does Apple have a utility that will set the computer back to a certain date? I'm kicking myself for not remembering to back up the file to my ext hd.

    Are you sure that you do not have some errant search criteria in your browser search box - this is usually the cause of something like this - if the "links were broken" the symptoms would usually be very different.
    RB

  • No Send - trip broken link

    Greetings,
    Does anyone know how to code an html document
    so that the images that are referenced/linked from the
    internet
    show up with the 'right-click prompt to view image' message
    in an email. I am using Outlook to send out emails and they
    are working properly, but I am trying to trip the code that
    says click to download. I have been using the no-send
    attribute,
    but everyhting is still working the same way.
    Do you know what I mean?
    Regards,
    Toe Cutter

    Please post a URL to the page.
    Patty Ayers | www.WebDevBiz.com
    Free Articles on the Business of Web Development
    Web Design Contract, Estimate Request Form, Estimate
    Worksheet
    "Lady Pool Player" <[email protected]> wrote
    in message
    news:gcifqa$5js$[email protected]..
    >I am using the trail version of Adobe Dreamweaver CS3. I
    am just learning
    >use
    > it. I had two projects to complete. One is working
    perfectly. The other
    > one
    > isn't. I set up my home page and 3 other pages. On one
    of my pages, I will
    > not
    > return to Home. I ran Design Check on it. It displays
    that I have a broken
    > link. In the area where it should display the folder so
    you can fix it, it
    > displays files. I have completely redid this page too
    many times to count.
    > I
    > even redid the site from scratch. I still get this. I
    didn't set up this
    > page
    > any differently than any other as to returning to the
    Home page. Does
    > anyone
    > have any ideas how to correct this? I do not know what
    to do.
    >

  • 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

  • Checking for Broken Links

    Is there a solution out there for checking broken links in a content area in Oracle Portal?

    I think a third party products will check broken links by identifying links which return a 404 error.
    Portal (at least 3.0.6.6.5) does not respond with 404 but gives WWC-46000. I doubt a third-party product will recognise this as a broken link.
    Analyzing apaches log files is of no use either. The error log gives no entries, the access log shows apache has responded the request with HTTP-200 , which is correct if you see the problem from Apache. Apache does a request to modplsql, a page is returned, and Apache passes it on.
    The problem becomes somewhat more complicated if you consider access rights to folders. A link can be OK for userA, but can be broken for userB.
    Ton

  • Broken link ;no folder to fix it;

    I am using the trail version of Adobe Dreamweaver CS3. I am
    just learning use it. I had two projects to complete. One is
    working perfectly. The other one isn't. I set up my home page and 3
    other pages. On one of my pages, I will not return to Home. I ran
    Design Check on it. It displays that I have a broken link. In the
    area where it should display the folder so you can fix it, it
    displays files. I have completely redid this page too many times to
    count. I even redid the site from scratch. I still get this. I
    didn't set up this page any differently than any other as to
    returning to the Home page. Does anyone have any ideas how to
    correct this? I do not know what to do.

    Please post a URL to the page.
    Patty Ayers | www.WebDevBiz.com
    Free Articles on the Business of Web Development
    Web Design Contract, Estimate Request Form, Estimate
    Worksheet
    "Lady Pool Player" <[email protected]> wrote
    in message
    news:gcifqa$5js$[email protected]..
    >I am using the trail version of Adobe Dreamweaver CS3. I
    am just learning
    >use
    > it. I had two projects to complete. One is working
    perfectly. The other
    > one
    > isn't. I set up my home page and 3 other pages. On one
    of my pages, I will
    > not
    > return to Home. I ran Design Check on it. It displays
    that I have a broken
    > link. In the area where it should display the folder so
    you can fix it, it
    > displays files. I have completely redid this page too
    many times to count.
    > I
    > even redid the site from scratch. I still get this. I
    didn't set up this
    > page
    > any differently than any other as to returning to the
    Home page. Does
    > anyone
    > have any ideas how to correct this? I do not know what
    to do.
    >

  • If..then..else statement in SQL with 'generalized' conditions in the if sta

    it is possible to write something approaching an if..then..else statement in SQL with 'generalized' conditions in the if statement.
    Attached is the query for the payment register, in which I've written a series of decode statements, one for each possible value of the payment code. The query works OK - however, its specific and as the number of paycodes expand (and they do), the report won't pick up the new paycode until the code is changed. More importantly, the report won't be correct until someone 'discovers' that a paycode is missing, which might take months.
    If I were writing the equivalent of this series of decode statements in Focus, it would be something like this:
    DEFINE.......
    PAYMED/D12.2 = IF PAYMENT_CD LE 18
                   THEN PAYMENT_AMT
                   ELSE 0 ;
    PAYIND/D12.2 = IF PAYMENT_CD GE 19 AND PAYMENT_CD LE 49
                   THEN PAYMENT_AMT
                   ELSE 0 ;
    PAYEXP/D12.2 = IF PAYMENT_CD GE 70
                   THEN PAYMENT_AMT
                   ELSE 0 ;
    PAYREC/D12.2 = IF PAYMENT_CD GE 50 AND PAYMENT_CD LE 69
                   THEN PAYMENT_AMT
                   ELSE 0;
    END
    IN SQL/PLUS:
    SELECT ACCOUNT_NAME,
    LOCATION_1,
    CLMNT_LAST_NAME,
    CLAIM_NBR,
    DATE_OF_INJURY,
    DATE_CHECK_REGISTER,
    PAYEE_NAME_1,
    PAYMENT_CD,
    SERV_OFC,
    CPO_CHECK_NBR,
    PAYMENT_FORM,
    DECODE(PAYMENT_CD, 20, PAYMENT_AMT, 21, PAYMENT_AMT,
    22, PAYMENT_AMT, 23, PAYMENT_AMT, 25, PAYMENT_AMT,
    26, PAYMENT_AMT, 27, PAYMENT_AMT, 28, PAYMENT_AMT,
    29, PAYMENT_AMT, 30, PAYMENT_AMT, 31, PAYMENT_AMT,
    32, PAYMENT_AMT, 33, PAYMENT_AMT, 34, PAYMENT_AMT,
    35, PAYMENT_AMT, 36, PAYMENT_AMT, 37, PAYMENT_AMT,
    39, PAYMENT_AMT, 40, PAYMENT_AMT, 41, PAYMENT_AMT,
    42, PAYMENT_AMT, 43, PAYMENT_AMT, 44, PAYMENT_AMT,
    45, PAYMENT_AMT, 46, PAYMENT_AMT, 47, PAYMENT_AMT,
    48, PAYMENT_AMT, 49, PAYMENT_AMT, NULL) INDEMNITY,
    DECODE(PAYMENT_CD, 0, PAYMENT_AMT, 1, PAYMENT_AMT,
    2, PAYMENT_AMT, 3, PAYMENT_AMT, 4, PAYMENT_AMT,
    5, PAYMENT_AMT, 6, PAYMENT_AMT, 7, PAYMENT_AMT,
    8, PAYMENT_AMT, 9, PAYMENT_AMT, 10, PAYMENT_AMT,
    11, PAYMENT_AMT, 12, PAYMENT_AMT, 13, PAYMENT_AMT,
    14, PAYMENT_AMT, 15, PAYMENT_AMT, 18, PAYMENT_AMT,
    17, PAYMENT_AMT, NULL) MEDICAL,
    DECODE(PAYMENT_CD, 70, PAYMENT_AMT, 71, PAYMENT_AMT,
    72, PAYMENT_AMT, 73, PAYMENT_AMT, 74, PAYMENT_AMT,
    75, PAYMENT_AMT, 76, PAYMENT_AMT, 77, PAYMENT_AMT,
    78, PAYMENT_AMT, 79, PAYMENT_AMT, 80, PAYMENT_AMT,
    81, PAYMENT_AMT, 82, PAYMENT_AMT, 83, PAYMENT_AMT,
    84, PAYMENT_AMT, 85, PAYMENT_AMT, 86, PAYMENT_AMT,
    87, PAYMENT_AMT, 88, PAYMENT_AMT, 89, PAYMENT_AMT,
    90, PAYMENT_AMT, NULL) EXPENSES,
    DECODE(PAYMENT_CD, 50, PAYMENT_AMT, 51, PAYMENT_AMT,
    52, PAYMENT_AMT, 53, PAYMENT_AMT, 54, PAYMENT_AMT,
    55, PAYMENT_AMT, 56, PAYMENT_AMT, 57, PAYMENT_AMT,
    58, PAYMENT_AMT, NULL) RECOVERIES,
    DECODE(PAYMENT_FORM, 'N', PAYMENT_AMT, NULL) NONCASH,
    DATE_FROM_SERVICE,
    DATE_THRU_SERVICE
    FROM &INPUT_TABLES
    WHERE &SECURITYCOND
    DATE_OF_PAYMENT BETWEEN :START_DATE AND :END_DATE
    ORDER BY LOCATION_1, CPO_CHECK_NBR
    As you can see, this is both much easier to write and covers the possibility of expansion of paycodes (expansions always fit in these defined ranges).
    My question is, then, is it possible to write something like this in SQL and, if so, could you give me some sample code? (I'm one of those people who learn best from looking at the code as opposed to a set of instructions)

    Here is one way you could do it.
    Create a table that has columns like:
    Payment_code varchar2(2),
    Effective_Date Date,
    Payment_type varchar2(20),
    Expiration_Date Date)
    Payment type for example could be
    I- indemnity
    M- medical
    R- recovery
    E- expenses
    Let the table name for example be PAYMENT_CODE.
    The select query would look like
    SELECT ACCOUNT_NAME,
    LOCATION_1,
    CLMNT_LAST_NAME,
    CLAIM_NBR,
    DATE_OF_INJURY,
    DATE_CHECK_REGISTER,
    PAYEE_NAME_1,
    PAYMENT_CD,
    SERV_OFC,
    CPO_CHECK_NBR,
    PAYMENT_FORM,
    DECODE(p.payment_type,'E',PAYMENT_AMOUNT,0) expenses,
    DECODE(p.payment_type,'I',PAYMENT_AMOUNT,0) indemnity,
    DECODE(p.payment_type,'M',PAYMENT_AMOUNT,0) Medical,
    DECODE(p.payment_type,'R',PAYMENT_AMOUNT,0) recoveries,
    DECODE(PAYMENT_FORM, 'N', PAYMENT_AMT, NULL) NONCASH
    FROM &INPUT_TABLES,
    PAYMENT_CODE P
    WHERE P.PAYMENT_CODE = SOMEINPUT_TABLE.PAYMENT_CODE
    and other conditions
    The idea is to group all the payment codes into a few groups to reduce the clutter. If there is ever a change to the payment code, you could modify the table and it will be reflected in your select query.

  • I downloaded a movie from itunes on my ipad.  In the downloaded area where the movie should be, I only get a link to "iItunes Terms and Conditions", no movie.  There is nowhere to accept the terms and conditions.

    I downloaded a movie from itunes on my ipad. In the downloaded area where the movie should be, I only get a link to "iItunes Terms and Conditions", no movie. There is nowhere to accept the terms and condotions.

    Nevermind, the movie was there in the Videos app, not itunes downloads.  Thanks.

  • The broken link error

    Hi,
    Please help me with this broken link error in Office Excel 2010. Thank you.
    The problem is: a broken link cannot be removed from the file. The link was used in data validation, which refers to a list of values. After the path was corrected, it still shows there’s a broken link. Here are the details:
    I have 4 files named “000TVA_Test – 3”, “000TVA_Test – 4”, “000TVA_Test – 5”, and “000TVA_Test – 6”. The posterior files were developed based on the previous files.
    In Test-3, sheet “Template “, cell “L4”, “O4”, “R4”… were built as dropdown list using data validation. The list source is in the “Library” worksheet. There’s no problem so far.
    Test-4 was firstly copied from Test-3. In this file I renamed the worksheet from “Library” to “Setting” and the link was broken from here. I can also fix the broken link in this file. (While I didn’t realize there was a broken link.)
    In Test-5 I fixed the path, but every time when opening the file, the broken link still shows.
    In Test-6 I’ve removed the data validations. The broken link is still there.
    I tried to find solutions online. I tried common methods, cannot find anything in the files is still using links. I also tried the “findlink.xla” add-in, but it only worked for Test-4, and couldn’t find the link in other files.
    Please help. Thank you!
    I uploaded files here: https://onedrive.live.com/redir?resid=1A97736E0ABBAA41!113&authkey=!AF5wAd9rwUPnYyE&ithint=folder%2cxlsm
    Thanks again!

    Hi,
    Based on my tested the files downloaded, I found that Test-5 & Test-6 included the "A defined name that refers to an external workbook", Test-4 had not. (Please click Formula Tab>Name Manage, you'll see them.)
    However, the Break Links command cannot break the following types of links:   
    A defined name that refers to an external workbook
    A ListBox control with an input range that refers to an external workbook.
    A DropDown control with an input range that refers to an external workbook.
    http://support2.microsoft.com/kb/291984/en-us (It also applies to Excel 2010)
    Thus, we'd better try the workaround: re-build the Test-5 & Test 6.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • 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

Maybe you are looking for

  • Purchasing songs from other Itunes Stores

    The selection of International music at the US Itunes Store is very limited, to put it politely. While I can access, view, and listen to, all songs that are available at overseas Itune Stores, (such as Itunes in France); I cannot purchase them even t

  • Email Virus on Macs?

    I use MAIL and an account of mine is just downloading emails notifying me of 'Undeliverable' or 'Failed' emails that I supposedly sent out. It wuld keep downloading the emails if I let it. Basically it's spam. Anyway short of deleting my account to s

  • How do I find my product key code for CS5?

    I bought CS5 2.5 years ago, unfortunately my school email deletes anything older than 6 months. I am looking to find my key codes so that I can transfer my CS5 over to my new laptop, can someone give me advice on this issue?

  • Is it possible to downclock the cpu?

    Does anyone know of any software available to let me run the cpu at a slower clock speed? When I'm going to leave the computer on overnight with a task running I'd prefer the cpu run a little cooler and not have the fans spin up to take-off speed. I'

  • JCO Error in Quality Portal

    Hi , When i am running WDJ apps in dev portal , it's working fine . But when i am running through QA , it's showing the following JCO error . Could not create JCO connection .Please ensure that you have nesured RFC destinations and/or logical system