Access my web sites

Since my website hosting provideder was hacked i have been unable to access my websites. They now tell me everything is working fine. However BT have not yet updated their DNS records and it is only BT that now is pointing the websites at the wrong place.
Please can you ypdate your routers/DNS servers ASAp.
regards
Paul McCherry

this is a customer help customer forum  your post does not go to BT
you need to remove your link or mods will
If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

Similar Messages

  • Since I updated my IPad software to iOS 5.0.1 from 5.0, I cannot access some web sites. Hoy can I go back?

    Since I updated my IPad software to iOS 5.0.1 from 5.0, I cannot access some web sites. How can I go back?

    Sorry, you cannot downgrade iOS software.
    First thing to try is a reboot of your iPad. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider until the Apple logo appear. Let go of the buttons and let the iPad restart. See if that fixes your problem.

  • I cannot access common web site like Paypal. I get an "Untrusted Connection" screen. I have accessed Paypal in the past. This also happens with Capital One.

    Just in the past week, when I try to access many web sites, including PayPal and Capital One, I get a Untrusted Connection screen and it prevents me from entering these sites.

    hello ra12rick, first please make sure that the date, time & timezone are set correctly on your system. if this doesn't solve the issue (or it is already set properly), a possible solution depends on different factors:
    * what is the '''error code''' shown under ''technical details'' on the error page?
    in case the error code equals ''sec_error_unknown_issuer'', please attempt to add an exception on the bottom of the error page & inspect the certificate (see the screenshot attached for instructions):
    * which '''issuer information''' does the certificate contain?
    thank you!

  • What event handling code do I need to access a web site ?

    Hello
    I am doing a GUI program that would go to a program or a web site when a button is clicked. What event handling code do I need to add to access a web site ?
    for instance:     if (e.getSource() == myJButtonBible)
              // go to www.nccbuscc.org/nab/index.htm ? ? ? ? ? ? ?
            } below is the drive class.
    Thank you in advance
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    import java.awt.event.*;
    import javax.swing.JEditorPane.*;
    public class TryGridLayout
      public TryGridLayout() {
        JFrame myJFrame = new JFrame("Choose your program");
        Toolkit myToolkit = myJFrame.getToolkit();
        Dimension myScreenSize = myToolkit.getDefaultToolkit().getScreenSize();
        //Center of screen and set size to half the screen size
        myJFrame.setBounds(myScreenSize.width / 4, myScreenSize.height / 4,
                           myScreenSize.width / 2, myScreenSize.height / 2);
        //change the background color
        myJFrame.getContentPane().setBackground(Color.yellow);
        //create the layout manager
        GridLayout myGridLayout = new GridLayout(2, 2);
        //get the content pane
        Container myContentPane = myJFrame.getContentPane();
        //set the container layout manager
        myContentPane.setLayout(myGridLayout);
        //create an object to hold the button's style
        Border myEdge = BorderFactory.createRaisedBevelBorder();
        //create the button size
        Dimension buttonSize = new Dimension(190, 100);
        //create the button's font object
        Font myFont = new Font("Arial", Font.BOLD, 18);
        //create the 1st button's object
        JButton myJButtonCalculator = new JButton("Calculator");
        myJButtonCalculator.setBackground(Color.red);
        myJButtonCalculator.setForeground(Color.black);
        // set the button's border, size, and font
        myJButtonCalculator.setBorder(myEdge);
        myJButtonCalculator.setPreferredSize(buttonSize);
        myJButtonCalculator.setFont(myFont);
        //create the 2nd button's object
        JButton myJButtonSketcher = new JButton("Sketcher");
        myJButtonSketcher.setBackground(Color.pink);
        myJButtonSketcher.setForeground(Color.black);
    // set the button's border, size, and font
        myJButtonSketcher.setBorder(myEdge);
        myJButtonSketcher.setPreferredSize(buttonSize);
        myJButtonSketcher.setFont(myFont);
        //create the 3rd button's object
        JButton myJButtonVideo = new JButton("Airplane-Blimp Video");
        myJButtonVideo.setBackground(Color.pink);
        myJButtonVideo.setForeground(Color.black);
    // set the button's border, size, and font
        myJButtonVideo.setBorder(myEdge);
        myJButtonVideo.setPreferredSize(buttonSize);
        myJButtonVideo.setFont(myFont);
        //create the 4th button's object
        JButton myJButtonBible = new JButton("The HolyBible");
        myJButtonBible.setBackground(Color.white);
        myJButtonBible.setForeground(Color.white);
    // set the button's border, size, and font
        myJButtonBible.setBorder(myEdge);
        myJButtonBible.setPreferredSize(buttonSize);
        myJButtonBible.setFont(myFont);
        //add the buttons to the content pane
        myContentPane.add(myJButtonCalculator);
        myContentPane.add(myJButtonSketcher);
        myContentPane.add(myJButtonVideo);
        myContentPane.add(myJButtonBible);
        JEditorPane myJEditorPane = new JEditorPane();
        //add behaviors
        ActionListener myActionListener = new ActionListener() {
          public void actionPerformed(ActionEvent e) throws Exception
            /*if (e.getSource() == myJButtonCalculator)
              new Calculator();
            else
            if (e.getSource() == myJButtonSketcher)
              new Sketcher();
            else
            if (e.getSource() == myJButtonVideo)
              new Grass();
            else*/
            if (e.getSource() == myJButtonBible)
               // Go to http://www.nccbuscc.org/nab/index.htm
        }; // end of actionPerformed method
        //add the object listener to listen for the click event on the buttons
        myJButtonCalculator.addActionListener(myActionListener);
        myJButtonSketcher.addActionListener(myActionListener);
        myJButtonVideo.addActionListener(myActionListener);
        myJButtonBible.addActionListener(myActionListener);
        myJFrame.setVisible(true);
      } // end of TryGridLayout constructor
      public static void main (String[] args)
        new TryGridLayout();
    } // end of TryGridLayout class

    Hello
    I am doing a GUI program that would go to a program or a web site when a button is clicked. What event handling code do I need to add to access a web site ?
    for instance:     if (e.getSource() == myJButtonBible)
              // go to www.nccbuscc.org/nab/index.htm ? ? ? ? ? ? ?
            } below is the drive class.
    Thank you in advance
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    import java.awt.event.*;
    import javax.swing.JEditorPane.*;
    public class TryGridLayout
      public TryGridLayout() {
        JFrame myJFrame = new JFrame("Choose your program");
        Toolkit myToolkit = myJFrame.getToolkit();
        Dimension myScreenSize = myToolkit.getDefaultToolkit().getScreenSize();
        //Center of screen and set size to half the screen size
        myJFrame.setBounds(myScreenSize.width / 4, myScreenSize.height / 4,
                           myScreenSize.width / 2, myScreenSize.height / 2);
        //change the background color
        myJFrame.getContentPane().setBackground(Color.yellow);
        //create the layout manager
        GridLayout myGridLayout = new GridLayout(2, 2);
        //get the content pane
        Container myContentPane = myJFrame.getContentPane();
        //set the container layout manager
        myContentPane.setLayout(myGridLayout);
        //create an object to hold the button's style
        Border myEdge = BorderFactory.createRaisedBevelBorder();
        //create the button size
        Dimension buttonSize = new Dimension(190, 100);
        //create the button's font object
        Font myFont = new Font("Arial", Font.BOLD, 18);
        //create the 1st button's object
        JButton myJButtonCalculator = new JButton("Calculator");
        myJButtonCalculator.setBackground(Color.red);
        myJButtonCalculator.setForeground(Color.black);
        // set the button's border, size, and font
        myJButtonCalculator.setBorder(myEdge);
        myJButtonCalculator.setPreferredSize(buttonSize);
        myJButtonCalculator.setFont(myFont);
        //create the 2nd button's object
        JButton myJButtonSketcher = new JButton("Sketcher");
        myJButtonSketcher.setBackground(Color.pink);
        myJButtonSketcher.setForeground(Color.black);
    // set the button's border, size, and font
        myJButtonSketcher.setBorder(myEdge);
        myJButtonSketcher.setPreferredSize(buttonSize);
        myJButtonSketcher.setFont(myFont);
        //create the 3rd button's object
        JButton myJButtonVideo = new JButton("Airplane-Blimp Video");
        myJButtonVideo.setBackground(Color.pink);
        myJButtonVideo.setForeground(Color.black);
    // set the button's border, size, and font
        myJButtonVideo.setBorder(myEdge);
        myJButtonVideo.setPreferredSize(buttonSize);
        myJButtonVideo.setFont(myFont);
        //create the 4th button's object
        JButton myJButtonBible = new JButton("The HolyBible");
        myJButtonBible.setBackground(Color.white);
        myJButtonBible.setForeground(Color.white);
    // set the button's border, size, and font
        myJButtonBible.setBorder(myEdge);
        myJButtonBible.setPreferredSize(buttonSize);
        myJButtonBible.setFont(myFont);
        //add the buttons to the content pane
        myContentPane.add(myJButtonCalculator);
        myContentPane.add(myJButtonSketcher);
        myContentPane.add(myJButtonVideo);
        myContentPane.add(myJButtonBible);
        JEditorPane myJEditorPane = new JEditorPane();
        //add behaviors
        ActionListener myActionListener = new ActionListener() {
          public void actionPerformed(ActionEvent e) throws Exception
            /*if (e.getSource() == myJButtonCalculator)
              new Calculator();
            else
            if (e.getSource() == myJButtonSketcher)
              new Sketcher();
            else
            if (e.getSource() == myJButtonVideo)
              new Grass();
            else*/
            if (e.getSource() == myJButtonBible)
               // Go to http://www.nccbuscc.org/nab/index.htm
        }; // end of actionPerformed method
        //add the object listener to listen for the click event on the buttons
        myJButtonCalculator.addActionListener(myActionListener);
        myJButtonSketcher.addActionListener(myActionListener);
        myJButtonVideo.addActionListener(myActionListener);
        myJButtonBible.addActionListener(myActionListener);
        myJFrame.setVisible(true);
      } // end of TryGridLayout constructor
      public static void main (String[] args)
        new TryGridLayout();
    } // end of TryGridLayout class

  • Pc users cannot access my web site

    pc users trying to access my web site that I designed on iweb cannot play my podcast or my music samples. Why????
    Powerbook G4 10.4   Mac OS X (10.4.7)  

    That's because your QT clips are probably encoded with the latest video codec H.264. This is only available with QT 7 and is the new default for iLife applications. In order for your PC friends to see everything, they must download QuickTime 7.
    Refer them here... http://www.quicktime.com

  • Safari Does Not Allow Access to Web Sites With Wildcard X.509 Certificates

    I'm really getting irritated with the Safari browser in OSX Mavericks.  One of the more irritating features involves the inability to access web sites that use improperly constructed wildcard X509 certificates.  By improperly constructed, I mean that the X.509 certificate does not contain the host name of the system being accessed in the Subject Alternate Name list.
    Earlier versions of Safari would, at least, allow me to examine the X.509 certificate and determine whether I wanted to proceed with the connection.  The current version of Safari doesn't provide that option.  It simply displays a screen stating that it can't establish a secure connection to the web site.  If you actually have a need to access the web site, you need to use a web browser like Firefox.
    What's really irritating about this is that Safari had improved to the point where it was reliable enough to be used as the default browser.
    Is there a Safari.plist setting that will allow me to change the behavior of Safari when it encounters an improperly constructed X.509 certificate and provide me the opportunity to examine the certificate to decide whether to proceed or not?

    Hi
    Have a look in your Networks panel in System Preferences. Click on the Advanced button, then Proxies. There may be an errant proxy present blocking the site load.

  • Managed account. trying to get safari to access ALL web sites

    I have a managed account for someone on my computer. Everything is working well except when this person goes to get their web mail and there is a link in the message to a web site. When the person clicks on the web site in the message, sarfari asks for administrative permisson in order to access the web site.
    Is there any way to give a person with a managed account ALL access to web sites without having the admin clearing it for them?

    OK, I am going to answer my own question.
    I put FireFox on the desktop of the managed account and now that person has the ability to go online and download files from their web mail as well as view it once it is downloaded. End of problem. Now, I have to get this person off of my computer all the time LOL.

  • Can only access one web site

    I can only access one web site . www.cisco.com. I am connected to the internet via a lynksys DSL Router, I am using dhcp and NAT from the Lynksys note:works fine for 3 other windows based pc's.
    when I try to connect to any other site the page Hangs during load and neve displays.
    I can ping all of the web sites that do not come up
    I am using a SunBlade 100 and did a new install. I tried the install with webstart and had the same result during the install. again I can only open sucessfully www.cisco.com.

    Hello!
    I am getting this error, but the above fix does not solve the issue, however I do know what has caused it.
    I have an edmx file in a WCF webservice which feeds a silverlight app.  The edmx is quite complex and a bit fragile, but was working fine up until I introduced our Industry Codes view into the model.  The view is basically { ID, ParentID, Name, ... }.  In my model I have created an association to itself which describes Children(*)/Parent(0/1) so I have a nice and tidy hierarchical structure.  The edmx and the service build without any errors - hurrah!  However, when I update the service reference I then get the below error (and a whole load of others as none of the webservice objects exist anymore):
    Error 21 Custom tool error: Failed to generate code for the service reference 'WCF_ContactAdmin'.  Please check other error and warning messages for details. X:\2008-054 ContactAdmin_Silverlight\Contact2_Admin_Silverlight\Service References\WCF_ContactAdmin\Reference.svcmap 1 1 Contact2_Admin_Silverlight
    When I try the fix mentioned in the link above this error disappears, but then so do all the objects in the datamodel, so I cannot continue from there.
    Having the hierarchical data objects defined in the EDM will make like so much easier in future, any help will be greatly appreciated, thank you!!
    Tim
    Web Developer at Terrapinn

  • Can't access some web sites with safari

    Can't access financial web site since time before last of safari update. Any help?

    In my original post, not today's, I had said I was having the issues on the Mini, running OSX 10.6.8 and Safari v.5.1.5 for my bank's pill pay. I should have been more specific as to which machine and OSX Safari browser I'm having the T-Mobile problem with. My mistake.
    It is on both the MacMini and now the Air too. A moment ago, I was able to log in to my.t-mobile.com on the Air, but after putting into my Bookmarks folder, I can't do it anymore. The Log in button comes up greyed out instead of green.
    I'm also still having trouble with my bank's bill pay section on both computers too.
    I wonder if it's related to the saving of the log in info or putting in the Bookmark Folder?

  • Several times while attemping to access new web sites it said that I needed Adobe Flash and would not let me access the site.  What is the answer?

    Seeveral times while atttempting to access various web sites I get the message can not access because I do not have Adobe Flash.

    Email the webmaster of the sites, tell him or her to get into the 21st century and stop using Flash.

  • What is missing when I get a blank white screen when I try to Access some web sites?

    On some web sites, I get a blank white screen when I try to access them.

    You can try these steps in case of issues with web pages:
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How to enter a secure address in security so i can have access to web site

    I used to be able to enter an address from a secure website and be able to access when I had internet explorer and with firefox I dont know where to enter address so I can access the secured we site.

    Firefox doesn't have security zones like Internet Explorer. There's no Trusted Sites list to add sites to. Normally, web sites simply work, whether they're secure or not.
    If secure websites don't load, see the following article.
    * [[Websites don't load - troubleshoot and fix error messages]]
    If the website does load but you're having some other problem with it, see the following article.
    * [[Websites look wrong or appear differently than they should]]
    If neither of those answer your question, please post a link to the site and or a description of what doesn't work, or whatever error message is displayed.

  • Internal 500 error while accessing TFS web site

    Hi all,
    I have installed & configured Team Foundation Server 2013 & SharePoint Foundation 2013 in my environment. I am facing an issue
    whenever I try to open the TFS site like "https://nc1vwstfs.ranchi.com/tfs". I am getting "HTTP 500 Internal Server error". the same site can be accessed from another system without any error. In order to look for details error message
    I turned off the IE settings "Show friendly error message" from internet options, advanced option. After that I got the below error which stated the actual reason.
    The same site is accessible from another system without any error. But I am getting the error from the same system in which I have installed the TFS server itself. Its a little bit strange to me. I am clueless.
    Could you please help me in resolving this issue. Any pointer to this would be highly appreciated.
    Thanks.

    Thanks for reply.
    I am using separate servers for Application Tier & Data Tier. I am able to access the tfs web site from visual studio too.
    The issue in my case was with the service account password which was not updated in one of the application tier nodes. In my environment I have two application tier nodes tfs1 & tfs2 and both are configured as NLB (network load balanced) they both are
    using the same Data Tier. The purpose of creating NLB is to distribute the load between app  tiers. I had updated the service account password of tfs in one node but did not update the password in another node, causing the tfs web site to fail to launch
    sometime. When I updated the service account credentials in both the app tiers then the above issue got resolved. Now the tfs web site is opening without this error.
    Thanks.

  • How to access old Web sites that exist in iDisk Sites folder

    I have old personal Web sites that still appear to exist on my iDisk, under Home>Sites. But if I can't remember their URL, how do I access them? It seems that if I can see them on iDisk, there ought to be some sort of option to access them or to find the URL. No matter how much I poke around on iDisk, I can't find any way to access these old Web pages. Any idea?
    I can download the parts of the site, and I guess I could re-assemble them, but why bother, if they are already set up and sitting on iDisk?

    Terry Plowman wrote:
    I have old personal Web sites that still appear to exist on my iDisk, under Home>Sites. But if I can't remember their URL, how do I access them? It seems that if I can see them on iDisk, there ought to be some sort of option to access them or to find the URL. No matter how much I poke around on iDisk, I can't find any way to access these old Web pages. Any idea?
    I can download the parts of the site, and I guess I could re-assemble them, but why bother, if they are already set up and sitting on iDisk?
    Try http//web.mac/com/<yourdot_mac_id>/<folder_insites>

  • Solaris 10 11/06 - Cannot access external web sites from server

    Hi,
    I am relatively new with Solaris so I hope this is something simple. I just installed Solaris 10 11/06 with the `Secure By Default` option.
    From the command line I can use dig and nslookup to resolve external web sites fine, but if I try to use the update conection manager (desktop), mozilla browser (desktop), or pkg-get (command line) it fails to resolve the external sites. I have a valid resolv.conf file and I have named installed and running.
    It is on a LAN with other servers that have no problems with external access. I am running as root in all instances, so is there some permissions issue I am missing with this install/release?
    I don't want to open up the install more than I have to.
    Thanks,

    Hi again,
    I figured it out. The nsswitch.conf file was not referencing dns as part of the `hosts` and ipnodes` resolution methods. Once I added this and restarted named it worked.
    group: files
    hosts: files dns
    ipnodes: files dns
    networks: files
    -----------------------

  • Safari update does not access some web sites

    I just did the latest Mac update, the Safari, Quicktime,Itunes update. And now Safari does not allow me to access my own Flash based web site. It says it's loaded 3 of 4 and then just stops, no error message, nothing, just a blank page.
    And worse I am not the only person having this problem, several other people on Macs, in different parts of the country,and using Safari also can not access my site. However Firefox has no problem on my computer or theirs. Worse still, I am traveling and will be away for several weeks more and it's the holidays which is a key time for my website as it is an important sales tool for my business. There haven't been any changes to the website itself for over a year. I guess I just won't be expecting any business from Mac users this Christmas........
    Also other websites seem to have loading issues as well.
    I used to look forward to Apple updates as they USED to improve the performance of my computer, however the last two updates caused severe problems to a computer that had been working perfectly.

    Hello,
    I'm afraid that site doesn't work either for me with Safari 3.0.4 on OS X 10.4.11.
    The page appears to load but only displays a blank page.
    The W3C (web standards consortium) validation tool shows a few errors with the site: [validation results|http://validator.w3.org/check?uri=www.kosoff.com&charset=%28detect+auto matically%29&doctype=Inline&group=0]

Maybe you are looking for

  • Cannot get a particular account to authenticate

    Hi, I've been struggling with CPS for a couple of weeks. Because we bought it, so now I gotta make it work. I've configured CPS to authenticate against our ADS. The authentication method is "Windows domain". When I use "Test Search", it returns all u

  • Problem filling out a form exported from pdf to docx.

    I "successfully" exported a pdf form to word docx.  The form looks exactly like the original.  However, when I attempt to fill in the blanks (which are large)  the text gets dropped in vertically e.g.  first name la                                   

  • Error 500 Internal Server Error" When Generating Hyperion Financial Reports in PDF Format

    We are unable to open pdf reports in Workspace with the following error. It was all working fine and doesn't work now for unknown reasons. Error 500 Internal Server Error" When Generating Hyperion Financial Reports in PDF Format We are on 11.1.2.1 en

  • Unable to install the State Machine Toolkit in LabView 8.2

    I am in the process of upgrading my version of LabView to 8.2. I have the State Machine Toolkit working (well) on 8.0.1.  I am attempting to install it in 8.2, but I have not had much success. I can view a State Machine diagram in 8.2, but do not hav

  • Updation of missing 0unit field

    in my transaction table i have a 0unit column with the list of unit/currency...i have dozen in this list but when i check in the dimensions of the quantity this is missing therefore i get a error which says error in convertion.How can i load dozen in