Php – No full-text support; must have effective thesql db search engine; where to find one

MySQLPHPsearchsqlzend-framework

I have asked several questions about Zend and its search functions.
Now after further reading I have noticed that it requires FULL-TEXT indexes in the MySQL fields.
My webhosting provider doesn't allow me to change anything in the my.ini (my.cnf) file, which holds information about minimum length of word to search full-text indexes and more.
So I can't use FULL-TEXT if there is no other way of setting configuration than changing in that file.
Examples of changes are the ft_min_word_len which is by default 4 I think.

I have a table with around 400,000 records, and I need a good search function. It's classifieds btw.

There has to be a way, I just don't know it, so I thought maybe you guys would know.

In the first question I asked regarding Zend I also mentioned I don't have FULLTEXT support, but people suggested Zend anyway.

Can somebody please give me a good explanation of what I should do in my situation?
NOTE: My website is PHP based!

PS: 'LIKE' wont suffice in the searches I need to make. It must be pretty advanced. If you need details about what it should consist of, check my previous Q: Which third party search engine (free) should I use?

Thanks

UPDATE: In two articles, it says Zend "does full-text searches". What do they mean by that? I believe they mean I require full-text indexes!?

Best Answer

Zend_Search in no way requires any full-text searching to be enabled on any database. In fact, Zend_Search is totally independent of any database, as it is a implementation of the Lucene search engine totally in PHP. You should therefore be able to customize it however you wish.

Full text searching is simply the method it uses. So it does do full text searches, but doens't use your database settings (or your database at all)

EDIT
In response to the third comment, Yes, it is in effect a database, but I wouldn't use it as a replacement to a 'true' database as it doesn't have the fields and data integrity support. You can use the UnStored field type so that it only indexes the records, but doesn't store the actual text, so that you can use it in combination with a relational database.