Search engines dont' load what is wrong?

everything else works fine just the search engines don't work.  and the app store does not work also.

Care to share which OS version you are using?
Please detail ALL you have done so far in the way of troubleshooting?   Need this info to avoid the been there done that scenarios.

Similar Messages

  • Search engines wont load

    all search engines and only search engines wont load on several different web browsers. i have no clue what the problem could be.

    Hi,
    Have you tried clearing your local DNS cache? Open "Terminal" from the "Utilities" folder in "Applications" and enter the following command...
         sudo dscacheutil -flushcache
    Input your administrator password when prompted to do so and hit enter. Note, you won't receive any visual feedback while typing in your password. Also, be very careful while issuing any commands with 'sudo'. Quit Terminal after you're done and restart your browser.
    Yang

  • My ipad automatically jumps from one app to other. it automatically types things randomly. i dont know what it wrong. Have shown it in a service center. they have done factory reset but problem still persist.

    my ipad automatically jumps from one app to other. it automatically types things randomly. i dont know what it wrong. Have shown it in a service center. they have done factory reset but problem still persist.

    Likley a defective touchscreen.

  • Errors dont know what is wrong!

    Errors dont know what is wrong!
    import java.awt.*;
    import javax.swing.*;
    import java.awt.geom.*;
    import java.awt.event.MouseListener;
    import java.awt.event.*;
    public class SquareShape extends Piece
    {private Rectangle2D.Double _square1, _square2, _square3, _square4;
    private int xLoc=80, yLoc=0, size=19, space=1;
    private smallPiece [][] rectangle;
    public SquareShape(smallPiece[][] rect)
    {super(Color.red);
    _square1 = new Rectangle2D.Double(xLoc,yLoc,size,size);
    _square2 = new Rectangle2D.Double(xLoc,yLoc+size+space,size,size);
    _square3 = new Rectangle2D.Double(xLoc+size+space,yLoc,size,size);
    _square4 = new Rectangle2D.Double(xLoc+size+space,yLoc+size+space,size,size);
    rectangle= rect;}
    public void setXLocation(int x)
    {_square1.setFrame(xLoc+x,yLoc,size,size);
    _square2.setFrame(xLoc+x,yLoc+size+space,size,size);
    _square3.setFrame(xLoc+size+space+x,yLoc,size,size);
    _square4.setFrame(xLoc+size+space+x,yLoc+size+space,size,size);
    xLoc=xLoc+x;}
    public void setYLocation(int y)
    {_square1.setFrame(xLoc,yLoc+y,size,size);
    _square2.setFrame(xLoc,yLoc+size+space+y,size,size);
    _square3.setFrame(xLoc+size+space,yLoc+y,size,size);
    _square4.setFrame(xLoc+size+space,yLoc+size+space+y,size,size);
    yLoc=yLoc+y;}
    public boolean moveOneStep()
    {if(_square2.getY()+size>=440||_square4.getY()>=440)
    return false;
    else
    if(rectangle[21-((int)(_square2.getY()+1))/20][9-((int)(_square2.getX()+1))/20]!=null || rectangle[21-((int)(_square4.getY()+1))/20][9-((int)(_square4.getX()+1))/20]!=null)
    {return false;}
    else
    {setYLocation(20);
    return true;}}
    public int[][] getLocs()
    {int[][] locs= new int[4][2];
    locs[0][0]= ((int)(_square1.getY()+1))/20;
    locs[0][1]= ((int)(_square1.getX()+1))/20;
    locs[1][0]= ((int)(_square2.getY()+1))/20;
    locs[1][1]= ((int)(_square2.getX()+1))/20;
    locs[2][0]= ((int)(_square3.getY()+1))/20;
    locs[2][1]= ((int)(_square3.getX()+1))/20;
    locs[3][0]= ((int)(_square4.getY()+1))/20;
    locs[3][1]= ((int)(_square4.getX()+1))/20;
    System.out.println(locs[0][0]+" "+locs[0][1]+" "+locs[1][0]+" "+locs[1][1]+" "+locs[2][0]+" "+locs[2][1]+ " "+locs[3][0]+" "+locs[3][1]);
    return locs;}
    public boolean contains(int x, int y)
    {if(_square3.contains(x,y)||_square4.contains(x,y))
    return true;
    else
    return false;}
    public void fill(Graphics2D g2)
    super.fill(g2);
    g2.fill(_square1);
    g2.fill(_square2);
    g2.fill(_square3);
    g2.fill(_square4);}
    import java.awt.geom.*;
    import java.awt.*;
    import javax.swing.JPanel;
    import javax.swing.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.KeyEvent;
    import java.awt.event.*;
    public class TetrisPanel extends JPanel
    {private Factory _pieceFact;
    private Piece currentPiece;
    private Timer _timer;
    private int Interval =500;
    private smallPiece [][] locationArray;
    public TetrisPanel()
    {setBackground(Color.white);
    locationArray = new smallPiece[22][10];
    _pieceFact = new Factory(locationArray);
    currentPiece = _pieceFact.newPiece();
    _timer = new Timer(Interval, new TimerListener());
    _timer.start();
    public void paintComponent(Graphics g)
    {super.paintComponent(g);
    Graphics2D g2 = (Graphics2D)g;
    currentPiece.fill(g2);
    for(int row =0; row<22; row++)
    for(int col =0; col<10; col++)
    if(locationArray[row][col]!=null)
    {locationArray[row][col].fill(g2);}}
    public void createPiece()
    {currentPiece =_pieceFact.newPiece();
    repaint();}
    public class TimerListener implements ActionListener{
    public void actionPerformed(ActionEvent e)
    if(currentPiece.moveOneStep()==true)
    {repaint();
    currentPiece.getLocs();}
    else
    {int[][]ar = currentPiece.getLocs();
    for(int rows=0; rows<ar.length; rows++)
    {locationArray[22-ar[rows][0]][10-ar[rows][1]] = new smallPiece(ar[rows][1]*20,ar[rows][0]*20, currentPiece.getColor());}
    createPiece();
    repaint();}
    }the error
    Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: 22
         at TetrisPanel$TimerListener.actionPerformed(TetrisPanel.java:51)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: 22
         at SquareShape.moveOneStep(SquareShape.java:38)
         at TetrisPanel$TimerListener.actionPerformed(TetrisPanel.java:45)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)

    Errors dont know what is wrong!You read the stack trace from the top down, looking out for the first line that refers to your code.
    java.lang.ArrayIndexOutOfBoundsException: 22This means that you are using something as an array index (some variable, perhaps) and it has a value of 22, but the array itself is not that big.
    at TetrisPanel$TimerListener.actionPerformed(TetrisPanel.java:51This tells you exactly where the bad array access is taking place. Only you know which line 51 is - and it's good form to tell the rest of us when you post - but, at a wild guess, I'd say it was that line within the for loop that assigns new values to the locationArray.
    Use System.out.println() to check the values of the variables (or expressions) you use to access the array. Also check the length of the various arrays involved.
    (If I were you, I'd consider using a bit more indentation in your code. Especially where constructs are nested.)

  • Dont understand what is wrong in code

    Task of my code that movieclip added on stage, change its size - height when change size of browsers(player) window thus height movieclip = height rowsers(player) window.
    That is my code:
    package
    import flash.display.*;
    import flash.display.Sprite;
    import flash.display.StageAlign;
    import flash.display.StageScaleMode;
    import flash.events.Event;
    public class ZhMenu extends Sprite
    public var menubg:MovieClip;
    public function ZhMenu()
    var menubg:  = new menuGrad();
    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;
    stage.addEventListener(Event.RESIZE, onResize);
    this.addChild (menubg);
    menubg.x=0;
    menubg.width = 150;
    menubg.height = stage.stageHeight;
    public function onResize (event:Event):void
    var sh:Number = stage.stageHeight;
    menubg.x=0;
    menubg.width=150;
    menubg.height=sh;
    In the issue MovieClip menubg added on stage but when i change size of window i get error:
    TypeError: Error #1009: It is not possible to cause property or a method referring to object "null".
    at ZhMenu/onResize()
    And menubg dont change its size of course.
    I dont understand what is wrong.
    Plize help me if u know Action Script 3.0 better.

    Because you do not have an instance of the object... open a new fla and try these lines...
    // this will fail
    var menubg:MovieClip;
    menubg.x = 0;
    // this will not fail
    var menubg2:MovieClip = new MovieClip();
    menubg2.x = 0;

  • When I go to type someting in a search engine, it remembers what I typed?

    When I go to type something into google, or any search engine, after I type in the first character it seems to remember what I typed in last time. How do I clear all of this?

    It depends on which browser you're using.
    I don't think safari does this, so you're probably using Firefox.
    In Firefox, go to Firefox:Preferences:Privacy and click the "Saved Forms" tab. Then uncheck "Save information I enter into forms and the search bar" then click "Clear saved form data now". This will clear out your saved forms and prevent Firefox from saving new entries.

  • MX Includes (or whatever they are called after the take-over) search engines friendly urls - what am

    Hi
    I have a set-up with PHP, Apache (mod-rewrite enabled), using "MX includes" and I'm trying get it to work with "/whatever" instead of "mod=whatever" having removed the "mod" from the server behavior. In the database (includes from table) I have added a / before the url.
    But it just does not work. When calling e.g. index.php/news nothing is returned.
    What could I be doing wrong?
    Regards,
    Tom

    Computer operation 101.
    Get a bootable, external HD (preferably FireWire, since it's 40-50% faster than USB 2 and designed for data transfers), make a bootable backup/clone before updating/upgrading, using something like Carbon Copy Cloner or SuperDuper!, and ensure that it's bootable and works like the original. That allows you to revert to the previous good state without having to reinstall or reset anything. See these for details:
    http://www.macmaps.com/upgradefaq.html
    http://www.macmaps.com/backup.html
    http://www.thexlab.com/faqs/installswupdates.html
    http://www.thexlab.com/faqs/backuprecovery.html
    If you only have a Time Machine backup, ensure that you can reliably restore it to another disk/volume/partition before updating/upgrading.

  • I just installed photoshop but I dont know what is wrong it keep shutdown itself.

    dunno whats wrong. keep shutdown itself.

    Due to the current unavailability of clairvoyants and mind-readers in the forum, we respectfully request you supply sensible, complete details.
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • I just installed version 8.0.1 of firefox. Now not one search engine will load. Not google, bing...nothing. help

    All i've done is install the new version of firefox. none of these work in internet explorer now either....

    [https://support.mozilla.com/en-US/kb/No%20programs%20can%20load%20websites No programs can load websites]
    [https://support.mozilla.com/en-US/kb/Firefox%20cannot%20load%20websites%20but%20other%20programs%20can Firefox cannot load websites but other programs can]
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • I Dont Know What's Wrong .

    Ok , so I got my iPhone 5 about a week ago . And my friend has had her iPod touch 4th generation for a while . So she told me to use iMessage . She helped me turn it on and everything . And also told me what should happen like how the "SEND" button should be the color Blue when I use iMessage . So I turned it on and got it set . But the "SEND" button doesnt turn Blue . And she cant send messages to my email address . What Can I Do ?

    http://support.apple.com/kb/HT5538
    http://support.apple.com/kb/TS4268
    Check those.

  • Dont know what is wrong

    I connect my ipod nano to my laptop and it charges. But it is not being updated in itunes. None of the new songs that I put on itunes are being updated onto my ipod. Itunes is not recognizing the ipod. I used to plug in my ipod and itunes would pop up and it would update automaticly but now I have to click on itunes to get it started. What can I do?

    See if any of these articles help.
    Windows XP cannot detect an iPod.
    USB drivers are not installed properly or are out of date.
    iTunes 7 doesn't recognize the iPod.
    iPod not recognized on a Windows laptop.

  • IPad mini camera won't load, what's wrong?

    I click my camera button and the camera won't load. It's hard to describe, but just the lense-like black shutters show

    Try resetting your iPad.  Hold the on/off and home buttons together for about 10 seconds till the Apple logo appears.
    Then try the camera again.

  • HT5569 hi my question is about my iphone 5 is not working properly i have installed iso 7 latest version but dont know what is wrong with it?

    my starts siri by it self and when i desable siri so voice control starts talking even i didn't touch my fone its operating by its self in the middle of talking on fone or not using it. sometimes the home key is not working at all. it stuck and i have to rebot or restart it again. i don't know its technical problem or software problem. i bought this iphone 5 on applestore.com in january 2013. this problem was started in may 2013 but was not so often and from september upto now its irrateting me so badly. sometimes it doesn't work at all and sometimes it didnt recognize my apple ID to sign in app store or itunes.
    how fix this problem any one can tell me plzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
    thank you

    Hi Karneet,
    Thanks for visiting Apple Support Communities.
    See this articles for some troubleshooting help, if your iPhone isn't detected by iTunes or Windows:
    iPod: Appears in Windows but not in iTunes
    http://support.apple.com/kb/ts1363
    iPod not recognized in 'My Computer' and in iTunes for Windows
    http://support.apple.com/kb/ts1369
    Best,
    Jeremy

  • Download itunes and the setup goes fully through and then i click on the icon and nothing loads, what s wrong and how can i fix it?

    i have downloaded itunes 5 times and samething... nothing... i really wish itunes had an online tech support live chat...

    Find help from this article:
    iTunes for Windows Vista or Windows 7: Troubleshooting unexpected quits, freezes, or launch issues
    http://support.apple.com/kb/TS1717

  • Search engine optimizations servlet

    i am trying to write a servlet which will look at urls and covert the & and ? characters into other characters, like "/" and ","
    this is because search engines dont like to crawl pages with ? in the url.
    using servlets i know i can translate a url which has been seo optimized to be the "real thing" but is there any way to do the opposite? encode urls to be seo optimized without going in an manually changing the hrefs in the jsps?

    A Servlet Filter sounds like what you need here. Encoding the URL on the response.

Maybe you are looking for

  • Control File Sequential Read in 11.2

    Hi to all, i'm in 11.2 database and i'm looking an awr report. Time: Begin Snap: 9642 31-Gen-12 16:00:26 51 2.5 End Snap: 9643 31-Gen-12 16:40:27 52 2.6 This is my load profile: Load Profile              Per Second    Per Transaction   Per Exec   Per

  • Survey is not available for this language

    Hi, Can someone please advise what needs to be done to have surveys displayed? I'm able to see the survey attached to the activity in Online, but in MSA it always comes up with this message. The surveys are maintained in EN, and I'm logged on to MSA

  • Error code 6600 when trying to access shared network drive

    Hi everybody When trying to "enter" a shared NAS network drive, which appears on my Macbook, I just get error code -6600. What is wrong, do you know what I can do to resolve this??? I have previously managed to do this operation but now it just does

  • How to read/display a sentence after or before a specific character?

    Hi I am trying to show a users firstName after the 1st charter i.e. the name is Kevin I only want to show EVIN not k, how would I do that? Can I use charAt?? and what if I want to show a users firstName before a certain character i.e. the name is Kev

  • Are there any one ever upload the file to CIC0 for transaction creatation

    Dear Sir, Our server is CRM 5.0 , I would like to upload the data to create transaction in CIC0 . Do you ever use the bapi : BAPI_ACTIVITYCRM_CREATEMULTI   ? Is is work or not? Thank you and best regards, Vimol