kalpaitch
kalpaitch

Reputation: 5271

php search engines

Can anyone help me with a good list of php site search engines. I am thinking of implementing a google site search, but I would rather not pay for that and I would rather have as much control as I can over it.

Upvotes: 2

Views: 332

Answers (6)

CoursesWeb
CoursesWeb

Reputation: 4237

Here is a new PHP Search engine script, that can be implemented in any website, it is made with PHP 5.4+, MySQL, and Ajax.

https://sourceforge.net/projects/site-search-engine-php-ajax/

It crawls and indexes automatically the site pages, similar to Sphider. It can uses PDO or MySQLi for connecting to MySQL database.

Upvotes: -1

Yavar
Yavar

Reputation: 11933

Sphinx is one of the best Open Source Search Engines. It has an excellent PHP API. Has very good community and forum too. PHP API for Sphinx comes embedded with the tar/zip file that you will download and with ease it can be embedded on top of your database. Has great vertical search capabilities. Its pretty simple to implement, try it out.

Upvotes: 0

fabrik
fabrik

Reputation: 14365

You don't have to pay for Google Site Search and there's a small chance for much control means greater quality of results.

If your site is very specific you need to write you own code for search.

Upvotes: 0

Macmade
Macmade

Reputation: 53960

You can try the Zend Lucene implementation:

http://framework.zend.com/manual/en/zend.search.lucene.html
http://devzone.zend.com/article/91

Upvotes: 0

Daniel Egeberg
Daniel Egeberg

Reputation: 8382

Sphinx is pretty good, but it isn't written in PHP. It has got PHP libraries to interface with it though. You could also have a look at Zend_Search_Lucene from Zend Framework. Both of these make search indexes so you can do fast searches.

Upvotes: 0

Gordon
Gordon

Reputation: 316969

Read through Roll your own Search Engine with Zend_Lucene.

The article is rather old though, so have a look at the ZF Reference Guide about Zend_Lucene too. Searching for Zend Lucene on Google should yield plenty useful results too.

Upvotes: 3

Related Questions