Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Firefox 4 FINAL Released  (Read 38446 times)

0 Members and 1 Guest are viewing this topic.

Broni


    Mastermind
  • Kraków my love :)
  • Thanked: 614
    • Computer Help Forum
  • Computer: Specs
  • Experience: Experienced
  • OS: Windows 8
Re: Firefox 4 FINAL Released
« Reply #60 on: May 03, 2011, 06:20:27 PM »
Personally, I never understood any need for some Google Search Toolbar.

soybean



    Genius
  • The first soybean ever to learn the computer.
  • Thanked: 469
  • Computer: Specs
  • Experience: Experienced
  • OS: Windows 10
Re: Firefox 4 FINAL Released
« Reply #61 on: May 03, 2011, 07:26:47 PM »
Personally, I never understood any need for some Google Search Toolbar.
Me either.  Anyone can use the standard browser search box and just set Google as the default search engine.  Or, make google.com the home page and/or a link on the Bookmarks toolbar. 

patio

  • Moderator


  • Genius
  • Maud' Dib
  • Thanked: 1769
    • Yes
  • Experience: Beginner
  • OS: Windows 7
Re: Firefox 4 FINAL Released
« Reply #62 on: May 03, 2011, 08:13:58 PM »
I never met a toolbar i had any use for...or liked.
" Anyone who goes to a psychiatrist should have his head examined. "

Broni


    Mastermind
  • Kraków my love :)
  • Thanked: 614
    • Computer Help Forum
  • Computer: Specs
  • Experience: Experienced
  • OS: Windows 8
Re: Firefox 4 FINAL Released
« Reply #63 on: May 03, 2011, 08:15:32 PM »
+1

Salmon Trout

  • Guest
Re: Firefox 4 FINAL Released
« Reply #64 on: May 03, 2011, 11:51:33 PM »
+2

Allan

    Topic Starter
  • Moderator

  • Mastermind
  • Thanked: 1260
  • Experience: Guru
  • OS: Windows 10
Re: Firefox 4 FINAL Released
« Reply #65 on: May 04, 2011, 06:00:27 AM »
You know, I've been using it so long I forget why I installed it in the first place. I've just switched to the Firefox search box on this computer. If I'm happy with it I'll switch the others.

Allan

    Topic Starter
  • Moderator

  • Mastermind
  • Thanked: 1260
  • Experience: Guru
  • OS: Windows 10
Re: Firefox 4 FINAL Released
« Reply #66 on: May 04, 2011, 06:36:34 AM »
Is there a way to display search history (a list of recent searches) with the Firefox search box? Google Toolbar has a dropdown arrow - don't see any such option.

Salmon Trout

  • Guest
Re: Firefox 4 FINAL Released
« Reply #67 on: May 04, 2011, 11:48:51 AM »
Is there a way to display search history (a list of recent searches) with the Firefox search box? Google Toolbar has a dropdown arrow - don't see any such option.

I can't (on a quick Google search) find any easy way; there may well be a Firefox extension to do this. Anyhow this is how I did it just now:

Note: before I did the below I enabled the Firefox search box, cleared the search history, and then successively searched for "bacon", "eggs", "ham" and "cheese". Maybe I'm getting hungry?

1. The search history (along with, I guess, a lot of other stuff) is stored in an Sqlite database in your Mozilla Profile folder. The database file is called formhistory.sqlite.

2. You need to query this database with the following sql query

Code: [Select]
SELECT value FROM moz_formhistory WHERE fieldname='searchbar-history';
3. You can do this with a command line program called sqlite3.exe. This program is quite common; it is installed with quite a lot of apps so you may have it already. If not, you can get it from here in a 237 kB zip archive:

http://www.sqlite.org/sqlite-shell-win32-x86-3070600.zip

Extract sqlite3.exe and place it either in your Mozilla profile folder or else somewhere on your PATH.

4. You can view the search history manually like this

at the command prompt type sqlite3.exe followed by the database name. This starts sqlite3 and loads the database.

Code: [Select]
sqlite3 formhistory.sqlite
Now you see the sqlite welcome message and prompt and you type the query and hit Enter and you see your search history listing and you type .exit to get back to the Windows command prompt.

