cb_search module

Asked by sh123

I have downloaded & installed Community Builder 1.2 Search Module in joomla 1.5.15.Unfortunately the module is not compatible.what can be done

my question update:
Hi,
thanks for the support you have given.

i am trying to develop a real estate portal where i have to search where filters will come for eg.

if i want to search a house costing 10 lacs to 30 lacs ther should be option like

price 10lacs - 30 lacs
town ------
state ------

how do i implement in joomla, do i have to build a new component using PHP.

and also i want to access data from database how do i do that.

please help me.

Question information

Language:
English Edit question
Status:
Solved
For:
Community Builder 1.2 Search Module Edit question
Assignee:
No assignee Edit question
Solved by:
Tim Black
Solved:
Last query:
Last reply:
Revision history for this message
Tim Black (tim-alwaysreformed) said :
#1

It may be that the module requires Joomla's legacy plugin to be published--let me know whether or not that fixes the problem for you.

Revision history for this message
sh123 (bshreedharl) said :
#2

Thanks for the reply.I tried enabling the legacy plugin,but still the search doesn't work.

Revision history for this message
Launchpad Janitor (janitor) said :
#3

This question was expired because it remained in the 'Open' state without activity for the last 15 days.

Revision history for this message
Tim Black (tim-alwaysreformed) said :
#4

I need more information as to the nature of the error.

Revision history for this message
Tim Black (tim-alwaysreformed) said :
#5

What is the URL of the page that loads after you click the "Search" button? What should appear on that page but does not?

I will try to convert the module to be a Joomla 1.5 native module so it doesn't require the legacy plugin.

Revision history for this message
Best Tim Black (tim-alwaysreformed) said :
#6

> i am trying to develop a real estate portal where i have to search where filters will come for eg.

> if i want to search a house costing 10 lacs to 30 lacs ther should be option like

> price 10lacs - 30 lacs
> town ------
> state ------

> how do i implement in joomla, do i have to build a new component using PHP.

You can set the Age/birthday fieldname configuration parameter in "Administrator - Modules - Age Range Search Module" to the name of your "price" field.

But to search by town or state, you will have to change the PHP code so that it gets a list of towns and states out of the database ('SELECT DISTINCT cb_town FROM jos_comprofiler_fields') and displays them in a select box, then make it so when the form submits it creates a URL which is identical to the URL created when you create a search using Community Builder's own search form. This is complicated enough that I can't explain it sufficiently here, and you will have to learn what you need from other sources.

> and also i want to access data from database how do i do that.

Take a look at the database queries in the PHP code for an example.

Revision history for this message
sh123 (bshreedharl) said :
#7

Thanks for the answer.It really helped me.