Why does google (and only google) no longer work in toolbar search box?

The search box on the Firefox toolbar - not the google toolbar- no longer works if google is selected as search engine, gives a not found error to any search. Other search engines work, but google is broken. Google works fine anywhere else, just not from stock toolbar search box. Windows XP, Firefox 16.0.1.

Thanks for the help, but that didn't work. "keyword.URL" was not bold and it wouldn't allow me to select reset. what next?

Similar Messages

  • Why is Google no longer working properly in Safari?

    I have Google for business (I think that is what it is called...they keep changing the name).  About two weeks ago, it started stopped working properly in Safari.  My left column of mail boxes often disappear and the pain with the emails in it either doesn’t show up properly or doesn't scroll.  Is anyone else having this problem?  If so, how do you solve it?
    I have Safari 7.0.1.
    Thank you,
    Ian

    This issue can be caused by corrupted cookies or cookies that are blocked.
    *check the permissions on the about:permissions page and in "Tools > Page Info > Permissions"
    *https://support.mozilla.org/kb/fix-login-issues-on-websites-require-passwords
    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"
    If clearing cookies didn't help then it is possible that the cookies.sqlite file that stores the cookies got corrupted.
    *Rename (or delete) <b>cookies.sqlite</b> (cookies.sqlite.old) and delete other present cookies files like <b>cookies.sqlite-journal</b> in the Firefox profile folder in case the file cookies.sqlite got corrupted.
    *http://kb.mozillazine.org/Cookies
    *https://support.mozilla.org/kb/Deleting+cookies

  • Why does Google Chat not work with Firefox v9.0

    When I use Internet Explorer 8.0/7601 Go0gleTalk works fine.
    However, when I use Firefox I get the message that the contact I want to talk to is offline. I can see that they are online in IE8 But, on this computer it does not work. On my Laptop all is well. What can I do please?

    Did you try to clear the Google cookies?
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions or if hardware acceleration 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.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can also do a malware check with some malware scanning programs on the Windows computer.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br /><br />
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.microsoft.com/security/scanner/en-us/default.aspx - Microsoft Safety Scanner
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    You can also do a check for a rootkit infection with TDSSKiller.
    *http://support.kaspersky.com/viruses/solutions?qid=208280684
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Why does my phone only offer attachments to be opened in drop box and evernote, when before it always gave me the "open in i-note" option-suggestions

    does the iphone 4 only offer 2 "open-in" options when dealing with email attchements? 
    mine used to always offer teh I-note option now it only offers evernote and dropbox- any ideas?

    Hello,
    Sorry to just now be getting back to you, but with Thanksgiving and my granddaughter's wedding yesterday, I've been too busy and stressed to worry about my phone again until now.
    Yes, I used the default email application, and the email provider is Cox Communications.  Anything you can do to help would be appreciated.  Also I was wondering if I should change to IMAP (from POP3)....perhaps that would help the problem?  Don't know, as I don't know anyone else who uses IMAP.  Your help, again, would be appreciated.
    Thank you.
    Margie Barber

  • Why does timer code (by dbasnett) no longer work splendidly?

    Using timer code supplied by dbasnett back in May2014, I was able to see FPS of near 500 for a simple animation. Now, with a more recent 64bit laptop Win 8.1 - -  I run the same code - - - and see poor results similar to standard timers - - where the
    results are "stepped" - - -like either 16FPS or 32FPS or the max I can get is 64FPS.
    This thread back in May2014  - -https://social.msdn.microsoft.com/Forums/vstudio/en-US/9ddb2f16-796a-483a-aa3f-0f9b959e0eea/the-use-of-systemwindowsformstimer-for-time?forum=vbgeneral
    And here is the code that dbasnett supplied - -
    Public Class Form1
    Dim R As Integer
    Dim D, T As Double
    Private Sub Form1_Load(sender As Object, e As System.EventArgs) Handles Me.Load
    Me.ClientSize = New Size(500, 500)
    Me.DoubleBuffered = True
    T = Environment.TickCount
    timeSubThrd = New Threading.Thread(AddressOf timeSub)
    timeSubThrd.IsBackground = True
    timeSubThrd.Start()
    End Sub
    Private Sub Form1_FormClosing(sender As Object, e As FormClosingEventArgs) Handles Me.FormClosing
    If Not slp.WaitOne(0) Then
    'RemoveHandler Me.Paint, AddressOf Me.Form1_Paint
    slp.Set()
    e.Cancel = True
    End If
    End Sub
    Private Sub Form1_Paint(sender As Object, e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
    Dim rct As Rectangle = New Rectangle(250 - R, 250 - R, 2 * R, 2 * R)
    Using spen As New Pen(Color.FromArgb(83, 32, 69))
    spen.Width = 4
    e.Graphics.DrawEllipse(spen, rct)
    End Using
    End Sub
    Dim timeSubThrd As Threading.Thread
    Dim slp As New Threading.ManualResetEvent(False)
    Private Sub timeSub()
    Dim A As Double = -1
    Do
    D += 0.125663707
    If D > (2 * Math.PI) Then
    A = 50000 / (Environment.TickCount - T)
    T = Environment.TickCount
    D = 0
    End If
    R = CInt(Math.Cos(D) * 60) + 180
    Me.Invoke(Sub()
    Invalidate()
    If A <> -1 Then
    Me.Text = A.ToString("##0.0##") & " FPS"
    End If
    End Sub)
    A = -1
    Loop While Not slp.WaitOne(20) '<<<<<<< the timer interval
    Me.Invoke(Sub()
    Me.Close()
    End Sub)
    End Sub
    End Class
    With timer interval set to 20 - - - - it used to give about 50FPS (which is should), but it doesnt anymore - - - it gives 32FPS.
    Can anybody shed some light on what has gone wrong? My present laptop also a I7 is 4 years younger than my old laptop and has far betters specs. Why is it slower? or why is this timer code no longer acting the same?
    Thanks
    Leon Stanley - ♪Don't pay the ferryman - till he gets you over to the other side♪ . um . I apply this to corporations - not to God.

    @ Reed Kimble. Thanks for your point about not being OS related. That make sense anyway.
    @ Mr.Monkeyboy. Thanks for your links and points. I had a bit of a read. Mostly over my head. To me it should'nt be a thread priority question because the program is so simple - there is only one thread anyway.
    And I don't think it is a graphics issue, because I altered the program to only manipulate a bitmap - not activate a paint event -  - - but it still performs poorly. I only get 32 Cycles Per Second instead of 50 CPS. See - this is how I altered the
    code - but no change in performance:-
    Public Class Form4
    Dim bmp As Bitmap
    Dim gfx As Graphics
    Dim R As Integer
    Dim D, T As Double
    Private Sub Form4_Load(sender As Object, e As System.EventArgs) Handles Me.Load
    bmp = New Bitmap(500, 500)
    gfx = Graphics.FromImage(bmp)
    Me.ClientSize = New Size(500, 500)
    T = Environment.TickCount
    timeSubThrd = New Threading.Thread(AddressOf timeSub)
    timeSubThrd.IsBackground = True
    timeSubThrd.Start()
    End Sub
    Private Sub Form2_FormClosing(sender As Object, e As FormClosingEventArgs) Handles Me.FormClosing
    If Not slp.WaitOne(0) Then
    'RemoveHandler Me.Paint, AddressOf Me.Form2_Paint
    slp.Set()
    e.Cancel = True
    End If
    End Sub
    Sub test()
    Dim rct As Rectangle = New Rectangle(250 - R, 250 - R, 2 * R, 2 * R)
    Using spen As New Pen(Color.FromArgb(83, 32, 69))
    spen.Width = 4
    gfx.DrawEllipse(spen, rct)
    End Using
    End Sub
    Dim timeSubThrd As Threading.Thread
    Dim slp As New Threading.ManualResetEvent(False)
    Private Sub timeSub()
    Dim A As Double = -1
    Do
    D += 0.125663707
    If D > (2 * Math.PI) Then
    A = 50000 / (Environment.TickCount - T)
    T = Environment.TickCount
    D = 0
    End If
    R = CInt(Math.Cos(D) * 60) + 180
    Me.Invoke(Sub()
    test()
    If A <> -1 Then
    Me.Text = A.ToString("##0.0##") & " CPS"
    End If
    End Sub)
    A = -1
    Loop While Not slp.WaitOne(20) '<<<<<<< the timer interval
    Me.Invoke(Sub()
    Me.Close()
    End Sub)
    End Sub
    End Class
    PS - I changed the code so that it does not deal with bitmaps or graphics at all - - - but still no improvement.
    Maybe it is Framework Version issue ??
    Thanks all
    Top Tip: Toothache? Cut paper towel to 2"square. Smear with olive oil. Sprinkle on Cayenne Pepper. Fold over few times to form small wad. Tuck in between wall of mouth and gum. Leave 1 - 2 hrs. You will thank me!

  • LR5.4: Why does automatic lens correction profile no longer work for SONY NEX-5N?

    Starting in LR5.4, if I attempt to apply automatic lens profile corrections, LR applies a profile for a Hasselblad LF 18-55 camera lens instead.
    Formerly, in LR 5.3, the 'make' in the lens profile pane automatially matched the EXIF 'make' of the NEX-5N; namely, "Sony", and the correct lens profile was applied automatically.
    In LR5.4, I must now manually select make = "Sony E" to appy a "setup=custom" profile before LR applies the correct lens profile.  The minute I set 'make=Sony E', LR applies a profile that matches the lens in use: either the "Sony E 18-55mm F3.5-F5.6 OSS", the "Sony E 16mm F2.8 OSS" lens or the "Sony E 55-210mm F4.5-6.3 OSS" lens that I use.
    Another issue: I am not certain of this, but I swear the LR5.4 lens profile correction now *increases* pin-cushion image distortion, whereas it worked beautifully in LR5.3.  (I should take a photograph of a grid to see if my impression is correct.)  Are the lens profile corrections applied to a camera with EXIF make="Sony E" different from those applied to an EXIF make="Sony" (i.e., the NEX-5N)?  If so, this is a shame, for it means LR no longer fully supports the NEX-5N.
    Does anyone know how to resolve this problem?
    (I believe LR5.4 may have picked up on recent product line changes announced by SONY, wherein NEX will be marketed as Sony Alpha E cameras, and I imagine they will be changing the EXIF 'make' of new cameras to reflect this.  However, that won't be changing the EXIF make of my NEX-5N.)

    Why is that so and how can I get the proper lens profile automatically if the lens does have its own Adobe profile loaded?
    Frustrated ...
    Pick the correct lens manually then choose 'Save New Lens Profile Defaults' from Setup drop down menu. Lr should remember the lens and use it as the default in future. See screenshot below

  • Why does Screen Sharing between Macs no longer work?

    Just recently many of my Mac computers have stopped Screen Sharing with each other. I cannot think of any reason why this would begin happening. These computers are 'system critical' computers so I haven't updated to Mavericks yet. One is an iMac running OS X 10.8 and the other is a Mac Mini running 10.7. Any clues?

    This could be something as simple as a bad Router Port. Try switching the Ethernet cable on one of the effected Macs to a port that you know is working. When I was running computer labs, bad ports were a commmon issue.  If that doen't work we will move on to other possible solutions.

  • Why does my external hard drive no longer work

    I have a toshiba 1tb external hard drive on which I back up my Toshiba lap top. This morning when I tried to do this both USB ports on the laptop died. Thats a very short explanation for what has taken some time to establish. To get them working again I have to reboot the laptop & then I can use my wireless mouse & keyboard etc. Attach the harddrive again everything dies.
    Now the point that got me to this board is that I gave my hard drive to a colleague to copy some files (which he did) but he runs a mac! Has his mac killed my hard drive & done something that somehow means when it plugs into my laptop it kills the USB drives on that too?

    Bob you might just be right. He might have killed the cable though. I've managed to find a similar connection & I now seem to have access. Is that a natural breeding rainbow or one of those bloated stockies?

  • Why does my hotmail account account no longer work right? Cannot forward or reply to messages without the original message being lost. Hotmail says it is a problem with the latest Firefox update.

    When I try to forward or reply to my emails in my Hotmail account, the original message disappears. Hotmail says it is a compatibility problem with the newest version of Firefox. They suggested I use Internet Explorer. Would prefer to use my old version of Firefox. How do I get it back? Or how can I get my hotmail account to work properly with the 3.6.3 version?
    == URL of affected sites ==
    http://hotmail.com

    When I try to forward or reply to my emails in my Hotmail account, the original message disappears. Hotmail says it is a compatibility problem with the newest version of Firefox. They suggested I use Internet Explorer. Would prefer to use my old version of Firefox. How do I get it back? Or how can I get my hotmail account to work properly with the 3.6.3 version?
    == URL of affected sites ==
    http://hotmail.com

  • Why does yahoo and hotmail email address not work with JavaMail

    I am sending an email like this if [email protected]= [email protected] it doesnt work... but works if it is someone on the same domain
    theMessage.addRecipient(Message.RecipientType.TO, new InternetAddress("[email protected]"));

    Suzie,
    Could you be a little more specific in your question? Are you developing an ADF/JSF application? a Web Service? EJB? Is it a plan Java App?
    There are more chances for your question to have a more proper response if posted in the right place :)
    RB

  • Why does google keep telling me my password is wrong? I only have one and it works for everything else

    Why does google keep telling me my password is wrong
    It works fine on my I pad but my i phone does not show e mails or messages
    And the message keeps on saying the password is wrong
    I only have one password and I know what that is
    But google does not seem to recognize it
    Maybe I should change my e mail provider
    My I phone is useless if I cannot pickup messages and e mails

    May be a problem with Google's 2 step verification, see if this helps you:
    http://support.google.com/accounts/bin/topic.py?hl=en&topic=28786&parent=2373945 &ctx=topic

  • Why does Google chrome not open or crash after installing mountain lion?

    Why does Google chrome not open and/or crash after installing mountain lion?

    Thanks.
    I have the updated chrome (9.0.597.19).
    I have just now tried the recommendation by Zohaib Sharif in teh google gropus link you sent
    http://funbird.co.uk/tech-articals/google-chrome-freezing-and-hanging-problems/
    Hope this works!

  • Why does google chrome display my website's index page as a blue pg

    why does google chrome display my website's index page as a blue pg

    If you still got a issue, report it on this website. With the steps you follow + screenshot.
    Few mounth ago I have to this problem with my accompagnatrici website
    Go here and this page help you!
    http://code.google.com/p/chromium/issues/list
    Cheers

  • Why does google start up but when i try to access a web page it shuts off

    why does google start up but when i try to access a web page it shuts off

    Not entirely sure what you mean, but if you are saying that the Safari screen is frozen/inactive then try clearing its cache : Settings > Safari > Clear Cookies And Data (Clear Cache on iOS 4) and also Clear History
    If that doesn't work then try closing Safari completely and then re-open it : from the home screen (i.e. not with Safari 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    A third option is a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Why does my ipod only show an apple and wont start up

    Why does my Ipod only show an apple and wont do anything else>  And holding down the two buttons has done nothing!

    Try:
    - iOS: Not responding or does not turn on
    - If not successful and you can't fully turn the iPod fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.

Maybe you are looking for

  • Error while scheduling VerifyDB in DB13

    Hi, I am facing an error while scheduling VerifyDB through DB13 in my SAP ECC 6.0 system. This problem is occuring in the entire landscape(Dev, Quality & Prod) after i did an oracle upgrade from 10.1.0.4 to 10.2.0.2. The error is as below: BR1301W Er

  • HT5035 Can I transfer my itunes balance to another apple id?

    I redeemed an itunes gift card into my account, but would like to transfer it to my daughter's. Is this possible?

  • Why do I get the following exception when I press the cancel buuton?

    My code is not complete as I am stubbing my code. Can someone tell me why i get the following exception Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException         at Phonebook.createNew(Phonebook.java:244)         at Phonebook.acti

  • Issue with Returns created using BAPI_CUSTOMERETURN_CREATE

    I have been able to create customer returns using BAPI_CUSTOMERETURN_CREATE in a wed-dynpro java application. However, the issue is when I review the order in VA02 or VA03, the order quantity field is not populated. I input the order quantity in 'TAR

  • Java MIDI Synthesis Problems!

    Hi! I've been searching for a solution to my problem for almost a week now. I'm new to Java so I was hoping someone here could help me out! I'm familiar with a few other programming languages and I got all the "Hello World" stuff going, but the MIDI