search

Does joomla have search for content?

I am trying to find a search feature that searches all contents, including articles, links, posts, etc. in Joomla. Where is it located? I am talking about search feature in administration page, not home page. I want to be able to figure out where the content is coming from and its location. ...

Google Search appliance Schedule Reindexing.

Hi to all, my question is simple: Are any way to delete the index and schedule the reindexing? Best regards. Jose ...

How to write a php search script in which words with diacritics match search terms without diacritics, and the results are underlined?

Hi all! I've got this site where there are lots of texts with diacritics in them (ancillary glyphs added to letters, according to wikipedia) and most people search these texts using words without the glyphs. Now it shouldn't be challenging to do this by having a copy of the texts without diacritics. However, I want to highlight the matc...

searching and sorting

If the list has 1024 items (lg1024 = 10) at what point (the number of searches) does sorting the list first and using binary search pay off? How does your answer change if the list has 2048 items? instead of using sequential search ...

System.Collections hashtable - searh for most recentle added match

I have a hashtable with id-name value pairs. the id is entered as the key, and the name as the value. I am then searching the table, and returning the key whose value matches a specified string like this: (folderValue is the specified string) String^ key; for each (String^ aKey in table.Keys) { if ((String^)table.default[aKey] == fo...

Finding results in a Enumerable object quickly.

I am trying to write a utility to see if a user has logged in to windows since a date that I have stored in a database. private void bwFindDates_DoWork(object sender, DoWorkEventArgs e) { UserPrincipal u = new UserPrincipal(context); u.SamAccountName = "WebLogin*"; PrincipalSearcher ps = new PrincipalSearcher(u); var res...

What is the fastest way to find an array within another array in Java?

Is there any equivalent of String.indexOf() for arrays? If not, is there any faster way to find an array within another other than a linear search? ...

Solr delete not working for some reason.

Just trying to delete all the documents, and did this: http://localhost:8983/solr/update?stream.body=%3Cdelete%3E%3Cquery%3E*:*%3C/query%3E%3C/delete%3E then committed: http://localhost:8983/solr/update?stream.body=%3Ccommit/%3E I get the response: <lst name="responseHeader"> <int name="status">0</int> <int name="QTime">17</int>...

How we can optimize my web site for deep web searching? (Invisible web)

From Wikipedia: The deep Web (also called Deepnet, the invisible Web, dark Web or the hidden Web) refers to World Wide Web content that is not part of the surface Web, which is indexed by standard search engines. Mike Bergman, credited with coining the phrase,has said that searching on the Internet today can be com...

unicode string search

i am using Postgre sql database in my database there is one table mumbaipropertydetails in that one column zone has unicode data. when i execute query select mumbaipropertydetails."zone" from mumbaipropertydetails; it gives output like this. "\u092A\u093F\u0902\u092A\u0930\u0940 \u0935\u093E\u0918\u0947\u0930\u0947" "\u092A\u093F\u090...

Google Search Appliance feed application not found

Hi, Im trying to access to our appliance machine name using: http://&lt;APPLIANCE-HOSTNAME&gt;:19900/xmlfeed (of course replacing the appliance hostname by the real one). But i'm getting an error of page not found. I dont have problems when i access to the control panel on port 8000. is in the appliance a switch to allow access to t...

how B-tree indexing works in mysql

my question is , when I create an index for a table in mysql, I see that the index_type is type BTREE . Now although I understand about btree(s), I do not quiet understand how it stores the index and how the database searches the records based on this. I mean, btree is excellent for databases to perform read and writes large blocks of d...

Search tool that uses a grammar rather than regular expression?

Are there any search tools that allow you to set up a simple token/grammar parsing system that work similar to regular expressions? What we want to do is search our ColdFusion code for queries that do not have cfqueryparams in them. A regular expression gets a bit tough in this situation because I can't keep track of the start tags whi...

Fast method to find regex matches in a large document using javascript?

I need to search the text in a HTML document for reg-exes(emails, phone numbers, etc) and words. The matches need to be highlighted and be made anchor-able so that a link can be generated to jump to the location of the matches. So not only does it need to find matches using patterns in needs to do a replace do add the proper html code. ...

Drupal Exclude taxonomy listing pages from search.

I have a Drupal 5 site that needs to have has taxonomny listing pages excluded in the search results. For instance http://site.com/category/role/guest-speaker returns a listing of all of the nodes tagged with guest-speak in the vocabulary role. I tried Advanced Search module. This just prevents searching for terms. I then had a hunc...

how to use Windows Explorer search utility from vb.net

I would like to create a webpage that collects a users search criteria. Then when they click a button, send the parameters to the Windows Explorer Search utility and run it. Can this be done? If so, how? I am using asp.net to create my webpages. ...

Improve my Search engine

Hello all! I have tried to implement a simple search engine for my application. This is what I have done: CREATE FULLTEXT INDEX item_name_other_name_desc_index ON item (name,other_name,description) public static function Search($string) { $delims = ',.; '; $word = strtok($string,$delims); while($word) ...

How to restrict directory search to perticular directory in google desktop search ?

Hi, I have installed goolag and google desktop. Google desktop search searches all drives and gives search result. Now i want to restrict search to particular directory. How do i do that? (goolag code consist of index.php, mail.php, image.php, fonctions.php, fichier.php, goolag.css ) Link: http://www.asabox.com/goolag/index_en.htm 2/25...

Customizing joomla search result page layout

The joomla search results appear on the home page. I want it to show up on a new page. According to some online posts I had to modify the mod_search.php to set the item id to a non existing item so i set it to 0, but the problem is that the changes are not being reflected in my search module at all. I also tried putting a hidden field ca...

Function not searching for a specific word

This is quite weird but my search function can search for any word except the word "grinder" from my item table. I have tried everything but it does not seem to search for that word. Can anyone help me please? CREATE FULLTEXT INDEX item_name_other_name_desc_index ON item (name,other_name,description) public static function Search...