Questions tagged [cakephp-search-plugin]

The Search plugin is an easy way to include search into CakePHP application.

The Search plugin allows you to make any kind of data searchable, enabling you to implement a robust searching rapidly.

The Search plugin is an easy way to include search into your application, and provides you with a paginate-able search in any controller.

It supports simple methods to search inside models using strict and non-strict comparing, but also allows you to implement any complex type of searching.

Most Commonly Used Plugin is CakeDC.

10 questions
2
votes
1 answer

Using CakeDC's search plugin to search data with multi-select field

I am trying to implement a search with CakeDC's Search plugin. In this search I have a field which has 'multiple' => 'checkbox' is set. This field allows user to select multiple cities so that they can filter results according to city/cities. What I…
Sagar Guhe
  • 1,041
  • 1
  • 11
  • 35
1
vote
1 answer

CakePHP cakedc search find all products by category and categories children

I'm using the CakeDC search plugin. I have a simple shopping cart with products that all belong exclusively to subcategories. for example subcategories of food may be fruit, vegetables, meats, etc. so a pear only belongs to the fruit category. …
CertifiedGeek
  • 137
  • 1
  • 13
0
votes
1 answer

CakePHP3 - FriendsOfCake Search Plugin Form Link Not Working

CAKEPHP 3.0 I have used this search plugin for the Help Center I am working on. https://github.com/FriendsOfCake/search So I have already integrated this plugin on a Forum page and it can successfully filter the searched keyword accurately.…
Rhayne
  • 1
  • 1
0
votes
2 answers

Search form with Cakephp 3

i try to make a search form in my application, i want search the post with one input and his search on title and content. EDIT : I use the CakePHP Search plugin My controller public function initialize(){ parent::initialize(); …
user3115306
0
votes
0 answers

Cakephp Search Plugin Filter

I'm starting with a personal project for a web for soccer tournaments, with Cakephp 2.6.4. (Also I'm starting with CakePHP). I implemented the CakeDC Search Plugin, and it performs the search correctly with inputbox. Now, I want to add a filter to…
0
votes
0 answers

cakephp search plugin basic use

I hope you can help me. I've done all steps like here "cakephp basic help to use cakedc search plugin" but the searcher doesn't anything. My project is about one User's List and I want to filter for the fields 'apellidos' or 'dni'. In my Controller…
0
votes
2 answers

cakephp cakedc search plugin filter by name value and conditions

I have a cakedc search plugin with cakephp 3.0 working fine, but would like to have more advanced search filters like: city = 'Los Angeles'; city != 'Los Angeles'; city LIKE '%Angeles%'; city LIKE 'Los%'; city NOT LIKE '%Angeles%'; city NOT LIKE…
aknd
  • 749
  • 2
  • 6
  • 24
0
votes
0 answers

cakephp How can I convert passed params to named params to prefill element form?

I'm using CakePHP version 2.2.3 I have an element with a search box and a few dropdowns that use CakeDC's search plugin. It works great and just passes the selected/searched items in the URL like this …
0
votes
1 answer

CakePHP Search plugin, issue with orCondition

I had a problem with orCondition method. I'd like to create a simple search engine using this plugin in that way that I just want to find a phrase (same or similar) if it's in database in title and description, and I really don't know what am I…
0
votes
0 answers

How to dynamically change query in using CakePHP Search Plugin?

Search plugin in working well but, I have to give either of conditions. Example: 'name' => array('type' => 'like', 'encode' => true, 'before' => false, 'after' => true, 'wildcardAny' => '%', 'wildcardOne' => '_'), Now..…
Keval Domadia
  • 4,768
  • 1
  • 37
  • 64