Re: [PHP] Search engine : build a new one or use an alreadry existing one ?

2004-11-08 Thread Ben Ramsey
Greg Donald wrote:
I need to improve my current "search mecanism" but got stuck in a
dilema : build one or use an existing engine?
I recently put together a large company intranet site search using
htdig and a simple php wrapper script:
http://www.devshed.com/c/a/PHP/Search-This/
http://www.htdig.org/
I've used the Zoom search engine by Wrensoft 
 with PHP on a Windows system, and it 
worked well. Also, I've never used it, but I've heard that mnoGoSearch 
works, well, too.

--
Ben Ramsey
Zend Certified Engineer
http://benramsey.com
---
Atlanta PHP - http://www.atlphp.org/
The Southeast's premier PHP community.
---
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] Search engine : build a new one or use an alreadry existing one ?

2004-11-08 Thread Greg Donald
On Sun, 7 Nov 2004 19:10:32 -0400, robert mena <[EMAIL PROTECTED]> wrote:
> I need to improve my current "search mecanism" but got stuck in a
> dilema : build one or use an existing engine?

I recently put together a large company intranet site search using
htdig and a simple php wrapper script:

http://www.devshed.com/c/a/PHP/Search-This/
http://www.htdig.org/

This setup allows me a great deal of graphical customization in the
results display while putting all the real work with search results
and search logic on htdig.


-- 
Greg Donald
Zend Certified Engineer
http://gdconsultants.com/
http://destiney.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Search engine : build a new one or use an alreadry existing one ?

2004-11-07 Thread Nick Le Mouton
I believe swish-e does Unicode, but I'm not 100% sure

Nick

-Original Message-
From: Sadeq Naqashzade [mailto:[EMAIL PROTECTED] 
Sent: Monday, 8 November 2004 2:57 p.m.
To: Noodles
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP] Search engine : build a new one or use an alreadry
existing one ?


Hi
Can I use them (swish-e & HtDig) for unicode scripts?
Sadeq


On Mon, 08 Nov 2004 13:49:32 +1300, Noodles <[EMAIL PROTECTED]>
wrote:
> Curt Zirzow wrote:
> 
> 
> > * Thus wrote robert mena:
> >
> >>Hi,
> >>
> >>I need to improve my current "search mecanism" but got stuck in a
> >>dilema : build one or use an existing engine?
> >>
> >>My site, that uses php/smarty allows my users to browse products in a
> >>category listing or search.  Currently my search only performs a
> >>'select xxx from where field like ' and show the results.
> >>
> >>Even tough it works I'd like to improve it, showing the results by
> >>relevance, proper hadling mispelled words, performing the serach not
> >>only in the product's name etc.
> >
> >
> > If your using mysql, look at the match()/full text index
> > functionality it provides.  This can be a usesfull feature.
> >
> >
> > Curt
> 
> If you have access to install things on your server I would consider
> using Swish-E, i'm using it on www.question.com and it's working great,
> and it has a php interface.
> 
> http://www.swish-e.org/
> 
> Nick
> 
> 
> 
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 


-- 
-
Yazd, 8917954894

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Search engine : build a new one or use an alreadry existing one ?

2004-11-07 Thread Sadeq Naqashzade
Hi
Can I use them (swish-e & HtDig) for unicode scripts?
Sadeq


On Mon, 08 Nov 2004 13:49:32 +1300, Noodles <[EMAIL PROTECTED]> wrote:
> Curt Zirzow wrote:
> 
> 
> > * Thus wrote robert mena:
> >
> >>Hi,
> >>
> >>I need to improve my current "search mecanism" but got stuck in a
> >>dilema : build one or use an existing engine?
> >>
> >>My site, that uses php/smarty allows my users to browse products in a
> >>category listing or search.  Currently my search only performs a
> >>'select xxx from where field like ' and show the results.
> >>
> >>Even tough it works I'd like to improve it, showing the results by
> >>relevance, proper hadling mispelled words, performing the serach not
> >>only in the product's name etc.
> >
> >
> > If your using mysql, look at the match()/full text index
> > functionality it provides.  This can be a usesfull feature.
> >
> >
> > Curt
> 
> If you have access to install things on your server I would consider
> using Swish-E, i'm using it on www.question.com and it's working great,
> and it has a php interface.
> 
> http://www.swish-e.org/
> 
> Nick
> 
> 
> 
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 


-- 
-
Yazd, 8917954894

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Search engine : build a new one or use an alreadry existing one ?

2004-11-07 Thread Noodles
Curt Zirzow wrote:
* Thus wrote robert mena:
Hi,
I need to improve my current "search mecanism" but got stuck in a
dilema : build one or use an existing engine?
My site, that uses php/smarty allows my users to browse products in a
category listing or search.  Currently my search only performs a
'select xxx from where field like ' and show the results.
Even tough it works I'd like to improve it, showing the results by
relevance, proper hadling mispelled words, performing the serach not
only in the product's name etc.

If your using mysql, look at the match()/full text index
functionality it provides.  This can be a usesfull feature.
Curt
If you have access to install things on your server I would consider 
using Swish-E, i'm using it on www.question.com and it's working great, 
and it has a php interface.

http://www.swish-e.org/
Nick
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] Search engine : build a new one or use an alreadry existing one ?

2004-11-07 Thread Curt Zirzow
* Thus wrote robert mena:
> Hi,
> 
> I need to improve my current "search mecanism" but got stuck in a
> dilema : build one or use an existing engine?
> 
> My site, that uses php/smarty allows my users to browse products in a
> category listing or search.  Currently my search only performs a
> 'select xxx from where field like ' and show the results.
> 
> Even tough it works I'd like to improve it, showing the results by
> relevance, proper hadling mispelled words, performing the serach not
> only in the product's name etc.

If your using mysql, look at the match()/full text index
functionality it provides.  This can be a usesfull feature.


Curt
-- 
Quoth the Raven, "Nevermore."

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Search engine : build a new one or use an alreadry existing one ?

2004-11-07 Thread robert mena
Hi,

I need to improve my current "search mecanism" but got stuck in a
dilema : build one or use an existing engine?

My site, that uses php/smarty allows my users to browse products in a
category listing or search.  Currently my search only performs a
'select xxx from where field like ' and show the results.

Even tough it works I'd like to improve it, showing the results by
relevance, proper hadling mispelled words, performing the serach not
only in the product's name etc.

I've tried mnogosearch but I am not sure that I'll be able to
manipulate the query results in order to show only results in the
product section (not the entire site).

Regards,
rt

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php