|
I have two controls on a page, one is a search entry and submission control the other is the search results control, they have to be separated due to the layout of the site. Im looking at different ways of having the search control submit displaying the...
Started by Matt on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Alternately, the results....
Query strings are fairly simple on the search results control to perform the search and display results.
search results can be crawled easily as they are just pages on your site.
|
|
I inherited a Drupal 5 site recently and have a series of enhancements to make. Several of then revolve around search results.
Unpublished pages showing up in search engine results. Some of these are old pages, others are recently unpublished. All are...
Started by easement on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It could be you are using....
Google would need db access to show unpublished nodes.
The problem with your search results might well be relatedSounds like it's drupal that is handling the search.
General question concerning node access.
|
|
X1 has a pretty nice desktop search product. Windows 7 comes with a build-in search indexer. Is there a free/opensource way to make the Windows 7 search return search results like the X1 client?
The specific features I like are the file-type based tabs...
Started by EricJLN on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
You can search for file names or text in files with support text segments found in a separate....
Lets say you only want to see emails hard drive fast and efficiently .
With Windows Search to add restrictions to the search results.
|
Ask your Facebook Friends
|
I have a php classifieds website (mostly) and I am currently using MYSQL as a database. Later on I will use SOLR or maybe Sphinx as a "search engine".
I want to make it possible for users to view "results" of searches they have made before, but I don'...
Started by Camran on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Saved_....
If you're a separate table where....
Well...
You already have said it: if users should see the new results of old queries, you'll have to store the search parameters somehow and re-do the search when a users requests it.
|
|
I have an application that uses lucene for searching. The search space are in the thousands. Searching against these thousands, I get only a few results, around 20 (which is ok and expected).
However, when I reduce my search space to just those 20 entries...
Started by Franz See on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Scoring depends on all the documents in the index:
In general, the idea behind the Vector Space Model (VSM) is the more times a query term appears in a document relative to the number of times the term appears in all the documents in the collection, the... .
|
|
Hi,
I'm very new to the MOSS 2007 search and just started playing around with the configuration. At the moment the index contains nearly everything a site has to offer.
After testing the search on my publishing portal I realized that many of the search...
Started by Flo on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You can create them globally though ....
Http://blog.3i-solutions.nl/2008/01/creating-search-scopes-based from this list to appear in search results
You want to create Search Scopes.
The results to what you desire.
|
|
I am trying to call SearchListItems to progamatically get search results. My code is pretty simple:
SPSite site = new SPSite(siteUrl); SPWeb web = site.OpenWeb(); SPSearchResultCollection resultListItems = null; resultListItems = web.SearchListItems(keyword...
Started by Mike Polen on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The interesting thing is that the search worked from SharePoint at all..
-Oisin
The content database did not have an assigned.
FullText search in Central Administration.
|
|
I am writing a Perl script that is searching for a term in large portions of text. What I would like to display back to the user is a small subset of the text around the search term, so the user can have context of where this search term is used. Google...
Started by BrianH on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
$search attempt at 4 words before/after wasn't too far off....
You could try the following:
if ($text =~ /(.*)$search(.*)/i ) { my @before_words = split ' ', $1 $after_str = get_first_x_words_from_array(@after_words); print $before_str .
|
|
I have a table of "items", and a table of "itemkeywords". When a user searches for a keyword, I want to give him one page of results plus the total number of results.
What I'm doing currently is (for a user that searches "a b c":
SELECT DISTINCT {fields...
Started by Daniel Magliola on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Queries:
SELECT DISTINCT {fields I want}, count(*) as results FROM itemkeywords JOIN items WHERE 10 results should be shorter then one that has to find all the results for the count that wouldn't change as the user browsed the pages....
|
|
I'm developing a web site that has a search box as part of the standard page template (similar to what you see on the top right of the SO site). I want to dynamically preview possible matches to the user input, similar to what you see when you start typing...
Started by Jeremy Raymond on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
$("#searchbox").keyup(function(){ $.post(....
You could use jQuery to do this, and as the keyup event (or related event) is fired, you can fire off a request to the server, or to a local collection of words, and show all that match in a div below the box .
|