Questions tagged [cakedc]

CakeDC refers to a series of open source plugins for the CakePHP framework such as CakeDC Users, CakeDC Search, CakeDC Ratings, CakeDC Tags, CakeDC Migrations, CakeDC Imagine, CakeDC Comments and more

CakeDC refers to a series of open source plugins for the CakePHP framework developed by Cake Development Corporation include:

GitHub: https://github.com/CakeDC?tab=repositories

159 questions
0
votes
1 answer

cakePHP - cakeDc-search plugin - PRG pattern

Following up on my previous question, I am supposedly passing the submitted post data as query strings like so: echo $this->Form->create('Donor',array( 'url' => array_merge(array('action' =>'find'), $this->params['pass']) )); But when…
LogixMaster
  • 586
  • 2
  • 11
  • 36
0
votes
1 answer

CakePHP- cakeDC search plugin implementation

I am currently trying to figure out a way to implement cakeDC's search plugin within my application, but I am finding it quite difficult to understand the plumbing that needs to be done before I can get it to work(nicely) with my app. Things to…
LogixMaster
  • 586
  • 2
  • 11
  • 36
0
votes
2 answers

CakeDC user didn't send verification email

I'm able to get this plugin works after hours. But my problem now is that it didn't send the verification email. this is my email.php config. I don't know how to set this up. So I just follow what others are doing. class EmailConfig { public…
Nizam
  • 505
  • 1
  • 8
  • 20
0
votes
1 answer

Why is the CakeDC users plugin creating an initial cookie response when I explicitly set different settings?

I am familiar with the cakePHP cookie and session settings but I am unsure as to why (when analyzing through the Burp Proxy Suite I am finding 2 seperate Set-Cookie responses: Set-Cookie: DropZone=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT;…
lockdown
  • 1,456
  • 5
  • 16
  • 32
0
votes
1 answer

How to protect access with CakeDC users plugin

I would like to ask something about CakePHP and CakeDC user plugin... Yesterday I started my first CakePHP application (blog from CakePHP tutorial without login users). It's great, everything works Ok. Today I installed the plugin CakeDC users. I…
telman
  • 1
0
votes
2 answers

CakeDC Search plugin doesn't work

i'm trying to develop a simple search form using cakedc plugin, i followed step by step the instructions , but i got the next error: Database Error Error: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax;…
0
votes
1 answer

Cakephp search plugin - Search inside related model

Cliente hasMany Solicitud. I am using CakeDC search plugin. I need to search inside Solicitud where Cliente.nombre = "myValue". Is this even doable? I paste what I have: //SOLICITUD MODEL public $actsAs = array('Search.Searchable',…
Tarariraz
  • 113
  • 1
  • 1
  • 7
0
votes
2 answers

How to use ENUM in cake dc migrations?

By using cake-DC migration we can write migrations for string,integer can we used ENUM also ???
0
votes
0 answers

CakeDC Search fixed Not statement

I'm sure there is a very simple answer to this, but I'm not seeing it! I'm using cakeDC Search and want to add a fixed condition so that Listing.status_code = drafts are never shown in the returned search. I've looked at here: But as this field is…
squeaker
  • 395
  • 2
  • 7
  • 17
0
votes
1 answer

How do you search inside of child tables using CakeDC search?

I have search working fine for the parent model, but I have no idea how to get child models/tables included in the Select portion of the query. Using Cake 2.3.8 This article (how to use cakedc/search plugin for searching across 3 different tables…
jnm
  • 1
  • 1
0
votes
1 answer

cakedc search not working

I've tried every simple cakedc search setup, and followed code samples from previous posts on this but it just won't seem to cooperate for me. I'm not sure, but there doesn't seem to be any search query generated with the search string, judging…
jnm
  • 1
  • 1
0
votes
0 answers

accessing CakeDCusers methods

I'm using CakeDCusers but can't access that plugin's methods even when my other plugin Orders hasMany users. $user = $this->Order->User->register($data); gives me this: Error: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an…
Justin Young
  • 2,393
  • 3
  • 36
  • 62
0
votes
1 answer

CakeDC users plugin - how to add details field(i.e - first_name, company) in to registration form

I have installed the cakeDC Users plugin and extend/override users controller and model as they described in to the Readme. Seems everything working. But, I want to modify the registration form and plugin to add fields - first_name, company etc. and…
morshed
  • 21
  • 1
  • 6
0
votes
1 answer

Extending CakeDC users plugin for use with Opauth or OpenID

I am currently in the process of trying to extend the cakeDC users plugin. It is proving relatively difficult to integrate this plugin with the plugin for Opauth located here: https://github.com/uzyn/cakephp-opauth For instance I want in my…
lockdown
  • 1,456
  • 5
  • 16
  • 32
0
votes
2 answers

how to use cakedc/search plugin for searching across 3 different tables with 1 search bar?

I am using CakePHP2.4 and the search plugin https://github.com/CakeDC/search I have the following Employee hasOne EmployeeProfile Employee hasMany Qualification So I have a single search bar. the search bar will search using LIKE through the…
Kim Stacks
  • 10,202
  • 35
  • 151
  • 282