Internet search engine

hello iam trying to get the simple Java applet that searches multiple Internet search engines. can any one help me
how to do in simple way....

Hi,
Please go through the above site you will find excellent codes.
Anyhow here is the sample Applet Search engine code.
import java.awt.*;
import java.applet.*;
import java.net.*;
import java.io.*;
import java.util.*;
// v1.5 Home Page Search applet
// 15th February 1998
* This applet provides search facilities for Web sites with no CGI access
* Copyright (c) 1997 Richard Everitt G4ZFE
* [email protected]
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 675 Mass Ave, Cambridge, MA 02139, USA.
/* Applet parameters:
* This applet takes two parameters
* a. hostname, the name of the Demon Home Page (e.g babbage). The name is
* converted to lower case and used to create the URL of the
* pages to search i.e. http://www.<hostname>.demon.co.uk.
* (this parameter is required for Demon Internet users
* only)
* b. IPaddress, the corresponding IP address for the Home Page. I plan to
* use it as it will allow the search applet to run from
* behind a firewall. Demon have stated in the HomePage AUP
* that the IP address should not be directly used. I do not
* recommend its use (the www.babbage.demon.co.uk IP address
* has already changed once)
* (this parameter is optional)
* c. maxSearch, the maximum number of pages to search. If your site is vast
* then the search will take a long time so people will give
* up. This parameter limits the number of pages to be searched
* to a sensible value reducing the search time (but also
* reducing its usefullness)
* (this parameter is optional. Defaults to 100)
* d. debug, this parameter is for my use. Set to true to display
* parameter and debug information.
* (this parameter is optional)
* e. server, this parameter allows the search applet to be used on non-
* Demon home pages. This parameter should point to the name
* of the site, e.g "http://www.myisp.com/me/" (note use of
* trailing "/" character.
* (this parameter is required for Non-Demon Internet users)
* f. indexName, this parameter allows the search applet to be used on non-
* Demon home pages. This parameter should point to the name
* of the index page (e.g home.htm). If not set then
* "index.htm" ot "index.html" is asummed.
* (this parameter is optional)
* g. bgColour, The background colour for the applet in RGB hex format
* (rrggbb). The default is light grey.
* h. fgColour, The foreground colour for the applet in RGB hex format
* (rrggbb). The default is black.
* Example of applet use on a Demon Home Page - www.babbage.demon.co.uk
* <APPLET CODE="HomePageSearch.class" WIDTH=650 HEIGHT=400>
* <PARAM NAME="hostname" VALUE="babbage">
* <EM>Sorry but the Search applet requires a Java aware
* Web browser </EM>
* </APPLET>
* Example of applet use on a non-Demon Home Page - www.myisp.co.uk/fred/
* and the "index" page is called home.htm
* <APPLET CODE="HomePageSearch.class" WIDTH=650 HEIGHT=400>
* <PARAM NAME="server" VALUE="http://www.myisp.co.uk/fred/">
* <PARAM NAME="indexName" VALUE="home.htm">
* <EM>Sorry but the Search applet requires a Java aware
* Web browser </EM>
* </APPLET>
/* Modification history
* xxxx 12th February - alpha version
* v0.9 19th February - first beta version
* v0.91 26th February - tidy up
* - added maxSearch functionality
* - added debugMode parameter
* v0.92 03rd March - added server and indexname parameters to
* allow use on non-Demon home pages
* v0.93 09th March - fixed bug with lowercase filenames
* added case insensitive/sensitive/match whole
* word functionality
* v0.94 12th March - fixed bug which resulted in "cannot connect"
* error on non-demon sites.
* v0.95 15th March - Removed some uses of debugMode. Server parameter
* can be set to http://localhost/ to simulate this.
* - Added support for working behind proxy servers/
* firewalls. This uses the IP Address rather than
* the hostname of the server for connections.
* v0.96 17th March - Corrected code to parse HREFs. It was not
* understanding framed format or spaces.
* - Match whole word not working properly
* - HREF="http://server/" was not being followed
* correctly
* v0.97 20th March - fixed bug where incorrect page name was being
* displayed for a match. This was due to the use
* of a global variable for the page name. As the
* stack unwound then this variable was lost. Stack
* used to stored page name instead.
* v0.98 23rd March - if match found on index page (using HTTP) then URL to
* jump to was created incorrectly.
* v0.99 25th March - allow to be resized < 600 pixels
* allow handling of links such as
* "/www/page.html"
* v1.0 8th April - Added bgColour, fgColour applet parameters
* Set default of 100 for maximum number pages to search
* Added option menu for number of pages to search
* Allow handling of framed links such as
* <FRAME SRC="framepage.html">
* v1.1 18th April - Display Page title rather than page name in list of
* matches.
* If match found on index page (using FILE://) then
* URL to jump to was created incorrectly.
* Broke the <= 600 pixels code by adding the "Max
* Pages" option menu. Size of buttons adjusted to
* allow all widgets to be display in < 600 pixles
* v1.2 9th May - Removed hard limits by using vectors rather than
* arrays.
* Search the index page and index page links first.
* Added internalisation support for titles. A subset
* of the special character entity names (e.g &egrave;)
* are converted into Unicode characters so that they
* are displayed correctly.
* Fixed bug - "match word" did not match the last word
* on a line.
* v1.3 8th July - Bug fix release
* Links with single quotes e.g
* Test Page
* were not being searched
* fgColour and bgColour only worked with UNIX browsers!
* Fixed to allow useage with MS Windows browsers,
* although due to limitations in Win32 AWT the colour
* of buttons and their text cannot be changed.
* v1.4 4th August - Bug fix release
* Single quote HREF fix in v1.3 broke some normal
* HREF link code (no </A> on same line as HREF).
* v1.5 15th February - Applet now searches .txt files
* Fixed bug for demon internet users who use index
* pages other than index.htm and index.html
* Added further lower case localisation support
public class HomePageSearch extends Applet
final int MAX_NUMBER_PAGES = 100; // default limit of number
// pages to read
final int BACKSPACE_CHARACTER = 8; // ASCII backspace
final int NUMBER_SPECIAL_CHARS = 45; // Number of special character
// entity names supported
Button search, clear, abort; // GUI buttons
TextField inputArea; // TextField used to enter
// search text in
TextField statusArea; // TextField used to display
// search status
List resultsArea; // List to display matches in
public String hostName; // Host name paramter read by
// applet (required)
public String IPAddress; // IP address parameter read by
// applet (optional)
public int maxSearch = MAX_NUMBER_PAGES;
// Maximum number of pages to
// search (optional)
public boolean debugMode; // TRUE = localhost
// FALSE = on-line
Vector pageNames; // Pages that have been visited
public String server; // Non-Demon home page starting point
public String indexName; // Name of index page (defaults to
// index.html or index.htm)
SearchPages cp = null; // Search thread
Checkbox caseSensitive;
Checkbox caseInsensitive;
Checkbox matchWholeWord;
public boolean matchCase = false; // Flag to indicate if we
// need to match case.
public boolean matchWord = false; // Flag to indicate if we need
// to match the whole word
String versionNumber = "v1.5";
boolean packComponents; // Set to true if size < 600
Color bgColour; // Background colour of applet
Color fgColour; // Foreground colour of applet
Choice numPagesChoice; // Option menu to select max
// number of pages to search
Vector pageMatch; // Pages that contain the
// search word
public void init ()
Panel p;
getParameters (); // Read the applet parameters
setLayout (new BorderLayout ());
// If applet size is <= 600 pixels then reduce the length
// of text fields, labels etc so that the applet will
// display OK
if (size().width <= 600)
packComponents = true;
else
packComponents = false;
// This panel consists of a input text field where the
// user enters the text to search for. The buttons allow
// the search to be started, aborted and clear the applet's
// output fields.
p = new Panel();
p.setLayout (new FlowLayout());
Label lab = new Label ("Search for: ");
lab.setFont (new Font ("Helvetica", Font.PLAIN, 12));
p.add (lab);
if (packComponents)
inputArea = new TextField ("",15);
else
inputArea = new TextField ("",20);
p.add (inputArea);
if (packComponents)
search = new Button ("search");
search.setFont (new Font ("Helvetica", Font.BOLD, 12));
else
search = new Button (" search ");
search.setFont (new Font ("Helvetica", Font.BOLD, 14));
p.add (search);
if (packComponents)
clear = new Button ("clear");
clear.setFont (new Font ("Helvetica", Font.BOLD, 12));
else
clear = new Button (" clear ");
clear.setFont (new Font ("Helvetica", Font.BOLD, 14));
p.add (clear);
if (packComponents)
abort = new Button ("stop");
abort.setFont (new Font ("Helvetica", Font.BOLD, 12));
else
abort = new Button (" stop ");
abort.setFont (new Font ("Helvetica", Font.BOLD, 14));
abort.disable();
p.add (abort);
if (packComponents)
lab = new Label ("Pages");
else
lab = new Label (" Max. Pages:");
lab.setFont (new Font ("Helvetica", Font.PLAIN, 12));
p.add (lab);
numPagesChoice = new Choice();
p.add (numPagesChoice);
p.setForeground (fgColour);
p.setBackground (bgColour);
add ("North",p);
// This panel lists the results. When an item from the list
// box is double clicked the URL is opened up.
p = new Panel();
p.setLayout (new GridLayout(0,1));
resultsArea = new List (10,false);
p.add (resultsArea);
p.setForeground (fgColour);
p.setBackground (bgColour);
add ("Center",p);
p = new Panel();
Label labVersion = new Label (versionNumber);
labVersion.setFont (new Font ("Helvetica", Font.PLAIN, 12));
p.add (labVersion);
CheckboxGroup caseSense = new CheckboxGroup();
// This textfield shows the status of the search to provide
// some feedback to the user. The page count is displayed.
if (packComponents)
statusArea = new TextField ("",14);
else
statusArea = new TextField ("",20);
statusArea.setEditable (false);
p.add (statusArea);
if (packComponents)
caseInsensitive = new Checkbox ("in-sensitive");
else
caseInsensitive = new Checkbox ("case in-sensitive");
p.add (caseInsensitive);
caseInsensitive.setCheckboxGroup (caseSense);
if (packComponents)
caseSensitive = new Checkbox ("sensitive" );
else
caseSensitive = new Checkbox ("case sensitive" );
p.add (caseSensitive);
caseSensitive.setCheckboxGroup (caseSense);
caseSense.setCurrent (caseInsensitive);
if (packComponents)
matchWholeWord = new Checkbox ("whole word");
else
matchWholeWord = new Checkbox ("match whole word");
p.add (matchWholeWord);
p.setForeground (fgColour);
p.setBackground (bgColour);
add ("South",p);
disableButtons (); // Disable buttons until text entered
// Create vector to hold pages that have been found
// and pages that contain the search text
pageNames = new Vector();
pageMatch = new Vector();
// Now that we know what the maxSearch parameter is fill
// in sensible page numbers
for (int i=maxSearch / 5; i<= maxSearch; i += maxSearch / 5)
numPagesChoice.addItem (Integer.toString(i));
numPagesChoice.setFont (new Font ("Helvetica", Font.PLAIN, 12));
// Set the default number of pages to be searched
numPagesChoice.select (0);
maxSearch = maxSearch / 5;
// Set the background + foreground applet colours
// setBackground(bgColour);
// setForeground(fgColour);
// Always set text input field to white for readability
inputArea.setBackground (Color.white);
// Function enableButtons
// Purpose - enable use of buttons in GUI
public void enableButtons ()
search.enable();
clear.enable();
// Function disableButtons
// Purpose - disable use of buttons in GUI
final void disableButtons ()
search.disable();
clear.disable();
// Function getParameters
// Purpose - read applet parameters
final void getParameters ()
hostName = getParameter ("hostname");
IPAddress = getParameter ("IPAddress");
String num = getParameter ("maxSearch");
String arg = getParameter ("debug");
server = getParameter ("server");
indexName = getParameter ("indexName");
String colour = getParameter("bgColour");
if (colour == null)
// I wish this could be locali[sz]ed so that I could
// write lightGrey !!
bgColour = Color.lightGray;
else
try
bgColour = new Color(Integer.parseInt(colour, 16));
catch (NumberFormatException e)
bgColour=Color.lightGray;
colour = getParameter("fgColour");
if (colour == null)
fgColour = Color.black;
else
try
fgColour = new Color(Integer.parseInt(colour, 16));
catch (NumberFormatException e)
bgColour=Color.black;
// Check for missing parameters
if (hostName == null && server == null)
statusArea.setText ("Error - no host/server");
System.out.println (" Error: No hostname specified");
hostName = "none";
maxSearch = (num == null) ? MAX_NUMBER_PAGES : Integer.parseInt(num);
debugMode = (arg == null) ? false : true;
if (debugMode)
System.out.println ("hostname is " + hostName);
System.out.println ("IPAddress is " + IPAddress);
System.out.println ("maxSearch is " + maxSearch);
System.out.println ("debugMode is " + debugMode);
System.out.println ("server is " + server);
System.out.println ("indexName is " + indexName);
System.out.println ("bgColour is " + bgColour);
System.out.println ("fgColour is " + fgColour);
// Display parameter information
public String[][] getParameterInfo()
String[][] info =
{"hostname","String","hostname of site"},
{"IPAddress","String","IP address of site"},
{"maxSearch","String","maximum number of pages to search"},
{"debug","String","debug mode"},
{"server","String","Home Page URL"},
{"indexName","String","Name of index page"},
{"bgColour","Color","Background colour of applet"},
{"fgColour","Color","Foreground colour of applet"}
return info;
// Display applet information
public String getAppletInfo()
return "Home Page Search Applet v1.5";
// Function keyDown
// Purpose - enable or disable buttons. When search text is entered
// the search and clear buttons are enabled. When no search text has
// been entered the buttons are disabled.
public boolean keyDown (Event e, int nKey)
boolean boolDone = true;
String text;
text = inputArea.getText(); // Read the search text
int n = text.length(); // Count number of chars
if (nKey == BACKSPACE_CHARACTER)// catch backspace character
boolDone = false;
n--;
else
boolDone = false;
n++;
if (n > 0)
enableButtons ();
else
disableButtons ();
return (boolDone);
// Purpose - this function handles all the GUI events
public boolean action (Event e, Object o)
String text; // Search text entered by user
String searchText; // Lower case version of above
URL newURL = null;
// Check to see if the option menu has been selected
if (e.target instanceof Choice)
Choice c = (Choice) e.target;
try
maxSearch = Integer.parseInt(c.getSelectedItem(), 10);
catch (NumberFormatException ex)
maxSearch = MAX_NUMBER_PAGES;
if (debugMode)
System.out.println ("maxSearch is now " + maxSearch);
// Check to see if a checkbox has been pressed
if (e.target instanceof Checkbox)
if (caseSensitive.getState() == true)
matchCase = true;
else
matchCase = false;
if (matchWholeWord.getState() == true)
matchWord = true;
else
matchWord = false;
// A button has been pressed - determine which
if (e.target instanceof Button)
if (e.target == search)
// Search button pressed - read in
// search text entered
text = inputArea.getText();
// Make sure ther's somthing to search for
if (text.length() == 0)
return (false);
// New search so clear the GUI out
if (resultsArea.countItems() > 0)
resultsArea.clear();
disableButtons ();
abort.enable();
statusArea.setText("");
// Clear out previous search data
pageNames.removeAllElements();
pageMatch.removeAllElements();
// We're off - start the search thread
cp = new SearchPages (this, hostName, text, maxSearch);
cp.start();
else if (e.target == abort)
// Abort button pressed - stop the thread
if (cp != null)
cp.stop();
cp = null;
// Enable buttons for another search
enableButtons();
abort.disable();
else
// Clear button pressed - clear all the fields
// and return
inputArea.setText("");
statusArea.setText("");
// Clear radio buttons
caseSensitive.setState(false);
caseInsensitive.setState(true);
matchWholeWord.setState(false);
// Clear option menu
numPagesChoice.select (0);
try
maxSearch = Integer.parseInt(numPagesChoice.getSelectedItem(), 10);
catch (NumberFormatException ex)
maxSearch = MAX_NUMBER_PAGES;
if (debugMode)
System.out.println ("maxSearch is now " + maxSearch);
if (resultsArea.countItems() > 0)
resultsArea.clear();
cp = null;
// Selection made from the list of matches
if (e.target instanceof List)
List list = (List) e.target;
int index = list.getSelectedIndex();
// Extract the page name from the list
if (index < pageMatch.size())
String URLSelected = (String)pageMatch.elementAt(index);
try
// If URL stored then use it
if (URLSelected.startsWith ("http:") ||
URLSelected.startsWith ("file:"))
newURL = new URL(URLSelected);
else if (server == null)
newURL = new URL("http://www." + hostName + ".demon.co.uk/" + URLSelected);
else
newURL = new URL (server + URLSelected);
catch(MalformedURLException excep)
System.out.println("action(): Bad URL: " + newURL);
if (debugMode)
System.out.println (" Jumping to ... " + newURL.toString());
// Display the document
getAppletContext().showDocument(newURL,"_self");
return true; // We're done
// Purpose - checks to see if a page has already been
// visited by the search thread
boolean checkAlreadyFound (String page)
if (pageNames.size() == 0)
return (false);
// Check this is a new one
for (int i=1; i < pageNames.size() ;i++)
String pageName = (String) pageNames.elementAt(i);
if (pageName.equalsIgnoreCase (page))

Similar Messages

  • Hi everyone!  I turned on my computer the other day and the icon for Safari was missing from my dock.  I looked in the applications folder and it is no longer there.  Does anyone know how I can get safari if I have no internet search engine?

    Hi everyone!  I turned on my computer the other day and the icon for Safari was missing from my dock.  I looked in the applications folder and it is no longer there.  Does anyone know how I can get safari if I have no internet search engine?  I

    Safari 5.0.6 for Leopard can be downloaded from here:
    http://support.apple.com/kb/DL1422
    Does anyone know how I can get safari if I have no internet search engine?
    How did you post here?

  • Whenever i open a new tab Yahoo pops up as the new internet search engine. How can I get rid of this?

    This occurs after the main page is up but when I click on the tab bar beside where it says google to open a new window then the search engine becomes Yahoo.ca How can i correct this?

    http://medicine-opera.com/2010/03/how-to-disable-yahoos-theft-of-firefoxs-open-a-new-tab/
    fixed the problem for me :)

  • Where are the internet search engine bookmarks located

    simple & dumb question I know, but I'm new to mac and still discovering. Where is the folder which contains all the search engine bookmarks?

    "Search engine bookmarks?" What do you mean by that? Your bookmarks (i.e. sites you add to your Bookmarks list), or the list of choices that 'pops-up' when you start typing a search query into Google, for example? Also, which browser are you talking about (Safari, Firefox, etc.)?

  • Firefox moves through workspaces when I use an internet search engine.

    When I search something containing the string "translation" or "translate" in every search engine (google, altavista, bing...) Firefox shows the result list page and it's ok as far as I don't click anywhere on the window. When I click, it suddenly disappear and moves to another random workspace. Then I can search through my workspaces where Firefox went and I can click everything without problems.
    It seems that Firefox moves in other workspaces regardless of
    whether or not there are open windows in the workspaces.
    I'm running Xubuntu.10.10.amd64 with Firefox 3.6.15

    The problem appears to be caused by having the Cool Iris add-on attached to Firefox. I have removed Cool Iris and the problem has gone! I also note that there is now a 'fix' to the Cool iris add-on available for this specific problem
    Paul

  • Robohelp and Search engines

    Hi all,
    We have been using robohelp x5 for a while now and have up
    until now published the project as HTML with skin onto our website.
    In previous years I've then pointed my sitemap to each page in turn
    (to improved google rating), and then added java script to
    re-launch the page in the correct frame, i.e. with the index
    /search on the left and the header on the top.
    I noticed that there are a number of other variants to
    publishing in robohelp 7/8. My question is:
    Which type of project is best for up-loading onto a website,
    such that pages are searched by the internet search engines (e.g.
    google / msn), and when found the page is correctly
    displayed....i.e.. not left as an orphan page without its frameset.
    I know I could do exactly the same thing as I've been doing
    for 3 years....but I would like to know if theres a "better way" :)
    Thanks in advance
    Philip

    Hi Lyza
    Hopefully John won't mind my offering some tidbits here that may help illustrate the issue.
    Perhaps a small experiment will help here.
    Open Google and search for the phrase: Build tags on the brew and note the top link you see. It should read February 2004.
    Click that link and note what you see.
    Now click the following link: Click here to view
    Look familiar?
    What you should be seeing is a page inside a WebHelp system. Nothing special whatsoever was done to make this happen. In other words, the Search Engines were able to index this page simply because it is available to the web. No SiteMap was created. Nothing special was done.
    Some folks are working under the assumption that because WebHelp and FlashHelp are presented using extensive Framesets, that content cannot be found. This may have been true years ago, but advances in the indexing methods overcame that issue long ago.
    Now Search Engine Optimization (SEO) is a whole different animal and there are entire companies and many consultants that profess to assist with SEO and increasing your rankings.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • I'm using internet explorer(yuk!!) and am having trouble with getting back my search engine "google" and all i get is "blank page", can u help?

    First of all, forgive me cuz I'm probably NOT the sharpest "chip in a laptop" but I use Internet Explorer as my ISP(I've heard that GOOGLE CHROME is soo much better??) and Google as my search engine. For some reason(I know, probably USER idiot!!) even though I have set in my "internet connections" tab, www.google.com chosen, the minute I click a new tab to look for something else, that dreaded "about blank" or maybe "blank page" comes up.....wtheck???? Can u help me pleeez......thank u ..

    It is possible that your security software (firewall, anti-virus) blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls
    *https://support.mozilla.org/kb/fix-problems-connecting-websites-after-updating
    See also:
    *http://kb.mozillazine.org/Error_loading_websites

  • With the current warning regarding internet explorer, is your "google" search engine safe? If not, what would be the safest search engine?

    Same as above. I'm concerned about using internet explorer at this time. I would appreciate your response.

    What is the warning you are reading about ?
    This is probably not really a Firefox support question if it relates to Search engines.
    The Google Search used is an HTTPS version and so that helps with security. Firefox itself has some security features built in. You may find these articles of interest.
    * http://www.mozilla.org/en-US/firefox/desktop/trust/#secure
    ** https://blog.mozilla.org/blog/2013/01/28/privacy-day-2013/
    * [[How does built-in Phishing and Malware Protection work?]]

  • How doI stop it opening the internet with Creative Commons and use another search engine e.g. Google?

    When I first go to the internet with Firefox, then want to type in what I am looking for, it opens with Creative Commons. I would MUCH rather it opened with a search engine such as Google. How do I change to this? N.B I am using a Mac.

    ''morflorian wrote:''
    if the migth-be protocol has no handler, assume it is just a search engine request).
    The main problem with that would be that Firefox would fail to notify the user in case of a valid protocol that's not associated with a program, and would instead send the URL as a search query. Firefox would appear broken, when in fact the problem is with the external application. That's far from desirable. This isn't an uncommon occurrence with externally-handled protocols like ''magnet''.
    Also, I don't think the vast majority of people are likely to run into this problem. Even those that do can easily work around it, by placing the search words first (e.g. ''gingerbread intitle:recipes''), or by starting the query with a search engine keyword (e.g. ''g date:1 heartbleed aftermath''). To assign a keyword to a search engine, click the icon in the search bar and choose Manage Search Engines.
    If you feel very strongly about this, head over to the ''#firefox'' [http://irc.mozilla.org IRC channel] and see if you can find someone familiar with the File Handling component. If they think this change is a good idea, you could then file a bug report.

  • Everytime I go to a search engine like Bing or Google and click on the link to a website, it sends me to the wrong page. I don't have this problem with Internet Explorer, so what can I do as far as fixing the problem on Firefox?

    Anytime I enter what I'm looking for in the search engine and click on a link, it goes through multiple web addresses until it takes me to an indirect page, and the first few webpages on the link that appear during the loading process are the same. I actually don't know what those websites are though.

    Sounds like you have some search redirect Malware or a Rootkit.
    Install, update, and run these programs in this order. They are listed in order of efficacy.<br />'''''(Not all programs detect the same Malware, so you may need to run them all to solve your problem.)''''' <br />These programs are all free for personal use, but some have limited functionality in the "free mode" - but those are features you really don't need to find and remove the problem that you have.<br />
    ''Note: If your Malware infection is bad enough and you are mis-directed to URL's other than what is posted, you may have to use a different PC to download these programs and use a USB stick to transfer them to the afflicted PC.''
    Malwarebytes' Anti-Malware - [http://www.malwarebytes.org/mbam.php] <br />
    SuperAntispyware - [http://www.superantispyware.com/] <br />
    AdAware - [http://www.lavasoftusa.com/software/adaware/] <br />
    Spybot Search & Destroy - [http://www.safer-networking.org/en/index.html] <br />
    Windows Defender: Home Page - [http://www.microsoft.com/windows/products/winfamily/defender/default.mspx]<br />
    Also, if you have a search engine re-direct problem, see this:<br />
    http://deletemalware.blogspot.com/2010/02/remove-google-redirect-virus.html
    If these don't find it or can't clear it, post in one of these forums for Rootkit removal help: <br />
    [http://www.spywarewarrior.com/index.php] <br />
    [http://forum.aumha.org/] <br />
    [http://www.spywareinfoforum.com/] <br />
    [http://bleepingcomputer.com]

  • I use mozilla firefox start page as my homepage, because I can restore my previous session. A game I DL'd made Bing my search engine on that page! In Internet Options, I changed my default to google, but it searches Bing every time! How do I fix this?

    I do a search, and it diverts to the MSN game site, then gives Bing search results. Bing is not my search engine anywhere else, just on the Mozilla page.

    Thank you, thank you, thank you, the-edmeister, thank you! I am in your debt, sir!

  • I want name on address bar goes to home page, not search engine

    Just today I hooked up a new modem/router that I purchased at a WIndstream store. I have been browsing the internet for years with Firefox. I have changed the keyword.url setting in my Firefox configuration (see https://support.mozilla.com/en-US/questions/833252#answer-197476) so that the new version would act like the old version and go directly to the webpage when the name was typed in the address bar. For example: when I type in "windstream" (no ".net" or".com") I would go directly to windstream' home page.
    However, when I hooked up my new modem/router I my browser is hijacked and goes to a Windstream search page. I have tried everything from re-installing Firefox, re-changing the "keyword.url" setting, I even tried the Firefox ad-on here (https://addons.mozilla.org/en-us/firefox/addon/browse-by-name/).
    All to no avail......there is something that has changed by adding Windstream's hardware and connecting to their network that will not allow me to use this function of Firefox.
    Nothing else changed, but a new piece of hardware.....
    Changed keyword.url to : http://www.google.com/search?ie=UTF-8&oe=UTF-8&sourceid=navclient&gfns=1&q=
    Re-installed Firefox after cleaning all history and cookies.
    Tried the add-on "Browse by name"
    Wasted my time calling Windstream tech support.
    Changed to openDNS
    Tried to disable the feature through Windstream's web page, but then it just happens with the new search engine.

    Opt-out of Windstream's search service: Type in something to get their sneaky web search page to come up, then click the tiny link at the bottom right "about this page". That sends you to a page where you can opt-out of their service.
    To opt-out from their "valuable" sneaky service, you have to choose to opt-in to another search service.
    You have to do this with each browser. And it still sends you to your search engine's results page, not to your URL the way you might want it to.
    I would rather the default be to allow me to opt-in if I choose to, not have to jump through hoops to find out how to opt-out. It's taken me weeks to discover this. Annoying!

  • WHY CAN I NOT EDIT THE DEFAULT SEARCH ENGINE USED BY THE ADDRESS BAR (NOT THE SEARCH BAR NEXT TO IT) FROM BING TO GOOGLE?

    I am asking this question again, because upon checking the forum for a solution I was shocked and appalled by the severe lack of grammar, punctuation and spelling I encountered while reading answers to this question. Obviously several people where to busy to actually read the question being asked and simply answered with instructions on how to change the default search engine for the search bar. SO, here I am asking the same question, why? because it still has not been answered and I myself still CANNOT find this setting anywhere. I use multiple browsers for different tasks, Chrome is KICKING the .... out of you guys Mozilla, why did you ever let your self get taken in by Micro-crack (Microsoft), if I recall correctly the inception of this program was partly motivated by the need for an alternative to the idiosyncrasies and vulnerability of Microsoft Internet Explore. This really feels like a HUGE step backwards, I would love to see a return to the days when Mozilla Firefox was and inspiration to developers and techs everywhere. And please will someone just answer the right question this time. Trust me when I say it will be obvious who does and does not read this in it's entirety.
    ''Edited by a moderator due to language. See the [http://support.mozilla.com/kb/Forum+and+chat+rules+and+guidelines Rules & Guidelines] .''

    HAHA! I have solved it! Ok here is the URL for Google, as mentioned above by bram:
    "Go to About:config
    Search for keyword.URL
    Double click the Value entry field, and change it to the search engine you prefer"
    Enter this URL for the string value
    http://www.google.com/#hl=en&output=search&sclient=psy-ab&q=

  • Can someone help me understand why the search engine will not do anything when I click the search icon or press enter, and why new windows won't open when I click on a link that should open one?

    When I type something in the search engine at the right hand corner of the screen it will not allow the search to take place. What I mean is I either click the icon or press enter and nothing happens. I would understand it better if it at the very least gave me a error message. I have also noticed that things like the opening of a new window via a link will not work. An example is I was just on www.walmart.com and when I clicked on an image in order to see a larger one no window opened. I also recently noticed that when I had a lot of tabs open the shortcut menus and menus in general did not load completely or really at all keeping me from saving the pages as bookmarks. I know this could be from low internet speed, a lot of tabs etc..., but I've had many more tabs open than I had then and it worked. Plus all I did was delete or close one tab and suddenly it worked. I then recovered the tab and it still worked even though I was back at the original amount of tabs. I have the latest version of firefox, not counting the beta, and I don't know of any way to solve the two main problems.

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Wondering if I should upgrade from OS 10.6.8 to yosemite as search engines are acting a little weird - fan can come on, slow to shut down and also concerned about Security as my OS is older and no longer upgraded etc...?

    Problem description:
    Wondering if I should upgrade to Yosemite from Mac pro 10.6.8  as search engines are not always responding well - Fan comes on with firefox/safari is not always responding on some sites - also concerned about security issues as my system is older and not able to receive ? I have used etrecheck and copied results here - Any help/suggestions much appreciated  - Thanks kindly!
    EtreCheck version: 2.1.8 (121)
    Report generated February 7, 2015 10:41:15 AM EST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (13-inch, Early 2011) (Technical Specifications)
        MacBook Pro - model: MacBookPro8,1
        1 2.3 GHz Intel Core i5 CPU: 2-core
        4 GB RAM
            BANK 0/DIMM0
                2 GB DDR3 1333 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1333 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 303
    Video Information: ℹ️
        Intel HD Graphics 3000 - VRAM: 384 MB
            Color LCD 1280 x 800
    System Software: ℹ️
        Mac OS X 10.6.8 (10K549) - Time since boot: 1:24:41
    Disk Information: ℹ️
        Hitachi HTS545032B9A302 disk0 : (298.09 GB)
            - (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 319.73 GB (198.41 GB free)
        OPTIARC DVD RW AD-5970H
    USB Information: ℹ️
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
        Apple, Inc. MacBook Pro
    Configuration files: ℹ️
        /etc/hosts - Count: 15
    Kernel Extensions: ℹ️
            /System/Library/Extensions
        [not loaded]    com.olympus.DSSBlockCommandsDevice (1.1.0) [Click for support]
    Problem System Launch Daemons: ℹ️
        [not loaded]    org.samba.winbindd.plist [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.CS5ServiceManager.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
    User Login Items: ℹ️
        Flux    Application  (/Applications/Flux.app)
    Internet Plug-ins: ℹ️
        JavaAppletPlugin: Version: 13.9.8 - SDK 10.6 Check version
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.6.6
        AdobePDFViewerNPAPI: Version: 10.1.12 [Click for support]
        AdobePDFViewer: Version: 10.1.12 [Click for support]
        DivXBrowserPlugin: Version: 1.4 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        SharePointBrowserPlugin: Version: 14.1.0 [Click for support]
        Google Earth Web Plug-in: Version: 7.1 [Click for support]
        Silverlight: Version: 4.1.10329.0 [Click for support]
        iPhotoPhotocast: Version: 7.0 - SDK 10.7
    Audio Plug-ins: ℹ️
        iSightAudio: Version: 7.6.6
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        Growl  [Click for support]
    Time Machine: ℹ️
        Time Machine information requires OS X 10.7 "Lion" or later.
    Top Processes by CPU: ℹ️
             7%    WindowServer
             1%    plugin-container
             1%    firefox
             0%    fontd
             0%    Flux
    Top Processes by Memory: ℹ️
        515 MB    firefox
        52 MB    mds
        43 MB    WindowServer
        43 MB    Finder
        34 MB    plugin-container
    Virtual Memory Information: ℹ️
        2.14 GB    Free RAM
        745 MB    Active RAM
        475 MB    Inactive RAM
        929 MB    Wired RAM
        231 MB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Feb 7, 2015, 09:16:09 AM    Self test - passed

    ... Fan comes on with firefox/safari is not always responding on some sites -
    An SMC reset may resolve the otherwise inexplicable fan behaviour. Be sure to read the procedure carefully and follow all the steps exactly as written, even if they seem inapplicable or trivial.
    Fixing a modified Hosts file requires specific instructions. Apple Support Communities contributor and EtreCheck author etresoft recently added a User Tip discussing that concern, and how to correct it: Fixing a hacked /etc/hosts file
    Back up your Mac prior to making any changes to its file system. To learn how to use Time Machine read Mac Basics: Time Machine backs up your Mac.

Maybe you are looking for

  • Calling a Breadcrumb image inside a Table view column

    Hi I want a sample code to call any bread crumb related image inside a table view column. Please help with a code snippet.

  • PDF writing to Database

    I am wanting to make a fill able form in Adobe Acrobat 9 pro extended put it on a webpage, have a user fill it out / hit a submit button and have it write the information to a database back end. Access or SQL. I am seeing lots of info on my searches

  • P800 "Not Enough Memory" error when trying to use Contacts

    Now even after I reset my P800 from iSync I get this 'Not enough memory' error when I try to use my contact list. This is getting really frustrating! I want to downgrade...

  • Multiple rows selection handling in Tableview

    Hi guys, ..Good morning .. I have developed one page for displaying Employees(pernr and Ename) under CEO/VP/Managers using <b>TableView</b>. Here i have some difficulties. <b>1.</b> I managed to show Multiple row selection menu    (Selectall/deselect

  • 4s has trouble with my home network

    My iPhone 4S has trouble connecting to my AirPort Extreme. The only way it connects is if I lay it directly on the extreme.