How can I resolve numerous network error messages

Several times an hour for the past week I get this message when I enter or click on a website; "Network Error Your request could not be processed because an error occurred contacting the DNS server. The DNS server may be temporarily unavailable, or thee could be a network problem. For assistance, contact your network support team."
This is a home installation. I have no network assistance support team.

See http://kb.mozillazine.org/Error_loading_websites#DNS

Similar Messages

  • How can I resolve my R6025 error message in inDesign CC?

    I am running inDesign CC 64 bit on a Windows 8.1 HP Pavilion desktop.  For disclosure, I also have inDesign CC and inDesign CS6 installed.  All versions of inDesign are installed via the Creative Cloud.  I experienced the same issue before and after upgrading to the newest version.
    While in the process of creating an ePub, I receive a Microsoft Visual C++ Runtime Library; Runtime Error!  Program C:\... R6025 - pure virtual function call with the option to click OK.  Then I see Adobe inDesign CC has stopped working.
    I basically open my book, highlight the documents in it, Export book to ePub, choose a name that does not already exist, change the graphic to some other JPG file, set image size to Relative to Text Flow, image quality to Maximum, put in my ISBN for the unique identifier, and click OK.  Then the error occurs.
    I produced two eBook files for other books today.  This issue only occurred when I took a book and documents that had been up converted from CS5.5 to the now previous version of CC.  I haven't re-tried the ebook that actually worked to see whether it would work again.
    The technotes in the Community relate to CS4, so I was learious as to applying the solutions mentioned within.

    Pooja,
    Thank you, but that is not necessary.
    For disclosure, I uninstalled CS6 (I only installed it because it was compatible with the Amazon MOBI export tool), CC, and CC-64 bit.  I then reinstalled inDesign CC.  I then deleted the temp folders inDesign had created before when it attempted to produce the ePub files in earlier iterations.
    I opened my problem book file, initiated the export, and used the default export settings.  It worked!  I inrementally customized the settings, running an export after each tweak, and it continued to work without issue.  Finally, I applied all of my settings, and it worked.
    Success!
    Of course, one wonders why it worked.  I will say that, prior to uninstalling inDesign, after an aborted attempt to export to ePub, when I would launch back into inDesign, an untitled.indd file would always be waiting for me, in addition to any files I had had open when attempting the export.  I think it was this untitled document that was somehow clogging up the works.
    Regardless of why, uninstalling and reinstalling inDesign CC resolved this issue.
    Cheers!
    Christopher

  • How can i resolve the -1 error occuring during the iphone restoring process.

    how can i resolve the -1 error occuring during the iphone restoring process.

    hi ive also got the same probblem ive had it working last night but then after 2 hours of working it decided to put the phone back into recovery mode plus its an unknow error (36) Ive tried to connect to i tunes and it started to recovery and wipe the to put it back into factory settings then came up with the error 36  can any one help

  • How can I get past the error messages that keep popping up when I try to download Flash player?

    How can I get past the error messages that keep popping up every time I try to download anything?

    Hi
    Could you please let us know more about the error messages that you got?
    The following page has information on the error messages: http://helpx.adobe.com/content/help/en/flash-player/kb/installation-problems-flash-player- windows.html
    Thanks,
    Sunil

  • How can I put all output error message into a String Variable ??

    Dear Sir:
    I have following code, When I run it and I press overflow radio button, It outputs following message:
    Caught RuntimeException: java.lang.NullPointerException
    java.lang.NullPointerException
         at ExceptionHandling.ExceptTest.actionPerformed(ExceptTest.java:72)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.JToggleButton$ToggleButtonModel.setPressed(JToggleButton.java:291)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.Component.processMouseEvent(Component.java:6038)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3260)
         at java.awt.Component.processEvent(Component.java:5803)
         at java.awt.Container.processEvent(Container.java:2058)
         at java.awt.Component.dispatchEventImpl(Component.java:4410)
         at java.awt.Container.dispatchEventImpl(Container.java:2116)
         at java.awt.Component.dispatchEvent(Component.java:4240)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
         at java.awt.Container.dispatchEventImpl(Container.java:2102)
         at java.awt.Window.dispatchEventImpl(Window.java:2429)
         at java.awt.Component.dispatchEvent(Component.java:4240)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)Caught RuntimeException: java.lang.NullPointerException
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)I hope to catch all these error message into a String Variable such as StrErrorMsg, then I can use System.out.println(StrErrorMsg) to print it out or store somewhere, not only display at runtime,
    How can I do this??
    Thanks a lot,
    See code below.
    import java.awt.Frame;
    import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.io.FileInputStream;
    import javax.swing.ButtonGroup;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JRadioButton;
    public class ExceptTest extends JFrame implements ActionListener {
        private double[] a;
      private JRadioButton divideByZeroButton;
      private JRadioButton badCastButton;
      private JRadioButton arrayBoundsButton;
      private JRadioButton nullPointerButton;
      private JRadioButton negSqrtButton;
      private JRadioButton overflowButton;
      private JRadioButton noSuchFileButton;
      private JRadioButton throwUnknownButton;
      public ExceptTest() {
        JPanel p = new JPanel();
        ButtonGroup g = new ButtonGroup();
        p.setLayout(new GridLayout(8, 1));
        divideByZeroButton = addRadioButton("Divide by zero", g, p);
        badCastButton = addRadioButton("Bad cast", g, p);
        arrayBoundsButton = addRadioButton("Array bounds", g, p);
        nullPointerButton = addRadioButton("Null pointer", g, p);
        negSqrtButton = addRadioButton("sqrt(-1)", g, p);
        overflowButton = addRadioButton("Overflow", g, p);
        noSuchFileButton = addRadioButton("No such file", g, p);
        throwUnknownButton = addRadioButton("Throw unknown", g, p);
        getContentPane().add(p);
      private JRadioButton addRadioButton(String s, ButtonGroup g, JPanel p) {
        JRadioButton button = new JRadioButton(s, false);
        button.addActionListener(this);
        g.add(button);
        p.add(button);
        return button;
      public void actionPerformed(ActionEvent evt) {
        try {
          Object source = evt.getSource();
          if (source == divideByZeroButton) {
            a[1] = a[1] / a[1] - a[1];
          } else if (source == badCastButton) {
            Frame f = (Frame) evt.getSource();
          } else if (source == arrayBoundsButton) {
            a[1] = a[10];
          } else if (source == nullPointerButton) {
            Frame f = null;
            f.setSize(200, 200);
          } else if (source == negSqrtButton) {
            a[1] = Math.sqrt(-1);
          } else if (source == overflowButton) {
            a[1] = 1000 * 1000 * 1000 * 1000;
            int n = (int) a[1];
          } else if (source == noSuchFileButton) {
            FileInputStream is = new FileInputStream("Java Source and Support");
          } else if (source == throwUnknownButton) {
            throw new UnknownError();
        } catch (RuntimeException e) {
          System.out.println("Caught RuntimeException: " + e);
          e.printStackTrace();
          System.out.println("Caught RuntimeException: " + e);
        } catch (Exception e) {
          System.out.println("Caught Exception: " + e);
      public static void main(String[] args) {
        JFrame frame = new ExceptTest();
        frame.setSize(150, 200);
        frame.addWindowListener(new WindowAdapter() {
          public void windowClosing(WindowEvent e) {
            System.exit(0);
        frame.show();
    }

    yes, I update as follows,
    but not looks good.
    import java.io.*;
    public class UncaughtLogger implements Thread.UncaughtExceptionHandler {
        private File file;
        private static String errorMessage;
        public UncaughtLogger(File file) {
            this.file = file;
            //Thread.setDefaultUncaughtExceptionHandler(this);
        public UncaughtLogger(String str) {
            this.errorMessage = str;
            Thread.setDefaultUncaughtExceptionHandler(this);
        //@Override()
        public void uncaughtException(Thread t, Throwable e){
            try {
                log(e);
            } catch (Throwable throwable) {
                System.err.println("error in logging:");
                throwable.printStackTrace();
        private void log(Throwable e) throws IOException {
            PrintWriter out = new PrintWriter(new FileWriter(file, true));
            try {
                e.printStackTrace(out);
            } finally {
                out.close();
        private static UncaughtLogger logger = new UncaughtLogger(new File("C:/temp/log.txt"));
        private static UncaughtLogger logger2 = new UncaughtLogger(errorMessage);
        public static void main(String[] args) {
                String s1 = "Hello World!";
                s1 = null;
                String s2 = s1.getClass().getName();
                System.out.println(s1);
                System.out.println(s2);
                System.out.println("errorMessage =" + errorMessage);
    }

  • How can I get rid of error message?

    Have tried to set up my pop3 email on my 6700 slide using the same settings I've always used on previous phones/pc and for some reason emails just won't send.  However my main problem is that I keep getting a message flash on screen saying 'Unable to send message:[Email address].  As soon as I clear it, it comes back about 2 seconds later and just won't go away.  Stops me doing anything on the phone as I have to keep clearing the message every few seconds.  I've gone into drafts/outbox, every folder I can find in 'Messaging' and there's no copy of the email to even delete it.  I've even gone to my mail server on the web and the message isn't showing.  From the mailbox itself on the phone, I've tried to folders under 'More folders' but there's nothing showing - no sent or drafts folders.  How can I stop this error message appearing every 2 seconds?

    Hello, Sorry to hear that you can't get rid of this message from your device. I suggest you try going to http://email.nokia.com and register there. I think you'll find your email experience much more to your liking there.
    Chris McK - Nokia Messaging/Social Product Marketing

  • How can I stop getting the error message of firefox not being permitted into a website?

    Okay so yesterday while on my school site trying to do work and access my course, this error message popped up saying either my internet connection is not good, which it is working, or that the website is busy but it wasn't so it had to be with my firewall and firefox. So I went to firefox website to see if I can fix it, I did what they said to do and to remove firefox from the list of programs I'm allowing in and then to allow it back in. And it didn't work. So i updated firefox and it worked perfectly.
    Until today, I tried to access my course and it popped up with the same message. So I tried to do what I did yesterday with removing it from the list and allowing it back in but it didn't work. And firefox is up to date so I honestly don't know what else to do. Can you help?

    Sounds like you were 'fixing' the firewall for Firefox access. If Firefox is working everywhere except your school website, I doubt if your issue is with the firewall.
    Please provide a screenshot of that error message.
    https://support.mozilla.org/en-US/kb/how-do-i-create-screenshot-my-problem
    It is best to use a compressed image type like PNG or JPG to save the screenshot and make sure that you do not exceed a maximum file size of 1 MB.
    Then use the '''Browse ....''' button below the '''''Post a Reply''''' text box to upload the screenshot.

  • How do I resolve a (-50) error message?

    When I try to share a music video with iDVD, it returns the error message, "Unable to prepare project for publishing. The project could not be prepared for publishing because an error occurred. (-50)" I tried sharing with iTunes and Media Browser, but neither worked. How do I rectify this situation?

    Hi
    Error -50
    Error -50   paramErr  Error in user parameter list
    Can there be any external hard disks - if so How is/are it/they formatted ? Must be Mac OS Extended (hfs) if used for Video.
    UNIX/DOS/FAT32/Mac OS Exchange - works for most but not for VIDEO.
    What this means in Your situation is above me.
    • free space on internal boot hard disk? How much ?
    Pictures
    • in what format ? .jpg, .bmp, .tif, else ?
    Audio
    • from where/what format ? iTunes, .avi, .mp3, .aiff, else ?
    The "com.apple.iMovie.plist" file
    Many users has not observed that there are TWO libraries.
    • Library - at root level
    • Library - in user/account folder - THIS IS THE ONE to look into
    from Luke Burns
    I fixed the problem.. but it was very, very strange. I had a very long section for credits and set the line spacing to 1.0.. for some reason this caused it. I removed it, and it worked fine. I put it back, and I couldn't preview or play the video.
    I don't know why that could cause that big of a problem, but it did..
    Yours Bengt W

  • How can I do to customized error messages?

    Hi People:
    I'd like know: How can I do to customize the error messages that are generated automatically by the profile in the mapping? In short, I want to know how to customize the errors that are listed in the tables calls TMP___TABLENAME_ERR.
    Thank for your help!
    Edited by: user6367764 on 12/12/2008 13:05

    Thanks Cheers, but I refer to the error messages that appear on the field ERR$$$_ERROR_REASON of the TMP___NAMETABLE_ERR or NAMETABLE_ERR tables. For example, instead of giving the error as 'Parent Key NAME_FK failed on attribute NAMETABLE.FIELD' showing a more appropriate message to the user, such as 'The value of the field X is not on the table NAMETABLE.' To that I mean being able to customize messages.
    These messages are generated from the correction profile and are incorporated in the tables of error when you run the mapping. I hope I have been more clear now.

  • How can I resolve "Access Denied"  Error

    I compiled and ran successfully my application which writes to a file. When I sent the program to a friend who tried to run it on his own system, he was getting "Access denied" error, how can i allow my fiend to run the program on his own JVM.

    Does the directory exist?
    Is this really an applet, not an application?
    Does he have Sun's JVM installed?
    How is he running it? What is the command line?
    Is that the only error, nothing more?
    Is 'Access denied' part of your program?
    What OS is he using?
    and other questions too numerous to mention...

  • How do I resolve the iPad error message" cannot verify identity of server"

    I have an iPad 2 model A1395 running iOS 7.2.1
    When browsing in Safari I continually get the message:
    Cannot verify server Identity Would you like to continue anyway?  with the options:  cancel, details, or continue
    If I select continue, I can go on to the site.  I've read that many others have this issue and eventually the iPad freezes on this error message.
    I selected "details" on one particular website (this happens on multiple websites, not just this one) and got the following information:
    details
    www. google.com
    Equifax Secure Certificate Authority
    Not Trusted
    I have searched and seen that this issue has been reported multiple times as far back as 2010, but each time the reply indicates that it is something about the specific website reported, however this happens on many different websites.  Can someone please address the problem with iPAD rather than one specific site?

    Verify that your time and date settings are correct. I have had this issue before where I had to temporarily change the date for something, and forgot to change it back. Also, my friend had this issue and was wondering why YouTube, Instagram, Vine, and anything on the internet simply wouldn't work. Turned out his date was very off, and I switched it back and it resolved the issue. Does it do this for some sites and not others? As far as I am concerned, this happened on ALL websites when the date was wrong on both my iPad, and my friends iPad.
    If that still doesn't help, try connecting to the sites with this issue using different WiFi connections.
    If THAT doesn't work, go to Settings>General>Reset>Reset All Settings
    Lastly, if all else fails, restore the iPad to factory settings, and try then. After that, I am not sure what you could do.

  • How can I cure/stop this error message on startup 'Exc in ev handl: TypeError: this.oRoot.enable is not a function'

    When starting Firefox 8.0, I get the above JavaScript Application error. When I click 'OK' in dialogue box, Firefox appears to start normally.
    What could be the cause, and how can I cure it?

    This issue can be caused by the McAfee Site Advisor extension
    * https://community.mcafee.com/message/203466
    Start Firefox in Safe Mode to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • How can I stop getting this error message?

    Ive been having a problem with AA3 since I installed it and I cant seem to figure it out. It doesnt happen everytime, but usually when I open AA3, load or start a session, and press the play or record button, AA3 crashes giving me the following error message.
    Does anyone have any tips on how I can stop this from happening? It makes doing projects in AA3 extremely nerve wracking, never knowing if it could crash in the next second. And especially when you cant get the project to load up without crashing, extremely embarrasing when there is a band with me.
    Anyway thanks for the help.

    >So is this a problem with other devices using the same sound card?
    Yes. You can only use an ASIO driver (which is what Audition now uses) with one program at a time. I suspect that when Audition opens, it finds what it thinks is a legitimate device, but no legitimate means of accessing it. You can't blame Adobe either - this is purely an ASIO limitiation, and Adobe only introduced ASIO because people clamoured for it for years (most of them not realising the downside to it).
    You
    might find that you can get around this by using the (free)
    ASIO4ALL driver, which converts Audition's ASIO output to WMD, which has rather less problems from this POV.

  • How can I raise an UI error message??

    Hello  all,
    I want to display a custom error in the UI interface (WebCenteSirtes 11g) before the asset is saved.
    Somebody can help me, please?
    Thanks a lot!

    Hello Elena,
    If you want to prevent the asset saving in my opinion you have to control (for example in a filter) and throw an AssetException:
    For example:
    if (myVar != "HelloWorld") {
      throw new AssetException(new StringBuilder()
      .append("An error ocurred when bla bla bla ").toString());
    This error message will be shown in the Contributor UI as a error.
    Hope it helps!
    Gerardo

  • How can I desactivate an "-3 error" message box?

    Hi everyone,
    The last time I ran my program I got  the error message : -3 at an unknown place  (see .png).
    I had already run it several times  (for something like 40h each time) without any problem.
    I have only connected and configured the error messages/boxes in some places in my program but not everywhere.
    Could someone tell me if this kind of message can pop up when you haven't connected and configured all the messages/boxes? If so, I suppose I just need to configure all of them to avoid this kind of pop up?
    Or could I get this kind of message anyway? If so, is there a way to desactivate this kind of pop up window message so that my program doesn't stop (although I understand there has been an error somewhere on the line)
    Labview 10
    Thanks,
    User
    Solved!
    Go to Solution.
    Attachments:
    Forum error message.PNG ‏14 KB

    Hey!
     You can disable error handling dialog box. Tools > Options > Block Diagram
    See attached picture!
    Paul
    Attachments:
    disable error dialog.png ‏37 KB

Maybe you are looking for

  • What is the pop-up page and how do you disable it?

    When I read through documents in Acrobat XI, a small, miniature version of the page pops up on the upper right hand corner. It is surrounded by a dark gray border with a white box inside that shows me where I am on the page, and the message "page X o

  • Production Report using Product groups.

    Hi PP Gurus, We want to develop one Production report that will include Product group. We are using single level Product groups. Say PG= XYZ and PG members are A, B, C, & D. Since REM without RP and with daily confirmation being used we'll sort the r

  • I can't update my iPad to iOS 5.1 through iTunes. Any clues?

    Every time I try to upgrade to iOS5.1when I backup and upgrade through iTunes, it seems to time out and not complete the task. Can anyone help me with what to do?

  • Help! error code 8 with Adobe premier cs4 and OpenGl

    hey there, i've been trying to work with adobe premier cs4 on my new Thinkpad w520 (i7 2720, 8GB, Nvidia quadro 1000m) i keep getting this error messege regarding the OpenGl (error code #8) that lost connection with the display driver, after that its

  • Changing appearance of a menutab

    I'm trying to change the appearance of my menutabs but it doesn't seem to work. I added the following to my CSS. .af menuTabs enabled-start-icon{content:url(/images/LeftTab.gif);} .af menuTabs enabled-end-icon{content:url(/images/RightTab.gif);} .af