Folio Cannot Open URL

I have three URL Hyperlinks in a folio article. Two are working properly and one is not. In Adobe Viewer when the third link is launched, Safari appears, then this alert.
I've triple-checked the link to make sure it is accuracte and that the article is up-to-date in DPS.
Anybody have any clues?
Thanks

This has nothing to do with DPS, it's a problem with the certificate for the https connection. I imagine you'll see the same issue if you try and open the URL in Mobile Safari.
Neil

Similar Messages

  • 3.6.13 OS MAC 10.6.6 - cannot open url within Mail with Firefox as default browser

    new iMac (March '10) - no problem til last week - as above - when
    Firefox is my default browser cannot open url's form within Mail.
    OK when I change over to Safari - but going back to Firefox same issue.
    Firefox browser opens but the page does not load....
    any suggestions?

    I have the same issue. One interesting piece of info is if you quit FireFox (go to dock > right click on firefox icon > quit) Mail will then launch the link into FireFox properly. Somehow though users actions must cause it to fail again. My wife uses our iMac more than I do for email, so I haven't been able to re-create what she is doing to lose the Mail > Firefox functionality. Almost sounds like an OS X bug??

  • Internet Explorer cannot open url in local Windows network share

    Windows Server 2012 R2 as a domain controller
    Internet Explorer 11 64/32
    Favorites are redirected to a Windows network share (on the server itself)
    Issue: When clicking a favourite redirected to the Windows network share, IE does nothing. 
    For testing purpose,
    I double click a .url file in redirected Favorites (e.g.
    \\domain_controller\profiles\username\Favorites\website.url), IE opens with a blank page. 
    If the .url file is placed at local drive or a Samba share (e.g. in a Synology box, probably it does not really matter as long as it is a network share residing in another computer), IE works fine.
    The issue applies to every one (probably except Administrator) logged on the domain controller.
    I tried reset IE.  It did not work.
    Favourites redirection works on Windows 8.1 client computers in the domain.
    Pinned Site Shortcut (.website) file works everywhere
    When Enable Protected Mode in Internet Options\Security\Internet is disabled, IE can open .url file in a Windows network share.  But it is probably not a good idea to permanently disable it.
    Any suggestion on fixing the issue?  Thank you.

    tried ProcMon, the events captured are enormous even after I filtered out those I am sure do not matter.  It was hard to spot what went wrong if I don't know what to look for. 
    Which is why I made the suggestion to filter coarsely and wait for a divergence in your two nearly equivalent traces.   <eg>
    Otherwise, if you are only looking at one trace but think that there is a possibility that some diagnostics may have been written, filtering with 
    Operation Is WriteFile  is often very handy.  With that filter you can also use the Count occurrences... tool for the number of distinct  Path  values which were involved.
    In fact, now that I have reviewed the symptom description, filtering coarsely might also mean using only the File Access events and filtering with  Path Contains Fav   Do that with each of your traces and see where there is a divergence. 
    Then turn the filter off at that point or perhaps just add Registry events at that point (e.g. use the button but leave your filter for  Path in place).  Etc.
    Good luck
    Robert Aldwinckle

  • Cannot Open URL from SWF

    I'm sure this has been covered and that the solution is
    simple, but I am at a loss.
    I cannot get a URL to open from my SWF file using either a
    click box or button, although it works perfectly fine when I
    publish to an EXE.
    Is there an internet security option that would affect this?
    I have no problem opening other movies or files.
    This is most frustrating. Any suggestions?

    Hi tykebrahe
    What are the
    exact steps you are following? In addition to knowing about
    them, what is the
    exact URL you are typing?
    It's been my experience that this works just fine from either
    .SWF output or .EXE output. But I'm hopeful that knowing the
    answers to my questions may help you to resolve the issue.
    Cheers... Rick

  • Mac firefox cannot open .url files from PC

    I have hundreds of pc .url files that I want to import as bookmarks.
    Mac Firefox opens the files as a text file, not as a web page.
    Mac Safari can open them no problem.

    If you have still access to the computer with the .url files then export them via IE to an HTML file.<br />
    If you can open them in Safari then bookmark them and export them in Safari to an HTML file.<br />
    Then you can import that HTML file in Firefox.
    [[Importing bookmarks and other data from other browsers]]
    http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox

  • Cannot open URL from Adobe Reader (10.1.8)

    My PDF contains a URL which is not standard http format, but is file://.
    Adobe Reader identifies it to be a URL (hand cursor shows up), but nothing happens when clicking on it.
    In fact, we have 3 systems (colleagues) with varied behavior. One one it works - brings up the file pointed by the URL.
    One another one, it pops up a security related warning (with Block or Allow button). Clicking Allow still does nothing - so fails there.
    On my system, it just does nothing..
    I tried comparing through the Preferences (Security related, General etc), can't really see any difference..
    Any thoughts on what could be going wrong?
    Thanks,
    Sudarshan

    It's always the first thing to try: if an older version doesn't work correctly, first try the latest version before doing lots of other stuff.

  • Cannot open url within Mail with Firefox as default browser

    just started happening - Safari as default browser does work - but changing back to Firefox as my default - browser opens but doesn't open page.
    any ideas would be appreciated

    Works here, but you should quit Mail before changing in the Safari Preferences, and then relaunch Mail so it will pick up the change.
    Ernie

  • Everytime I want to update the latest iTunes or iPhone software I get the following error message "Cannot open the URL" please help?

    I need to update my iTunes and my iPhone 3GS to the latest version and evertimes I click on "update" I get the following error message displayed - "cannot open URL".  I have checked the permissions on my windows firewall and iTunes is not blocked.  PLease can anyone give me some other suggestions as its really frustrating and I want to download ringtones etc but can't do so without the latest software versions of iOS etc.  Please help?  Thank you

    Try temporarily disabling your firewall and antivirus software and try again...
    See here for Connection Issues
    http://support.apple.com/kb/TS1379
    From Here
    http://www.apple.com/support/itunes/troubleshooting/

  • Opening URL Connection

    Hi all,
    I'm having a problem when connecting to a URL that is non-esisting using a while loop to catch the exception but no exception is being thrown.
    while(myConn == null || !found)
    try
    myConn = url.openConnection();
    } //IOException
    catch (Exception Expt)
    System.out.println("Cannot open URL connection");
    java.lang.Thread.sleep(3000);
    myConn = null;
    continue;
    Cheers
    JavaJimmyD

        BufferedReader inp = null;
        try {
          URL url = new URL(urlString);
          URLConnection conn = url.openConnection();
          conn.setDoInput(true); // or setDoOutput(true)
          /* really open connection */
          conn.connect(); // establish connection
          inp = new BufferedReader(
                  new InputStreamReader(conn.getInputStream()));
          String result = inp.readLine(); // or your stuff
          inp.close();  // close connection
          inp = null;
        catch (MalformedURLException ue) {}
        catch (Exception e) {}
        finally {
          try { if (inp != null) inp.close(); } catch(IOException e) {}
        }

  • Ipad 1st gen. Safari cannot open page because address is invalid. I get this trying to download apps from itunes, infact it will do this under any variable. 4.3 os ive tried copy paste in url but it doesn't matter what i try, safari doesnt allow anyway?

    Ipad 1st gen. Safari cannot open page because address is invalid. I get this trying to download apps from itunes, infact it will do this under any variable. I have tried copy paste in url but it doesn't matter what i try, safari doesnt allow anyway i try. I have searched answers to this but to no avail.
    Leigh

    Hi Demo,
    Yes, I have not made myself clear, I apologise.
    I have tried downloading apps from itunes in order to set up a game for my son, when I go to click on a link, be this in itunes, or on the web, Safari revolts back informing the address is invalid. I read by coping a link and pasting into the URL, this would do it, but not so.
    My goal then, is to install Minecraft for my son, I would then download an app to allow this but I am unable to get this far due to Safari insulting the address I ask it to go to
    The iPad is first generation
    OS 5.1.1 Software up to date.
    Thank you in advance for your time

  • Cannot open illegal or empty URLs

    RH11 | WebHelp
    I'm receiving the message "Cannot open illegal or empty URLs" when I open certain topics in one of my projects. I can click OK and the topics still open, but I'm unsure why this is happening.
    Has anyone seen this before?
    Thanks
    Jonathan

    It is this line in your table that is causing the problem.
    <td style="background-repeat: repeat; background-attachment: scroll; border-bottom: Solid 1px #eee; background-image: url(#f8f8f8);"background="#f8f8f8" bgcolor="#F8F8F8">&#160;</td>
    Set it to the same as other shaded rows and it works fine.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Cannot open links in verizon & aol email. what do I have to do? get Invalid url

    I cannot open some links in email on verizon email, aol email however I can open links in same email sent to my yahoo address, while using the same browser.
    What could be the problem?

    EDIT: deleted due to posting on the wrong thread, sorry.

  • Any Mozilla product I install crashes at startup. The first window I see when I open a Mozilla product is the crash reporter. I have tried every possible solution but cannot open anything. It started with firefox. Can anyone please help?

    Hi there, as the question says, I cannot open any Mozilla product. I have tried to install firefox 3.6, older versions of Firefox, Firefox 4.0, Sea Monkey, Thunder Bird and Sun Bird. I have the same problem everytime. I open any of these programs and the first and the only window that appears is the crash reporter. I've tried opening it in Safe Mode and the same occurs. I have tried entirely uninstalling the products incuding the registry keys but no help. I shall post the detailed error reports, if they help solving this issue. Can you kindly look into this and find a solution as I use all of these Mozilla products and my life has been a hell since they've ben down.
    Seamonkey Error Report:
    Add-ons: [email protected]:2.0.4,{59c81df5-4b7a-477b-912d-4e0fdf64e5f2}:0.9.85,{f13b157f-b174-47e7-a34d-4815ddfdfeb8}:0.9.87.4,[email protected]:1.0,{972ce4c6-7e08-4474-a285-3208198ce6fd}:1.0
    BuildID: 20101123124820
    CrashTime: 1296412292
    InstallTime: 1296412283
    ProductName: SeaMonkey
    StartupTime: 1296412291
    Theme: classic/1.0
    Throttleable: 1
    URL:
    Vendor: Mozilla
    Version: 2.0.11
    This report also contains technical information about the state of the application when it crashed.
    Sunbird Error Report:
    Add-ons: [email protected]:1.2009p,{e2fda1a4-762b-4020-b5ad-a41df1933103}:1.0b1,{972ce4c6-7e08-4474-a285-3208198ce6fd}:2.0
    BuildID: 20091211101839
    CrashTime: 1296413028
    InstallTime: 1296411446
    ProductName: Sunbird
    SecondsSinceLastCrash: 1578
    StartupTime: 1296413025
    Theme: classic/1.0
    Throttleable: 1
    URL:
    Vendor: Mozilla
    Version: 1.0b1
    This report also contains technical information about the state of the application when it crashed.

    Did you find a solution?
    Same problem over here as well, FF 7 is ok but FF8 / FF9 and Thunderbird 8 / 9 crash on startup.
    They both work if I start them in safe mode with everything enabled.

  • Cannot open document from SharePoint site

    Hi All,
    Randomly, I got this error when I trying to open a document from SharePoint sites like 'https://sharepoint.partners.extranet.***.com/'. When issue happend, all document cannot be opened from this
    site. Here is the Error message snapshot:
    'sorry, we cannot open 'https://..... ' because the server isn't responding'
    Notes:
    1) The issue only happend to this site and it's children sites.
    2) If you click the button 'Try Again', the issue will be fixed, but later (several hours/days), the same issue happend again.
    3) When issue happenend, other accounts can still open the files. The same account can open docs as well from other machines. But the issue is not related to this account and this machine because I can repro the issue from other machines.
    The issue happend more than 1 year, if you can share something insight that will very helpful. Thank you!

    Hi,
    Please add the URL of the SharePoint site to the list of trusted sites in your browser and check if that helps.
    Cheers,
    Daniel
    Daniel Bugday
    Microsoft Community Answerer, Member of Microsoft Extended Expert Team, MCT, MCTS/MCPD SharePoint 2007/2010, SQL MCDBA, MCSE
    Blog: SharePoint By Bugday
    Contact:
    Please remember to mark your question as "answered" if this solves your problem

  • Cannot open PDF - "file is damaged and could not be repaired"

    We created a signable, saveable, Reader Extended PDF in Acrobat X 10.1.4, with a Submit button that exports it using the "PDF The complete document" format to a .php page on our website using the url: http://www.todayscihld.us/pdfscript/fdf.php?form_name=WebForm 
    This is the .php page that's supposed to receive the export via the submit button and email it as an attachment:
    <?php
    // $form_name is provided in the url that calls this page, allowing this page
    // to be called from different PDF's, yet customized for each one
    $date = (date ("m/d/y"));
    $time = (date ("H:i:s T"));
    $tmpname = (date ("mdy-His"));
    $message = '
    This is a multi-part message in MIME format.
    ------=_NextPart_000_0007_01C37EC6.3F062EA0
    Content-Type: text/plain;
        charset="iso-8859-1"
    Content-Transfer-Encoding: 7bit
    A '.$form_name.' was submitted from the Website at '.$time.' on '.$date.'.
    (attachment: '.$form_name.')
    ------=_NextPart_000_0007_01C37EC6.3F062EA0
    Content-Type: application/vnd.fdf;
        name="PDF-'.$tmpname.'.pdf"
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment;
        filename="PDF-'.$tmpname.'.pdf"
    '.base64_encode(file_get_contents('php://input')).'
    ------=_NextPart_000_0007_01C37EC6.3F062EA0--
    $recip = "[email protected]";
    $subject = $form_name;
    $headers = "From: Website <[email protected]>\n";
    $headers .= "Return-Path: <[email protected]>\n";
    //use the following line for bcc:
    //$headers .= "bcc: [email][email protected][/email]\n";
    $headers .= "Content-Type: multipart/mixed; boundary=\"----=_NextPart_000_0007_01C37EC6.3F062EA0\"\n";
    $status = mail($recip, $subject, $message, $headers);
    Header("Location: http://www.todayschild.us/page.php?3");
    ?>
    Most of the time this works, however some of the time we get blank PDF files (<10KB), and sometimes we get filled PDF files that we cannot open in Adobe Reader X 10.1.4 - we get the "file is damaged and could not be repaired" error.  However, I can view this "damaged" pdf just fine in the Chrome built-in PDF viewer, and I can open it using Foxit Reader and Nitro Reader.  And if I open it in one of those programs and then save it under a new name, I can open the newly saved file in Adobe Reader.  So why is it that everything except Adobe Reader can open this file?
    Here's one of these problem PDF files: https://dl.dropbox.com/u/65535781/PDF-112612-162749.pdf
    Can anyone help me figure out what's going wrong, and what we can do to fix it? 

    Back up all data.
    Triple-click the line of text below to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

Maybe you are looking for