Using RootsWeb's GenSeeker Search Engine
Requesting the Seeker Search Engine
At this time, the index created by the search engine has grown larger than the disks installed on the Seeker computer. Therefore, no new registrations will be accepted until the search facility has been upgraded.
Adding the Search Form to Your Site
The search form provided by the search engine registration can be added to any page within your site. You may add it to an existing page, or you can make the search form it's own separate page. Copy the form html to the clipboard. Open the page you are adding the form to in your HTML editor, and paste the HTML code whereever you want to place it on the page. Save the file and upload it to your account.
Site Indexing (Why doesn't the form work now that I've added it to my site?)
If you test the form after you've uploaded it, you'll most likely get a result of 0 (zero) matches. The search engine first has to index your site before it can give results. Indexing is done automatically...there is nothing you need to do for the indexing to take place. The search program runs the indexing program every 3-4 days in most circumstances.
Every time you add pages or edit existing pages, you'll need to wait for the indexing to take place before the results are shown in the search results.
Search Options
Your form has three search options: Any, All, and Boolean.
Excluding selected pages from the search engine
It is possible to exclude selected pages from the search engine by using meta tags. Meta tags contain two fields: name and content. The name of the meta tag should be "robots". The content, or value of the tag, gives the indexing robot instructions how to handle this page. There are four values for "content": index, follow, noindex, nofollow.
<meta name="robots" content="index,follow">
The indexer will index this page AND follow all the links for indexing
<meta name="robots" content="noindex,follow">
The indexer will not index this page, but WILL follow the links for indexing those pages
<meta name="robots" content="index,nofollow">
The indexer WILL index this page, but WILL NOT follow the links for indexing
<meta name="robots" content="noindex,nofollow">
The index WILL NOT index this page and WILL NOT follow the links for indexing
For a more complete discussion on meta tags and robots, visit http://info.webcrawler.com/mak/projects/robots/meta-user.html.