Internet explorer will not open web pages

HPw1858, Windows 7 connected to comcast cable. norton anti-virus program.
Internet Explorer will not open web pages - refers to Domain Name Server missing or Error 403 (Forbidden) h30155.www.hp.com
very frustrating. can you tell me what settings i need to change?

y2ken wrote:
You can try the Firefox web browser to see if you can then connect. Firefox is a better, faster, more secure browser anyway and will prompt you to transfer all your Favorites from IE.
Firefox Download
or
Try the free Fix IE utility.
FixIE Utility
or
You can try uninstalling IE8 then reinstalling it.
Uninstall IE8
I would take 'Y2ken's' advice and try Firefox.  I have used it for years with XP Pro and Ubuntu, Linux.  It definitely is more responsive.  Most of what is in IE8 was developed in FF several years ago.  FF was the first browser with tabs, for instance.
Signature:
HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
HP Photosmart 7520 AIO
++++++++++++++++++
**Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
Intelligence is God given; Wisdom is the sum of our mistakes!
I am not an HP employee.

Similar Messages

  • New tab will not open web page

    *error message when opening firefox= "Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the application and fix the problem. If you continue to use this session, you might see incorrect application behaviour when accessing security features."
    *new tabs do not open web pages
    *plugin container.exe and updater.exe do not open or run

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.org/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls

  • Internet Explorer will not open a password-protected webpage

    I've asked this question in the General Discussion forum but
    did not find a solution. I am using DW8.0.2 / MySQL 4.1 / PHP5.1 to
    create PHP login and restricted access webpages. Locally (i.e.
    Windows XP / IIS5.0), they all function properly no matter what
    browser I use. However, on my ISP's server that running Linux /
    Apache, Internet Explorer 6.x or 7.x will not open the
    password-protected webpages - all the other php pages open and
    function properly. I can use Opera, Netscape, or Firefox and the
    pw_protected webpages open fine - just not in IE.
    I've tried cookies on / off, popup blocker on / off, and
    changed my PHP login scripting - all to no avail. Any one have any
    ideas why IE won't open a PHP-scripted pw-protected webpage while
    all other browsers can?

    Thanks for your suggestion. I've added the site to IE's
    Trusted Zone... but no luck. And to test further, I've turned off
    EVERY 'disable' feature I could in IE and still no joy.
    Could the problem be how IE proceses (or doesn't process) my
    PHP logon scripts and possibly does not pass the session on to
    Apache (the server is a Linux box running Apache)? I'm enclosing my
    scripts for review and hopefully for a discovery of why this is
    happening only in IE and not the other browsers.
    Here is my logon script:
    <?php
    // *** Start the session
    session_start();
    // *** Validate request to log in to this site.
    $FF_LoginAction = $HTTP_SERVER_VARS['PHP_SELF'];
    if (isset($HTTP_SERVER_VARS['QUERY_STRING']) &&
    $HTTP_SERVER_VARS['QUERY_STRING']!="") $FF_LoginAction .=
    "?".htmlentities($HTTP_SERVER_VARS['QUERY_STRING']);
    if (isset($HTTP_POST_VARS['Username'])) {
    $FF_valUsername=$HTTP_POST_VARS['Username'];
    $FF_valPassword=$HTTP_POST_VARS['Password'];
    $FF_fldUserAuthorization="Status";
    $FF_redirectLoginSuccess="bulletin_edit.php";
    $FF_redirectLoginFailed="access_error.html";
    $FF_rsUser_Source="SELECT Username, Password ";
    if ($FF_fldUserAuthorization != "") $FF_rsUser_Source .= ","
    . $FF_fldUserAuthorization;
    $FF_rsUser_Source .= " FROM tblaccess WHERE Username='" .
    $FF_valUsername . "' AND Password='" . $FF_valPassword . "'";
    mysql_select_db($database_leathernecks, $leathernecks);
    $FF_rsUser=mysql_query($FF_rsUser_Source, $leathernecks) or
    die(mysql_error());
    $row_FF_rsUser = mysql_fetch_assoc($FF_rsUser);
    if(mysql_num_rows($FF_rsUser) > 0) {
    // username and password match - this is a valid user
    $MM_Username=$FF_valUsername;
    session_register("MM_Username");
    if ($FF_fldUserAuthorization != "") {
    $MM_UserAuthorization=$row_FF_rsUser[$FF_fldUserAuthorization];
    } else {
    $MM_UserAuthorization="";
    session_register("MM_UserAuthorization");
    if (isset($accessdenied) && false) {
    $FF_redirectLoginSuccess = $accessdenied;
    mysql_free_result($FF_rsUser);
    session_register("FF_login_failed");
    $FF_login_failed = false;
    header ("Location: $FF_redirectLoginSuccess");
    exit;
    mysql_free_result($FF_rsUser);
    session_register("FF_login_failed");
    $FF_login_failed = true;
    header ("Location: $FF_redirectLoginFailed");
    exit;
    ?>
    And here is the script that appears on each restricted
    webpage:
    <?php
    // *** Restrict Access To Page: Grant or deny access to this
    page
    $FF_authorizedUsers=" edit";
    $FF_authFailedURL="access_error.html";
    $FF_grantAccess=0;
    session_start();
    if (isset($HTTP_SESSION_VARS["MM_Username"])) {
    if (false ||
    !(isset($HTTP_SESSION_VARS["MM_UserAuthorization"])) ||
    $HTTP_SESSION_VARS["MM_UserAuthorization"]=="" ||
    strpos($FF_authorizedUsers,
    $HTTP_SESSION_VARS["MM_UserAuthorization"])) {
    $FF_grantAccess = 1;
    if (!$FF_grantAccess) {
    $FF_qsChar = "?";
    if (strpos($FF_authFailedURL, "?")) $FF_qsChar = "&";
    $FF_referrer = "Restricted Area";
    $FF_authFailedURL = $FF_authFailedURL . $FF_qsChar .
    "accessdenied=" . urlencode($FF_referrer);
    header("Location: $FF_authFailedURL");
    exit;
    ?>
    Any ideas, suggestions or help is greatly appreciated.

  • Nokia 5530 will not open web page

    Hi everyone,
    I have a Nokia 5530 since christmas with latest firmware update. My problem is that when i click into the Internet, the screen just flashes and automatically closes. I tried it with connecting to Ovi Store and the same thing happens. I am using my wireless modem to connect to the Internet and it has never once given me a problem, just today it started acting up. Another detail is when i use other applications such as Software Update or using Ovi maps, it will download easily, but just wont open web pages even though it is connected,
    Please help
    Thank you
    Solved!
    Go to Solution.

    sollie wrote:
    Ive done this and it worked too now my only problem is, when i go to connect online my phone is to give me the option of which server i wanted to connect through eg meteor/eircom/other etc but now it is just going straight through meteor and using my credit, i have configured my phone to eircom and when i go into connectivity settings it will connect through that server then but not if say i just go directly to facebook app.
    im not very technically, sorry so if i worded some things wrong i apolgise
    It's oke. In Facebook options set your accesspoint to always ask before connecting aswell as other apps like your browser, etc..... Change packet-data settings from when available to when needed.
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • Internet Explorer will not open additional tabs

    I bought a Yoga 2 Pro a couple of weeks ago an overall I really like it.  There is one thing that is a little strange.When I open up IE from the start/tablet page it will not open additional tabs if the website requests it.  It will either stay on the initial page or open a blank page.  For example; there is a website I use alot, when you click a link it opens it in another window.  When I do that it just opens a blank page.
    If I use IE from the Desktop it works fine.  Am I missing a setting somewhere?
    Thanks,
    Brian

    y2ken wrote:
    You can try the Firefox web browser to see if you can then connect. Firefox is a better, faster, more secure browser anyway and will prompt you to transfer all your Favorites from IE.
    Firefox Download
    or
    Try the free Fix IE utility.
    FixIE Utility
    or
    You can try uninstalling IE8 then reinstalling it.
    Uninstall IE8
    I would take 'Y2ken's' advice and try Firefox.  I have used it for years with XP Pro and Ubuntu, Linux.  It definitely is more responsive.  Most of what is in IE8 was developed in FF several years ago.  FF was the first browser with tabs, for instance.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Firefox will not open web pages correctly

    When using firefox i am unable to to open web pages correctly, I use talktalk.co.uk as my home page, it has always worked before, now all i get is a string of words this also applies to many other web pages. Yet on Internet explorer the page opens correctly. Using Firefox 11

    Hi,
    Please check if this happens in a [https://support.mozilla.org/en-US/kb/Managing-profiles new profile]. If the new profile is okay, you can later [https://support.mozilla.org/en-US/kb/Recovering%20important%20data%20from%20an%20old%20profile?s=profile&r=1&e=sph&as=s copy the needed personal data] from the old profile. Firefox stores your personal data and settings in [http://kb.mozillazine.org/Profile_folder another location (profile folder)] separate from its [http://kb.mozillazine.org/Installation_directory files/folder]. A new profile would have the default Firefox settings in '''Tools''' ('''Alt''' + '''T''') > [https://support.mozilla.org/en-US/kb/Options%20window Options] and [http://kb.mozillazine.org/About:config about:config], and usually would also be empty of '''Extensions''' and themes ('''Appearance''') in '''Tools''' > '''Add-ons''', and their settings. Also, a new profile would have no previous stored website cache/cookies/data/preferences etc., ('''Tools''' > [https://support.mozilla.org/en-US/kb/Clear%20Recent%20History '''Clear Recent History''']).
    [https://support.mozilla.org/en-US/kb/Profiles?s=profile&r=2&e=sph&as=s Profiles Howto]
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder & Files]
    [http://kb.mozillazine.org/About:config_entries about:config Entries]

  • Internet explorer will not open

    i have a toshiba 155cds and  when my laptop loads and i try to open internet explorer a box comes up and at the top it says internet explorer but as soon as it does it closes what should i do?

    y2ken wrote:
    You can try the Firefox web browser to see if you can then connect. Firefox is a better, faster, more secure browser anyway and will prompt you to transfer all your Favorites from IE.
    Firefox Download
    or
    Try the free Fix IE utility.
    FixIE Utility
    or
    You can try uninstalling IE8 then reinstalling it.
    Uninstall IE8
    I would take 'Y2ken's' advice and try Firefox.  I have used it for years with XP Pro and Ubuntu, Linux.  It definitely is more responsive.  Most of what is in IE8 was developed in FF several years ago.  FF was the first browser with tabs, for instance.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Safari will not open web pages anymore on my MacBook.

    I am running Mac OSX 10.7.5 Lion, Safari 6.0.2.  Although I have had occasional problems with slow loading web pages in the past,  it wasn't until yesterday that pages stopped loading entirely. I am using my iPad to post this question. The iPad, my iPod Touch and my wife's MacBook (running the exact same software) are all working normally. I have re-cycled my modem and AirPort Extreme, but the problem still exists. One strange twist - I use Evernote to keep notes and as a journal. When Evernote was open and I was using Safari unsuccessfully, I noticed that Evernote had opened 2 web pages (Apple Support) in Evernote as notes! While investigating I found that in the Develop menu, the 1st item "Open Page With" shows "Evernote 5.0.4" but not Safari or anything else as an alternative. On the Safari Preferences Menu, General, the Default web browser shows Safari 6.0.2, but on the drop-down menu Evernote 5.0.4 appears as the alternate browser.I have sent a message to Evernote support, which may be answered in a few days if I'm lucky. I have deleted Evernote from the Extensions menu which did nothing - I can still open it as usual. I have also restarted the MacBook several times, tried signing on with a new ID to make sure that  there is no problem associated with my account. In this mode, Safari still did the same thing. The problem is somewhat irregular, since the first couple of pages will usually open after I close Safari, clear history and delete caches (I always do this and normally browse in the "private browsing" mode). Next step will be to send the Evernote application to the Trash. (notes are saved on the Evernote website and are also on my iPad). I noticed that some Safari users solved this type of problem by upgrading from Lion to Mountain Lion. This would be a last resort, but I wonder if I made some change with my DNS servers it could solve the problem. My IP is Comcast and the DNS servers, they say, are generated automatically.  Also, there is no problem with my wife's MacBook/Safari, so I'm not sure this would actually help. Any suggestions will be considered helpful since I have to solve this quickly due to an upcoming travel schedule.

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up guest users” (without the quotes) in the search box. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click Log in.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    *Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Cursor will not open web page icons after upgrade, icons are not changeing cursor and page sliders not working. .

    Hi ,
    Since I upgraded none of the web pages I visit will function correctly. In Yahoo mail I cannot opem the search box, Similiary in Google I have the same problem, In addition other icons are not recognised as the curson does not change and my page sliders do not work.
    I am using Vista on a Toshiba laptop

    Hi ,
    Since I upgraded none of the web pages I visit will function correctly. In Yahoo mail I cannot opem the search box, Similiary in Google I have the same problem, In addition other icons are not recognised as the curson does not change and my page sliders do not work.
    I am using Vista on a Toshiba laptop

  • Safari will not open web pages on my Ipad3

    In General Settings, it says there is no Network Available.  How do I fix this?

    Thank You Demo for your reply.  To answer your questions:
    Yes, my wireless WiFi is on.  It is working because I am using it on my laptop now to reply to you.
    I only use my network in my home and it works.
    I must have something set wrong on my Ipad3 Settings?
    Whenever I try to use Safari, I get the message:  Safari cannot open this web page.
    Also, I have disconnected the Router power (thinking the Router was bad), waited a minute, and reconnected the power.  It doesn't fix anything regarding my Ipad3.
    Does this help you determine a possible solution?  I hope so!  Thanks anyway for your time and effort, if not!

  • Firefox will not open web pages that are called from the mail program that comes with Vista, anyone out there have a solution?

    I have installed Firefox ver 4 on a Toshiba laptop running Vista. My problem is when using the mail client that comes with Vista any url in an email message will not load in the browser, a new tab is created and has the url from the mail message but that is as far as I get. There is no revolving icon on the new tab and clicking on reload does nothing. So far this is happening with every website I have tried. There is no error message of any kind. The websites are working sites and can be opened if I navigate to them manually

    I have installed Firefox ver 4 on a Toshiba laptop running Vista. My problem is when using the mail client that comes with Vista any url in an email message will not load in the browser, a new tab is created and has the url from the mail message but that is as far as I get. There is no revolving icon on the new tab and clicking on reload does nothing. So far this is happening with every website I have tried. There is no error message of any kind. The websites are working sites and can be opened if I navigate to them manually

  • HP Laserjet P2014 will not open web page

    I have an HP 2014 that I can print to by IP address, but cannot open the web page. I also cannot receive a SNMP reply to the device. Any ideas?

    Download and run this: http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03286146&cc=us&dlc=en&lc=en
    What does it say?
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Safari will not open web page

    When we open safari and try to go to any website it will not load. the wifi is working. We are not having any issues on our phones,
    oor ipads

    Power down your modem, router and computer, then restart the modem, router and computer in that order. Wait to start each device until the previous device has completely started.

  • An imbedded URL in email Windows Mail will not open web page in Firefox?

    Using Vista Home Basic & Firefox 19.0

    Sometimes it could be a coding issue.. Try clearing cache and cookies.
    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • Will not open web page said need javascript have it

    I have up to date java firefox tells me i need javascript? on my browser
    do not know what to do now

    Uninstall Java and install Java again.

Maybe you are looking for