Web page will not open.  "Safari cannot open page.  I've deleted cache, reset, gone into proxy settings--(will not allow to go further--needs)

I am trying to figure out why some pages will not open.  I've tried proxy settings and it does not allow me to check boxes.  Certain pages--like groupon stuff--will not open.  Is there an easy fix?  Will you hep?  Thanks

I am so sorry to hear that you cannot open some web pages by typing a URL.
Please supply some specific examples, so other Readers can try them to see what the problem might be. Trial and error is impossible.

Similar Messages

  • Where did the "Stop" button go on the Navigation Bar in ff4? It isn't included in the Customize box. Is there anyway to install the "Stop" button for loading web pages or is this option compeletly gone from Firefox now?

    Just installed upgrade to Firefox 4.0. Where did the "Stop" button go on the Navigation Bar. I checked the Customize dialogue box and it isn't included. Is anyone else missing it? Is there anyway to install the "Stop" button for loading web pages or is this option completely gone from Firefox now? It was a very helpful button and allowed us users to stop a web page and move on if it wasn't what we needed.

    In Firefox 4 by default the Stop, Go and Reload buttons are combined and attached to the right hand edge of the location bar.
    When you are typing in the location bar it will show the Go button. When a site is loading it shows the Stop button. At other times it shows the Reload button.
    If you want separate buttons, right-click on a toolbar and choose Customize, you can then drag and drop the stop or reload buttons and place them elsewhere. If you place them in the order "Reload-Stop" on the right hand edge of the location bar they will be combined again. For more details on customizing the toolbar see https://support.mozilla.com/kb/How+to+customize+the+toolbar

  • HELP: "web-app" does not allow "filter"

    Here is my web.xml, but everytime I tried to start the web server 6.1, it complains:
    info: CORE3282: stdout: PARSE error at line 108 column -1
    info: CORE3282: stdout: org.xml.sax.SAXParseException: Element "web-app" does not allow "filter" here.
    failure: ContextConfig[simple] WEB3524: Parse error in application web.xml
    org.xml.sax.SAXParseException: Element "web-app" does not allow "filter" here.
    at org.apache.crimson.parser.Parser2.error(Parser2.java:3160)
    The following is my web.xml file, thank you let me know what make it!
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2_3.dtd">
    <web-app>
    <display-name>webapps-simple</display-name>
    <description>
    The jakarta-tomcat-4.0.3 sample apps ports over to Sun One Web Server.
    </description>
    <distributable></distributable>
    <servlet>
    <servlet-name>HelloWorldExample</servlet-name> <servlet-class>samples.webapps.simple.servlet.HelloWorldExample</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>HelloWorldExample</servlet-name>
    <url-pattern>/helloworld</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    </welcome-file-list>
    <taglib> <taglib-uri>http://java.apache.org/tomcat/examples-taglib</taglib-uri> <taglib-location>/WEB-INF/tlds/example-taglib.tld</taglib-location>
    </taglib>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Protected Area</web-resource-name>
    <url-pattern>/jsp/security/protected/*</url-pattern>
    <http-method>DELETE</http-method>
    <http-method>GET</http-method>
    <http-method>POST</http-method>
    <http-method>PUT</http-method>
    </web-resource-collection>
    <auth-constraint>
    <role-name>tomcat</role-name>
    <role-name>role1</role-name>
    </auth-constraint>
    </security-constraint>
    <filter>
    <filter-name>Validation Filter</filter-name> <filter-class>filter.ISValidationFilter</filter-class>
    <init-param> <param-name>onlyAllowRequestWithToken</param-name>
    <param-value>true</param-value>
    </init-param>
    </filter>
    <filter-mapping>
    <filter-name>Validation Filter</filter-name>
    <url-pattern>/filtered/*</url-pattern>
    </filter-mapping>
    </web-app>

    I also getting the same error
    my web.xml
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
         <filter>
              <filter-name>Security Filter</filter-name>
              <filter-class>org.securityfilter.filter.SecurityFilter</filter-class>
              <init-param>
                   <param-name>config</param-name>
                   <param-value>/WEB-INF/securityfilter-config.xml</param-value>
                   <description>Configuration file location (this is the default value)</description>
              </init-param>
              <init-param>
                   <param-name>validate</param-name>
                   <param-value>true</param-value>
                   <description>Validate config file if set to true</description>
              </init-param>
         </filter>
         <filter-mapping>
              <filter-name>Security Filter</filter-name>
              <url-pattern>/*</url-pattern>
         </filter-mapping>
    <!-- Action Servlet Configuration -->
    <servlet>
    <servlet-name>action</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
    <param-name>config</param-name>
    <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
    <init-param>
    <param-name>debug</param-name>
    <param-value>3</param-value>
    </init-param>
         <init-param>
              <param-name>application</param-name>
              <param-value>ApplicationResources</param-value>
         </init-param>
    <init-param>
    <param-name>detail</param-name>
    <param-value>3</param-value>
    </init-param>
    <load-on-startup>2</load-on-startup>
    </servlet>
    <!-- Action Servlet Mapping -->
    <servlet-mapping>
    <servlet-name>action</servlet-name>
    <url-pattern>*.do</url-pattern>
    </servlet-mapping>
    <!-- The Welcome File List -->
    <welcome-file-list>
    <welcome-file>abc.jsp</welcome-file>
    </welcome-file-list>
    <taglib>
    <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
    <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
    </taglib>
    </web-app>
    if I change as you said
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    line with
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    then it's not loading the application
    pls suggest me
    my mail id is [email protected]

  • How do I remove Facebook contacts from my Contacts list on my 4S???  I've already gone into iCloud settings and Facebook is not even an option to turn off and I've gone into "Groups" in my contact list and Facebook is not there either.  How do I stop this

    How do I remove Facebook contacts from my Contacts list on my 4S???  I've already gone into iCloud settings and Facebook is not even an option to turn off and I've gone into "Groups" in my contact list and Facebook is not there either.  How do I stop this??

    Hmmmm...maybe try deleting them again (I know it's a pain) and then doing a manual icloud backup (unless you already did this). Icloud may be putting them back on there. I never allowed FB to put the contacts on my phone lol. Also try going into Privacy and Contacts...make sure FB isn't on in there. Might be a few other spots to check under settings to make sure too. And...you might want to try deleting the FB app, do a icloud backup, and then reinstall FB

  • HT1349 I have multiple albums that I've purchased that iTunes will not allow me to play stating they cannot locate the source. I then tried going into available downloads in iTunes to see if I needed to download it again, and iTunes tells me it is already

    I have multiple albums that I've purchased through iTunes, and iTunes will not allow me to play them stating they cannot locate content.I tried going into iTunes Store and look for available downloads, but the store shows it's already downloaded. It's a lot of music i've bought and can't play. How do I fix this?

    Forget the pad for a moment and just think about I tunes on your computer.  Every now and then( 3 times over 6 years) when doing an I tunes upgrade, I tunes seems to lose track of some of my music files.  They show up in the I tunes listing, but when you try to play, it cannot find the source.   The cause is always that I have somehow moved some or all of the music to a library that is outside of the set of libraries I have dragged into I tunes.
    On your computer, search for one of the songs.  All the missing ones are probably together, and when you find one, you will find the rest.  When you find it, note the directory  and file path to where it lives, then add that path to your I tunes
    Ibarra.
    Note, the original listing will still be in I tunes, so you will get double listings for theses songs, and no easy way to tell which is the valid ane and which is not, other than the ! Symbol when it cannot find the file.  I know of no good way to get rid of the duplicate listing except manually going through and deleting them.
    One you get them back into your I tunes library, they will sync and play fine.
    Second side effect,  if you are streaming to atv, and it comes accross one of those entries that leads nowhere, it simply stops streaming, and you have to restart the play.

  • Call HTTP web service action not allowing HTTPS in SharePoint Designer 2013.

    HTTP works perfectly in browser and in workflow.
    HTTPS works perfectly in browser and hangs in workflow.
    Others having this issue have been advised to use OAuth2. OAuth2 is not an option without HTTPS, you're passing authorization tokens around in plaintext. This is not an acceptable solution.
    Please advise.

    It says HTTPS web services will have an Issue with the SharePoint Designer. 
    Thanks, Parth

  • How to create a jquery as a table instead of a web page so that it can be embedded into an existing web page

    I am new to Dreamweaver and I just built a jquery with 3 tabs of information I want to put into my existing web page.  It has saved it as an entire webpage, but it needs to be a table that I can insert into my existing web page.  It's 3 tabs that have product information under each tab for my customers to view. How do I do this?

    Let's start at the very beginning.
    #1 Have you defined a Local Site in DW yet?  Without this critical step, DW can't manage links & assets for you.
    Simplified site setup in Dreamweaver CS5 | Learn Dreamweaver CS5 & CS5.5 | Adobe TV
    Once your site is defined -- including the remote server log-in credentials, you can upload files or folders of files by simply clicking the UP arrow which PUTS files to remote server.  See screenshot.  Conversely, the DOWN arrow GETS files from the remote server and saves them to your Local hard drive.
    Nancy O.

  • I have lost the correct proxy settings for the ethernet connection using Safari.  How do I get back to the original ethernet proxy settings?

    I changed the ethernet proxy settings for Safari on my Mac Pro, when I was in a particular place that required extra security.  Now I cannot get the ethernet connection to work when back home.  The wireless connection works fine.  What are the original ethernet proxy settings.  How do I make the changes?
    Thanks

    From your Safari menu bar click Safari / Preferences then select the Advanced tab. Click Change Settings next to Proxies. Select Automatically from the Configure pop up menu.
    You may also have to select the Proxies tab. If any of the boxes are selected, deselect then click OK.

  • How do i prevent my open web pages from being deleted when the system is being restarted

    windows 7
    how

    Do you mean pages that are reopened in tabs via session restore?
    * http://kb.mozillazine.org/Session_Restore
    Make sure that you do not use [[Clear Recent History]] to clear the 'Browsing History' when you close Firefox.<br />
    If you use [[Clear Recent History]] to clear the 'Browsing History' when you close Firefox then restoring tabs from the last session ("Save & Quit" or "Show my windows and tabs from last time") doesn't work.

  • Cannot load any web pages on all applications after firefox upgrade ,connection ok firewall configured to allow firefox

    vista
    firefox 3.68
    hp pavillion dv6100

    I have removed and added firefox in firewall exceptions, no change
    I have turned off firewall, still no change
    I have reinstalled firefox , no change
    I have installed chrome and opera , same outcome
    All other computers using this connection are normal
    problem is isolated to this particular laptop
    thank you for your reply

  • New I pad won't load certain web pages unless I clear cache and history every time

    New I pad 64gb with Telstra pre paid.
    Full signal 3G
    Everything up to date.
    This is the scinario I am getting, and it's getting worse. I am actually writing this on my other I pad as the new one won't load this page!!!! Not happy!
    Lets say I'm on e bay searching stuff and suddenly it won't load any more pages from the search results. I can open a new tab and load other sites so the internet is working, but at this instant i cannot look at any eBay pages on the new I pad.
    I go into settings and clear browsing history and the cookies, go back into safari and I can now load eBay and view the page that wouldnt load before. Sometimes this method will work for an hour, sometimes only 2-3 mins.
    This fault is happening more and more frequently, I was on yahoo earlier reading news. Then the page wouldn't load. Couldn't load previous page either exactly the same as with eBay.
    So I go on apple.com.au and sign in to support to ask them. Page won't load . GRRRR!
    Clear the cache etc and it's fine for a few mins then the same so I am writing this off our old I pad 1, using the Internet tethered from the new iPad that wouldn't load this page
    It's happening more and more I don't know if it's a problem with Telstra or with the I pad? Is this a common problem?
    I have tried Mercury browser and Terra browser and the fault remains.
    Seems to be on any website it can happen now.
    And now when it does, I can't check e mail, load maps, carry out speed tests anything Internet related.
    I can tether the I pad and it works fine on my old one.
    Maybe faulty I pad?

    I'm thinking it may be a DNS issue. I cleared my DNS cache using OnyX and my problem went away. OnyX is a free utility and is very useful. You can get it here:
    http://www.titanium.free.fr/download.php?sid=b94ceb83c26f4f935b661c52a5f8bff1
    Ever since I did that, I haven't had any other issues. Good luck!

  • How do I eliminate firefox from remembering user name and/or passwords on certain web pages that I have PREVIOUSLY checked to REMEMBER usernames, settings, and/or passwords?

    I have selected "remember" when the question was "Do you want Firefox to remember the password for "__________" on ___.com.
    I NO LONGER want firefox to remember the password on some of those sites. HOW DO I CHANGE THIS so that the password IS NOT REMEMBERED?

    Options > Security - click the Saved Passwords button. You should be able to remove anything there that you want.
    By the way, Firefox 3.6 is now up to version3.6.20. It would be a good idea to get 3.6.20.

  • HT1212 my ipad is disabled after doing latest iso upgrade, did not recognise passcode, will not allow system restore,,,,, help needed

    my ipad did not recognise pass code and was disabled after completing latest apple upgrade,,, thanks alot apple, i now have a $800 clock,,,can anyone help

    Follow the instructions from the link you posted from  > iOS: Forgotten passcode or device disabled after entering wrong passcode
    If nothing there helps, contact Apple >  Contacting Apple for support and service

  • I purchased the display version of my mac pro and it had the Pages app.  I just reset it to factory settings and the app is no longer on it.  Is there a way I can get it back for free?

    I purchased the display version of my Macbook Pro at a navy exchange.  The woman working at the store did not know how to reset to factory so I took it home as was.  I have been using it for about a month and the laptop had Pages and Keynote on it already.  I just reset to factory settings and it now has neither.  Is there a way to get these back for free?  I think my computer purchase makes it eligible to have these apps for free but since I reset it they are gone.

    Go to the App Store where you can purchase copies of the apps. You cannot get them for free. The ones installed belonged to the previous owner. You will need to purchase using your Apple ID.

  • I have the new macbook pro from late 2011. when i try plugging my cannon gl2 into the mac via firewire 800 it does not show up in iMovie as an option to import from. i even have gone into my settings on the camera and changed it to vcr.

    I have the new MacBook Pro from late 2011. "the one before the new ritina display" i have a cannon gl2 video camera which is mini dv. when i plug it into my mac via firwire 800 it does not show up in the iMovie. i have set the settings on the camera to vcr mode and changed it to av->dv out. when i click on the import from camera on imovie it doesnt even show my camera in it. it just gives me the option to import video from my facetime camera. the camera is turned on the wires are connected i know for fact that its a firewire and not a usb. i know what they each look like. i bought the firewire cable and it was marked down cause it was an opened and used item. would it be possible that it could be deffected and if that is not the reason what other options do i have?

    I would say that odds are high that you have a bad cable. Maybe that is why they returned it.
    I would suggest trying a different firewire cable.
    You can find Firewire cables inexpensively at monoprice.com. You need a 4 pin to 9 pin firewire cable.
    Here is a link.
    http://www.monoprice.com/products/subdepartment.asp?c_id=102&cp_id=10301
    Other things to check:
    Is your camera plugged in to wall power (not to batteries only). Must be hooked to an AC power source to import.

Maybe you are looking for

  • Report on Open Items along with Qty & Value for LA confirmed items

    Hi, I would like to know a report of Open POs(No Goods receipt made) but LA confirmed Items along with Values(Amount) i.e List of confirmed,unsent items along with Values for plant wise or vendor wise or PO Number wise. Regards, Vengat

  • How to upload a file into specified location

    Hi Frndz.. How to upload a file using File upload feature in web dynpro into our specified location(usr/sap/Images/....),not into  workspace r default path in server. Thanks in Advance Regards Rajesh

  • Movies, no picture, just sound on iPod

    I have 5th Generation (30gb) iPod(2yrs old). I purchased 2 movies from the iTunes store. They show up and play in iTunes. I synced to my iPod, they both show up in the movies, but only the sound plays. On the screen no movie, just a little thumbnail

  • Different GC time on identical servers

    I have 3 identical servers in a clustered environment with the same hardware and applications, even the java arguments are the same. However, I am seeing a different GC timing across the 3 servers. One of the servers is doing major GC at about every

  • ACE 4710 Issue

    Dears, I have Cisco 4710 configured, but my issue that I can't ping the Virtual IP. Attached the configuration of the ACE4710. Appreciate you support, Regards.