Tagged Questions
0
votes
0answers
14 views
cakephp trying to add data from a view page and redirect to index - can I use exsitng MVC stuff?
I have a view ( of customer data page that I just want to add (4) links with css to the bottom of the page and basically update a status of call type to the database and then redirect back to the ...
0
votes
1answer
27 views
Controller logic in Element View in CakePHP
I'm working on a really big project. The aspect I'm currently working on requires that email templates are sent to a user when they're added to a learning course by another user.
The controller that ...
0
votes
1answer
28 views
CakePHP How to override already declared model validation error messages?
I can successfully put new messages in view files only if they are not present in model. I mean validations have to be in model, but messages attached to those validations should not be there.
...
0
votes
2answers
54 views
HTML and JavaScript in Cakephp
So i have made a simple 3 page site in html and JavaScript. Now im wanting to put it in a cakephp framework and am totally lost. The site is a simpe home page, create user screen and onmouseover game ...
1
vote
3answers
63 views
CakePHP with large, rapidly growing models
Having spent 9 months in a small team developing with CakePHP we are starting to see more and more models becoming 3000, 4000, even 5000 lines long.
Its not that code is being repeated its simply that ...
1
vote
1answer
119 views
Who is responsible for deleting the PostImages? The PostsController or the PostImagesController?
This question is about a concept in MVC:
Supposing I have two basics entities in my system: the Post that has many PostImage (a 1:N relation).
At certain moment, I'm editing a Post and I want to ...
1
vote
1answer
438 views
Guidance trying to make skinny controllers & fat models in CakePHP
I'm new to Cake, and to MVC's in general. I want to establish good habits from the get go. Among the good habits are keeping controllers lean, and making the models fat. But it's a bit of a moving ...
2
votes
3answers
151 views
CakePHP: proper controllers, models, and actions structure
I have a simple web application with database tables orders and products that I'm reworking with CakePHP. There are more, but for simplicity, I'm using just these two here. In the web app, I'd like to ...
7
votes
1answer
790 views
Lithium and validating complex form inputs - how?
I've done quite a few Lithium tutorials (links below in case they help someone else, and also to show I've done my homework:) and I understand the most basic parts of creating models, views, ...
2
votes
2answers
130 views
MVC: what code belongs to the model
I've started development on a CakePHP project since a few weeks now. Since the beginning I was struggling with the amount of code inside the controllers. The controllers have, in most cases more lines ...
0
votes
1answer
181 views
return inside controller actions MVC cakePHP
I have a simple question here. Is it really a bad idea to have a controller action return something (using return $something;). Is this good or bad MVC practice?
I know good MVC practice requires ...
0
votes
1answer
165 views
CakePHP - model or controller duties?
i have a model of User entity, which relies on some extra data from rest service. In my project i developed a package for retrieving that extra data and put it into Vendors/Components folders. So i ...
0
votes
1answer
1k views
CakePHP 2.0.4: Using the “Number” Helper in Controllers
I know it's against MVC methodologies to use helpers in controllers, but there are some cases where it's useful. For example, consider this snippet of controller code from one of my CakePHP 1.3.13 ...
0
votes
2answers
109 views
Model Associations and Data Modelling
I am developing a web app for an art gallery, and I want to check I have set up the data model correctly.
I have a people table and an artists table. Some of the people are artists and some are not.
...
1
vote
3answers
131 views
CakePHP - where is the best place to put logic for a specific layout?
I am using a layout which has three lists which are created from a database query. I would propose to put this data in the session so the app doesn't have to query the database on every page load.
...
1
vote
1answer
82 views
cakePHP duplicating a function or using an outer controller? (DRY issue)
I have 3 controllers, Tokens, Stores and Users.
Token is related to the two other models, for each token there is a owner-type and owner-id.
There is also a function in both User_controller and ...
0
votes
1answer
465 views
Setting up CakePHP shared hosting
I am following this doc for installing CakePHP on a shared hosting host: http://book.cakephp.org/view/915/Advanced-Installation
I can't figure out where to install the cakephp files on my server.
...
0
votes
2answers
142 views
Creating logs from controllers in CakePhp
What is the best way to create logs & history in CakePHP. I was thinking if there is a way to create a Helper "that accesses" one table and then I call this helper inside of each controller that I ...
1
vote
1answer
623 views
CMS vs framework - what to use for a new site? [closed]
I need to develop a website for a small business. This website would be fairly basic and would include a couple dynamic elements:
blog
testimonial
picture gallery
The site is being developed for ...
0
votes
2answers
133 views
can not filter values within cakephp model
I created a categories model. I also created a project model. The project model belongs to the categories model so when you create a new project, you recieve a category drop down to pick which ...
0
votes
1answer
124 views
Cakephp model alias works, but view doesn't show
I read your answer about cakephp model alias and I did on my model what you wrote, I debuged my view and it list what I want, but it doesn't show the list on the respective field, do you have any idea ...
0
votes
1answer
321 views
CakePHP Extending Controllers and Overriding Methods
I'm working on an Application, and most of the code will be returning in future project. So my idea was to create a structure such as this:
App/
- controllers
- models
- ...
Cake/
My_Custom_Folder/
- ...
2
votes
1answer
178 views
CakePHP how to pass error data from the Model back to Controller
In some special cases where just logging an error isn't enough I would like to pass an error array or a custom error string from a Model to the calling Controller in order to send that data to me in ...
-1
votes
1answer
121 views
MVC undrestandig
i research about mvc and n-tier architecture different. but i can't understand how model pass data to view in mvc?
for example in cakephp I have an controller and action like this:
function edit($id ...
1
vote
1answer
93 views
CakePHP Sending Email - LAMPP
I am attempting to send an email using Cake's 'Email' component. I have included the component into my controller and I am using the following code to try send an email.
$this->Email->from = ...
0
votes
0answers
346 views
BeforeSave and SaveAll on CakePHP
Ok so I have a relation: Tag HABTM Post. I allow the user to add tags while adding a post, so when he submit the post, the saveAll function saves and creates all the relationships.
Thing is, I found ...
2
votes
2answers
267 views
CakePHP: associating two models using different databases?
I have two models, Plant and Emp, that have a Has And Belongs To Many relationship. I've configured them to be associated and the query to get the data for each is correct, but the problem is Plant ...
1
vote
2answers
707 views
CakePHP navigation bar View structure
In CakePHP, let's say the default.ctp just does the framing HTML, with <body> containing $content_for_layout only. This is great for most pages of mysite.com. However, let's say the views ...
2
votes
2answers
254 views
Proper use of controllers with MVC (CakePHP)
Cake's documentation says "Most commonly, controllers are used to manage the logic for a single model." I'm finding this is uncommon for most of my code, and I don't want to break convention unless ...
2
votes
2answers
511 views
Bake Models - CakePHP - Ubuntu
I am currently trying to bake models for a project in CakePHP. I have set up my database tables and baked my skeleton project. I then execute the following via terminal:
cake bake -app ...
0
votes
3answers
176 views
Using the same model across various controllers CakePHP
I've just started reading up on CakePHP and everything is going pretty good so far, though I have a query on the best way to do the following:
I have a "User" model and a "UsersController" ...
0
votes
1answer
456 views
How can i store the filepath of the file that i am uploading in my DB using CakePHP?
I am, using a cakephp form helper to upload images to my server. The uploaded file-name gets stored in the DB but i want to store the full file-path on the server because i need this to show in
my ...
1
vote
1answer
545 views
CakePHP - jQuery modals in keeping with Cake's MVC structure
I wish to make use of modals in my app, for which I will use jQuery's UI dialog (unless anyone has better suggestions). I was hoping to keep all modal content strictly within Cake's MVC framework, if ...
0
votes
1answer
71 views
Cakephp Unidentified Index problem
Hi been trying to get this to work for ages,
i have a deals controller
<?php
class DealsController extends AppController {
var $name = 'Deals';
var $helpers = array('HTML', ...
1
vote
1answer
39 views
changing user model won't let me pull from Users now
I have 1 database linking to 2 apps. For the second app, I change the Auth table like so...
$this->Auth->userModel = 'newAuthTable';
The only problem now is that I still want to run queries ...
1
vote
1answer
159 views
How to let users store multiple size images in cakephp environment?
Im building a mobile app for android & ios using appcelerator. I've build a rest server using cakephp
which returns json.
I would like to know how i could make it possible that users upload a ...
0
votes
4answers
396 views
Why is $uses considered bad practice in cakePHP?
I have 3 tables that contain user information, one for students, one for teachers and one for administrators.
They are not related in any way. I wan't to create a dashboard for the Administrators, ...
1
vote
2answers
406 views
Cakephp - Saving related models
I have the following relationships between my models:
Assignment hasMany Question
Question belongsTo Assignment
Question hasMany Answer
Answer belongsTo Question
I would like to have a single form ...
0
votes
1answer
297 views
I would like to create a Quiz generator using CakePHP
I am interested in creating an application that can create quizzes, by suplying a quiz name, questions and 4 possible answers (1 correct, 3 incorrect). These quizzes will be accessible to the user and ...
1
vote
2answers
93 views
Cakephp model association
I am trying to figure out which relationship type should I use to relate the following:
We have a classroom that has a teacher and students.
Students and teacher belongsTo classroom. But what about ...
0
votes
3answers
86 views
CakePHP model design - better way?
I have a model "Goal" that has four types of children (which all have different fields):
campaign_roi
call_success
phone_skill
call_qluality
The goal table contains a field "model" which specifies ...
0
votes
1answer
177 views
CakePHP: Related values in index()'s paginated list
I'm attempting to edit an index() function to display objects that the index()'s model has a "hasMany" relationship with.
If that's a mouth-full, in other words, I'm attempting to take the "Related ...
0
votes
3answers
292 views
Joining a pivot table to another table (HABTM join HABTM and model associations)
Let's say that I'm building an engine that has many blogs and many users. Users can have many blogs and blogs can have many users (users hasAndBelongsToMany blogs). I would create a pivot table called ...
1
vote
1answer
480 views
CakePHP: Get model instance by url string
I have a CakePHP website and navigaton links are stored in database. What i want is for some navigation entries to call custom function which will return some additional, dynamic data about the link: ...
1
vote
2answers
458 views
Is There A Downside To Calling Models From Helpers In CakePHP?
A bit of context: I need to cache the homepage of my CakePHP site - apart from one small part, which displays events local to the user based on their IP address.
You can obviously use the ...
0
votes
1answer
540 views
CakePHP + Knockout.js?
I am thinking about writing a web app using Knockout.js for the client-side and CakePHP for the server-side. Is this advisable? How can I save/load data to/from a database since it seems that ...
1
vote
2answers
91 views
Random behavior in CakePHP?
echo $form->input('birthday', array(
'label' => 'Birthday',
'type' => 'date',
'dateFormat' => 'MDYMDY',
'value' => $bday,
'empty'=>false,
'minYear'=>1900,
...
0
votes
1answer
645 views
CakePHP - routing with wildcards (controller not found error)
I'm not really even sure how exactly to search for this but I have a URL
site.com/forum/controller/action
Where forum is a plugin and I currently have it routing to the plugin forum successfully ...
0
votes
2answers
821 views
Controller specific functions in cakePHP
I have a piece of code in one of my controllers that I use to call the data for each action and subsequently each view. Rather than repeating the piece of code into each action, what is the best way ...
0
votes
2answers
2k views
CakePHP - how to push array in Session?
If I have the following,
$this->Session->write('ScoreCardCriteria', 'test');
And want to add another item to ScoreCardCriteria as an array of items, how would I do so?
With regular PHP, It ...

