Can't open page links on espn

clicking on a page link just reopens the same page

I'm still not able to reproduce the issue. Here is what I do:
1. Click on NFL tab
2. Scroll down to NFL BLOG NETWORK
3. Click on NFC South to expand the section
4. Click on NFC South blog link --> the link works fine
Please check if the issue occurs using Firefox in safe mode:
http://support.mozilla.com/kb/Safe+Mode
Or on a new, empty profile? (Don't install any addons into it)
http://support.mozilla.org/en-US/kb/Managing-profiles#w_starting-the-profile-manager

Similar Messages

  • I have problems uploading a journal from iPhoto in my iPad, the web page online works on the iPad but I can't open the link on my computer

    I have problems uploading a journal from iPhoto in my iPad, the web page online works on the iPad but I can't open the link on my computer

    What did you rent the film on, your iPad or your Mac ? If you rented it on your iPad then it should have downloaded into the Videos app on it (you should get a rentals tab in the app). If you rented it on your Mac then it should be in the Movies part of your Mac's iTunes library, you will have to connect your iPad to your Mac's iTunes and move it from your Mac to your iPad (I think that it should show on the iPad's Movies tab for moving)

  • HT4157 My iPad. Oonnects to other wifi it used to connect to my work wifi but it will. Not connect now what is work I am connected with my iPhone but iPad will. Not connect or it says safari can not open page

    I can connect my iPhone to my work wifi but when I try to connect my IPad it will not connect. It says safari can not open page.  What's up with that I have used IPad connected to work wifi before

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • MAC - Can't open a link/URL in a new tab inside a folder

    I can't open a link/URL in a new tab inside a folder from a Mac. I am sure I can do that in PC. Please advice. Thanks in advance.

    Does the URL go to a regular web page, or another kind of file (e.g., PDF, PowerPoint)?
    If you right-click the link and choose Copy Link Location, then paste to the address bar and press Enter, does Firefox load the link as expected?

  • Can;t open https links in thunderbird

    Can't open messages linked to a web page address, eg can't verify my email address to Mozilla support when I click on conformatiob box, I get a pop up box labeled. Launch An Application, in box it says, This link needs to be opened with an application. Send to:, in inner box it says, choose an Application, at the side of this is a choose button. At the bottom ofthe outer box is a tick box labeled, Remember my choice fot https links.
    When I click on the choose button I,m shown another box Labeled Another applicatin inside the box is
    the My Documets box etc.
    Can you help

    The pop up you are telling about is the persona verification so just type your email id in the blank space provided and click the link next to that your id will get verified.

  • Can't open any links within my emails. The display reads, "Firefox doesn't know how to open this address, because the protocol (blockedhttp) isn't associated with any program." How can I fix this?

    Can't open any links within the emails using Firefox. I can open them in other browsers however. The message reads, "Firefox doesn't know how to open this address, because the protocol (blockedhttp) isn't associated with any program.". How can I fix this?

    Looks like blocking software to purposely block a page by messing with the url.
    *http://kb.mozillazine.org/Parental_controls
    *http://kb.mozillazine.org/Blocking_sites (more links)

  • How can I open the links on the TreeItem treeItem1 = new TreeItem("Fish", "

    JDeveloper 11g, Windows 7(64 bit), ADF Faces
    package view.backing;
    import java.beans.IntrospectionException;
    import java.util.ArrayList;
    import java.util.List;
    import org.apache.myfaces.trinidad.model.ChildPropertyTreeModel;
    import org.apache.myfaces.trinidad.model.TreeModel;
    public class TreeModelAdapter {
    private Object _instance = null;
    private transient TreeModel _model = null;
    public TreeModelAdapter() {
    ArrayList<TreeItem> rootTreeItems = new ArrayList<TreeItem>();
    TreeItem treeItem1 = new TreeItem("Fish", "http://www.someurl1.com");
    TreeItem treeItem2 = new TreeItem("Dog", "http://www.someurl2.com");
    TreeItem treeItem3 = new TreeItem("Cat", "http://www.someurl3.com");
    TreeItem treeItem2_1 = new TreeItem("Blue Heeler", "http://www.someurl4.com");
    TreeItem treeItem2_1_1 = new TreeItem("Rover", "http://www.someurl5.com");
    TreeItem treeItem2_1_2 = new TreeItem("Ruffus", "http://www.someurl6.com");
    rootTreeItems.add(treeItem1);
    rootTreeItems.add(treeItem2);
    rootTreeItems.add(treeItem3);
    ArrayList<TreeItem> treeItem2Children = new ArrayList<TreeItem>();
    ArrayList<TreeItem> treeItem2_1Children = new ArrayList<TreeItem>();
    treeItem2Children.add(treeItem2_1);
    treeItem2.setChildren(treeItem2Children);
    treeItem2_1Children.add(treeItem2_1_1);
    treeItem2_1Children.add(treeItem2_1_2);
    treeItem2_1.setChildren(treeItem2_1Children);
    this.setListInstance(rootTreeItems);
    public TreeModel getModel() throws IntrospectionException {
    if (_model == null) {
    model = new ChildPropertyTreeModel(instance, "children");
    return _model;
    public void setListInstance(List instance) {
    _instance = instance;
    _model = null;
    How can I open the links on the TreeItem treeItem1 = new TreeItem("Fish", "http://www.someurl1.com"); on a new page?

    In your af:tree nodeStamp facet you have access to the node (TreeItem in your case). If your TreeItem has a getter method for the url (you did not provide the TreeItem code) you can put an af:goLink in the nodeStamp and set the destination attribute to #{node.url} and set the TargetFrame of the golink to '_blank':
    <af:tree ...>
      <f:facet name="nodeStamp">
        <af:goLink text="goLink 1" id="gl3" destination="#{node.url}" targetFrame="_blank"/>Timo

  • Can I open pages with another id apple?

    Hi,
      can i open pages with another id apple? I have macbook pro and is registrated with one id apple, but I want open pages with another id apple, it's possible? And if yes what i do?
    Thank you!
    p.s.  I'm sorry for my english, I'm italian.... :-)

    Proceed with what? You CAN'T merge them.
    This is from that link:
    Apple IDs cannot be merged. You should use your preferred Apple ID from now on, but you can still access your purchased items such as music, movies, or software using your other Apple IDs.

  • I can't open pages files from USB and iCloud due to : "The necessary file index.xml is missing".

    I can't open pages files from USB and iCloud due to : "The necessary file index.xml is missing". Original file is written on iMac (2014) and saved to an USB stick and then transferred till macBook Pro (2009, Yosemite) for editing. Then I shared the files by iCloud but I am not able to open them on iMac again. Niether can I use the USB stick to transfer the edited files back. I'm running Pages '09 4,1 (923) on the macBook and Pges 5.5.2 (2120) on the iMac.
    Håkan

    Pages 5.5.2 is extremely incompatible with even other Macs let alone the vast majority of PC and MsWord users out there, so not a good idea to leap into the fire with both eyes shut.
    After having done that to the first Pages 5 files, Apple has repeatedly done it to even the most minor point updates. Apple can't even anticipate its own erratic changes let alone what everyone else needs doing.
    Peter

  • I can't open Pages app on iMac

    Hi all, I can't open Pages app on my computer. These are the specs:
    iMac 2.8 GHz Intel Core i5, 4GB, 2/3 of a TB free storage capacity,
    Yosemite version 10.10.2
    Originally I had iWork 09 and since I've been updating from the app store since they are available in there. Now version 5.5.2
    I wanted to create a new document and explore the templates available for it but when I click the icon of the Pages app or the name in the Finder apps list, it won't open, instead it opens another window for me to choose what I want to open -see pic below-, and as you can see from the light gray color I can't choose the app from there.
    I open the app store to see if I needed to update it and it is already done. So I don't know what to do... Can anybody help please? Thanks

    If one clicks that extreme left icon, the Favorites panel disappears, leaving the Application view we see posted. Additionally, the OP has the
    Finder Preferences ▸ Advanced ▸ All My Files checked, instead of their login directory (house icon).
    This just adds to the mayhem. Once Finder Preferences is fixed, then the OP can click Applications, and from that lengthy menu, select their login directory, or Documents.
    Why the OP did not just click New Document and review the bundled templates, is a question mark. Or click Launchpad in the Dock, to launch Pages.

  • Can't open pages documents I created 3 days ago with Pages 5.2

    get the message:
    You need a newer version of Pages to open this document.
    - I've just updated to the newest Pages and now I can't open documents I created 3 days ago in Pages. Please help.

    You have 2 versions of Pages on your Mac.
    Pages 5.2 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    You are alternately opening the wrong versions.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Previous Pages 5 versions can not open Pages 5.2 files and you will get the warning that you need a newer version.
    Pages 5 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Once opened and saved in Pages 5.2 files can not be opened in previous Pages 5 versions.
    Anything that is saved to iCloud is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Apple has removed over 95 features from Pages 5 and added many bugs:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Archive/trash Pages 5, after exporting all Pages 5 files to Pages '09 or Word .docx, and rate/review it in the App Store, then get back to work.
    Peter

  • Can't open Pages after upgrading to snow leopard on 10.6.8

    Can't open Pages after upgrading to snow leopard on 10.6.8

    Has Spotlight finished its indexing?  Check in the upper right.  If you get just the search field, it has, if it says its indexing, you have to wait before you can use anything.

  • Can't open Pages Documents

    I've upgraded all my iWork documents and now I can't open things in Pages.  I'm stuck on an endless loop of "You need to be using the most updated version .... which you can get in the app store.... blah blah blah"  I'm suing the most up-to-date versioin.  I'm using Pages 4.3 and the document I'm trying to open was created using the most updated version.  HELP.
    Thanks
    Carrie

    You have both versions of Pages on your Mac and are simply opening the wrong document in the wrong version.
    Pages 5 is in your Applications folder.
    Pages '09 is in your Applications/iWork folder.
    Pages ;'09 can not open Pages 5 documents and Pages 5 will alter/damage older Pages '09 files and not open any other.
    Pages 5 is very much a downgrade missing over 90+ features.
    Best to go back to using Pages '09:
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=432&mforum=iworktips ntrick
    Peter

  • I cannot open pages;  I am told I can't open pages while updating. I did not know I was updating.  I cannot open a new pages document.  My menu list is ok, but when I click on a document it won't open. Can you help?

    I cannot open pages.  The message says, can't open pages while being updated.  I did not knowingly update anything.
    The program is stuck in this mode. can you help?

    Your copy of Pages may have gotten stuck when downloading. This article explains how to fix a stuck Mavericks download; the same procedure should help with any application:
    How to fix broken Mac OS X Mavericks download issues | Digital Trends 
    http://www.digitaltrends.com/computing/how-to-fix-a-broken-os-x-mavericks-downlo ad/

  • HT1750 Pages, This document can't be opened because it's too old.  To open it, save it with Pages 09 first          still can't open pages document

    I recently purchased a new Mac and I am having difficulty opening older Pages documents.
    Pages, This document can't be opened because it's too old.  To open it, save it with Pages 09 first          still can't open pages document

    Either you have access to Pages ’08 v3, Pages ’09 v4, or neither. One of these older, but more functional versions of Pages can open, and export the document in question to Word. Preview on OS X 10.9.5 and Yosemite can view Pages ’08 documents (in my experience). It is not obvious to me that Preview may be using the installed Pages ’09 v4.3 to assist in opening these '08 documents.
    Once opened in Preview, you can select/paste text into Pages v5.2.2, or v5.5. If you want the images from the PDF, then export it from Preview as PDF, and then drag/drop onto latest free LibreOffice icon in the Dock, which will open the PDF for editing. Select, copy, and paste the images into Pages v5, or incorporate into Text boxes, or Shapes. When pasted, images will be in their original size/resolution, not necessarily as small as they appear in the PDF.
    If the second paragraph is a chore, then follow Peggy's advice above on the sources for purchase of Pages ’09.
    In the future, I would not recommend trusting document architecture to Apple, and use a more accessible format (.doc/x) for better cross-platform access, longevity, and application choice. You may find LibreOffice, or Office for Mac 2011 a better choice for features.

Maybe you are looking for