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
1
vote
1 answer

Linking two models with CakeDC Search Plugin

I have a small problem that is me consuming days. I need made a search in two diferent models in CakePHP, i'm using CakeDC Search Plugin.The models are 'Desordens' and 'Sinonimos', the association is hasMany. One 'Desorden' hasMany…
Deric Lima
  • 1,972
  • 2
  • 24
  • 33
1
vote
0 answers

cakedc rating plugin not saving data - cakephp 2.6

I have followed the basic uses of CAKEDC RATING plugin but unable to get it work. after clicking "Rate" button on the view it does not saving the data in table "ratings". PostController: public $components = array('Paginator',…
Faiyaz Alam
  • 1,191
  • 9
  • 27
1
vote
0 answers

Searching CRUD .json in cakephp

I'm using the CRUD component to format my data to .json I now need to search my tables and fields. Installed the Cake DC search component, but can't figure out how to get the 2 to work together. Can someone point me in the right direction?
Justin Young
  • 2,393
  • 3
  • 36
  • 62
1
vote
1 answer

how do i get the current logged in users in cakephp cakedc users

please, can some one tell me how to get the current logged in user in CAKEDC users plugin in cake php. i want to be able to use it at will within the application. just as wordpress' : loggedin_user(), get_current_user().
soyacode
  • 165
  • 9
1
vote
1 answer

Cakephp: CakeDC Users plugin and save another table

I'm using CakeDC Users plugin and I want to save a "Docente" after saving a "User". "User" has a one to one relationship with "Docente". I decided to get the id of the last "User" inserted and then saving "Docente". It worked, but I'm worried that…
Vanessa
  • 51
  • 7
1
vote
0 answers

Search Plugin CakeDC - Dynamic Model Bind Unbind Associations

I have code working search related models using the Search Plugin, but it forces me to break the structure of my model associations. As a result, my save and edit functions do not work properly. Here is the structure of my data. Model: public…
Bryan
  • 17,201
  • 24
  • 97
  • 123
1
vote
1 answer

How to load CakeDC.Comments plugin on CakeDC.Ratings plugin?

I am using CakeDC's ratings plugin in my application to enable users rate on any model entry, such as a company in companies table. I also want to allow users to comment on that rating. Ratings plugin creates an entry in ratings table for each…
hswner
  • 582
  • 1
  • 4
  • 17
1
vote
1 answer

CakeDC Ratings stars do now appear and data is not saved

I am trying to add CakeDC ratings to my CakePHP website. I have followed the instructions in readme provided with the plugin, but the rating stars do not appear. Also the ratings are not saved when I press 'Rate'. Here is the code from the view…
Kristis
  • 389
  • 3
  • 16
1
vote
1 answer

CakePHP Themed application and plugin view elements missing

I use CakePHP 2.4.1 and after installing CakeDC comments plugin, I got the following Notice: Notice (1024): Element Not Found: Elements\comments\flat\main.ctp [CORE\Cake\View\View.php, line 415] My base application is using theme. I initialize…
SaidbakR
  • 13,303
  • 20
  • 101
  • 195
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
1
vote
1 answer

CakeDC Search and Tag plugin - search for multiple tags

Hopefully I'm missing something simple here. I'm using the CakeDC Search and Tags plugin for my cake (2.3.4) app. Along with generic search by field functionality I want the user to be able to search by tags. I've almost got this working but the…
Jimothey
  • 2,414
  • 9
  • 41
  • 66
1
vote
2 answers

Installing CakeDC Users plugin - Error Plugin Users could not be found

Hi all Iam currently trying to install the CakeDC/users plugin using https://github.com/CakeDC/users and have come across an error. When I run command './Console/cake schema create users --plugin Users' I get the error message: Error: Plugin Users…
Joshua
  • 371
  • 2
  • 6
  • 23
1
vote
2 answers

cakephp cakedc between

I'd like to use the 'between' example from cakedc, but just can't make sense out of it. 'range' => array('type' => 'expression', 'method' => 'makeRangeCondition', 'field' => 'Article.views BETWEEN ? AND ?'), I have field qca_start in my table and…
Carlos Garcia
  • 359
  • 1
  • 5
  • 29
1
vote
1 answer

CakePHP Recaptcha using CakeDC plugin version 1.1 no post received by controller method no error message

Using Cakephp 2.2.4 and the Recaptcha plugin 1.1 from CakeDC on a form. The page is SSL/HTTPS. When I submit form with correct recaptcha text entered the form resets and no messages. have checked $this->request->data in the appropriate method in…
Softinio
  • 638
  • 1
  • 6
  • 19
1
vote
1 answer

CakeDC Users login with username

The default login process requires e-mail, not username. I've added this to AppController.php on beforeFilter(), which is also mentioned on CakePHP's Docs Authentication: $this->Auth->fields = array( 'username' => 'username', 'password' =>…
rlcabral
  • 1,496
  • 15
  • 39
1 2
3
10 11