Code: [Select]
C:\Users\Mike\Application Data\Mozilla\Firefox\Profiles\k65vu6mr.default>sqlite3 formhistory.sqlite
SQLite version 3.6.22
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> SELECT value from moz_formhistory WHERE fieldname='searchbar-history';
bacon
eggs
ham
cheese
sqlite> .exit
C:\Users\Mike\Application Data\Mozilla\Firefox\Profiles\k65vu6mr.default>

5. If this seems tedious then here is a batch file to put in the Profile folder which will do it for you and open the search history in Notepad. You could make a shortcut to this on your desktop, or Quick Launch or wherever, or maybe there is some kind of Mozilla extension to let you run it from inside Firefox.

Code: [Select]
@echo off
echo SELECT value FROM moz_formhistory WHERE fieldname='searchbar-history';>searchbarhistory.sql
sqlite3.exe formhistory.sqlite < searchbarhistory.sql > searchbarhistory.txt
start "" "notepad" "searchbarhistory.txt"



I should EMPHASISE that what I know about sql I have learned in the last half hour, and it is quite possible that others who are used to working with this kind of stuff can advise about some better method. There may be some kind of Firefox addon that can do all this. And probably other things you might want to do with the recent search list besides viewing it in Notepad, but at least you now know one way to get at it.







Allan

    Topic Starter
  • Moderator

  • Mastermind
  • Thanked: 1260
  • Experience: Guru
  • OS: Windows 10
Re: Firefox 4 FINAL Released
« Reply #68 on: May 04, 2011, 12:08:37 PM »
Thanks. I can also download a simple program that shows the search history, but I want to be able to do it from within the search box. I'll stay with the toolbar - but I appreciate your help.

Computer_Commando



    Hacker
  • Thanked: 494
  • Certifications: List
  • Computer: Specs
  • Experience: Expert
  • OS: Windows 10
Re: Firefox 4 FINAL Released
« Reply #69 on: May 04, 2011, 04:33:51 PM »
Tools---Clear Recent History, Forms & Search History, seems to be the only way to clear the Google Toolbar Search History.

Allan

    Topic Starter
  • Moderator

  • Mastermind
  • Thanked: 1260
  • Experience: Guru
  • OS: Windows 10
Re: Firefox 4 FINAL Released
« Reply #70 on: May 04, 2011, 04:38:07 PM »
Looking to SEE the search history, not c
Tools---Clear Recent History, Forms & Search History, seems to be the only way to clear the Google Toolbar Search History.
CC - appreciate the response, but we're talking about seeing the search history, not clearing it..... unless you were responding to an earlier post. I know how to clear it, I was just saying that the "clear search history" option in the Google Toolbar Search box doesn't work with FF4.

Computer_Commando



    Hacker
  • Thanked: 494
  • Certifications: List
  • Computer: Specs
  • Experience: Expert
  • OS: Windows 10
Re: Firefox 4 FINAL Released
« Reply #71 on: May 04, 2011, 04:43:38 PM »
...I was just saying that the "clear search history" option in the Google Toolbar Search box doesn't work with FF4...
I'm saying the same thing, doesn't work for me, either.  Just pointing out one way to clear it.

Allan

    Topic Starter
  • Moderator

  • Mastermind
  • Thanked: 1260
  • Experience: Guru
  • OS: Windows 10
Re: Firefox 4 FINAL Released
« Reply #72 on: May 04, 2011, 04:47:18 PM »
gotcha

Broni


    Mastermind
  • Kraków my love :)
  • Thanked: 614
    • Computer Help Forum
  • Computer: Specs
  • Experience: Experienced
  • OS: Windows 8
Re: Firefox 4 FINAL Released
« Reply #73 on: May 04, 2011, 05:16:11 PM »
Allan...
Why exactly do you need search history?
...and where exactly do you find Google search history?

Salmon Trout

  • Guest
Re: Firefox 4 FINAL Released
« Reply #74 on: May 04, 2011, 11:52:16 PM »
Allan...
Why exactly do you need search history?
...and where exactly do you find Google search history?

Maybe...

http://www.google.com/support/accounts/bin/topic.py?topic=14148&hl=en