This tag relates to the 2.2.x branch of the CakePHP MVC framework.
0
votes
0answers
30 views
$request variable empty after a post
I'm facing this weird problem on CakePHP, when I try to login into the administration of my website locally (/users/login), I enter my username and password and works just fine
but after I uploaded it ...
0
votes
0answers
11 views
Convert this Select into CakePHP-friendly Select
I have the following model relationships
Post belongsto PostCategory
PostCategory belongsto Forum
PostSubcat belongsto PostCategory
PostCategory hasmany Post
PostCategory hasmany PostSubcat
Forum ...
0
votes
1answer
15 views
Numbered fieldsets appearing in checkboxes cakephp
I am using cakephp 2.2.0, in that I am displaying checkboxes for multiple selection, everything is working fine except, It shows numbers in fieldsets with every checkbox. I want to remove that, What ...
0
votes
1answer
26 views
Multiple Calculated Fields Using Linkable Behavior Not Working
I'm in my ArticlesController trying to display a list of the top article posters sorted by their number of articles DESC. The table also needs to display the total number of points a user has (no ...
0
votes
1answer
26 views
Issue with FormHelper Select Boxes
I have the following tables
articles (Article model)
- id
- topic_id
articles_topics (ArticleTopic model)
- id
When I am in the ArticlesController add() I successfully generate a select list of ...
1
vote
0answers
47 views
Multiple Routing Prefixes + loginAction Not Working
I have searched and though people have asked similar if not the exact same question on this site and elsewhere, several of those questions have gone unanswered and the rest simply don't apply to me ...
0
votes
1answer
63 views
CakePHP, Routing for optional controller using generic controller otherwise
I'd like to make an application in CakePHP which manages exercises and users results. Users and results are not important in this question.
I want to have a possibility to add an exercise with adding ...
0
votes
0answers
45 views
Refresh jquery tab in Cakephp from Ajax response
In cakephp 2 I have a js link that does a simple action in a controller. The ajax response works fine however the link is located in a tab from the jquery ui tabs.
I am trying to get the tab to ...
0
votes
0answers
35 views
Cannot call a plugin model function from a different model
I have a model that needs to go through specific plugins and call a function inside of their model. I am able to call find('all'), but not a custom function inside of the model.
Model calling ...
0
votes
3answers
102 views
CakePHP validation rule automatically adding a required attribute to the field
I am using a custom validation rule in CakePHP to be sure a value is entered into a field when a corresponding checkbox is marked:
Here's the validation rule within my model's validation array...
...
0
votes
1answer
56 views
CakePHP how to set a message from Model?
I'm trying to send a specific message from Model in beforeSave() method. Flash messages don't work. I could send this message from Controller and use some parameters but I don't this this best ...
0
votes
1answer
89 views
Adding onchange event to FormHelper forms
I've got a form full of checkboxes, and I'm trying something to update the form options via AJAX (as one option is selected other selections are limited). I had this working via submit buttons, but ...
0
votes
2answers
57 views
Sessions vs Configure at CakePHP
I saw some codes on internet which in order to check the permissions to access a concrete action, they use the Configure::read function in this way:
public function action1(){
...
0
votes
1answer
46 views
checkboxes for table records
I want to let user to publish or unpublish some articles at once. So, in articles list view, I want to put a checkbox beside each row (article) and send these checkboxes to controller.
I tried to use ...
0
votes
3answers
281 views
Getting names to show in dropdown list with cakephp
I want to show the names of all our project leaders in a dropdown list.
The project leaders are only some of the employees that work in the company.
Here are my tables:
project_leaders
...
2
votes
1answer
103 views
CakePHP 2.2.3 FormHelper cannot set default meridian when using minute interval and default minute value
In my application, the following is expected to output the hour, minute, and meridian <select>s for a 12-hour time with 4:30pm selected by default:
echo $this->Form->input('time_example', ...
0
votes
2answers
48 views
Block access to pages in cakePHP
How do I block access to any page in cakePHP. With page, I'm referring to actual views lying in the Page folder.
When I remove this line in, it works, but it also stops users from logging in. It ...
0
votes
1answer
79 views
CakePHP 2.2 migration : get value of form element in my Helper extending FormHelper
I try to migrate an helper from cakePHP version 1 to version 2. This Helper extends FormHelper.
The instruction $this->value($fieldName); doesn't work anymore.
How can I get the value of my ...
1
vote
1answer
83 views
Return only body with CakePHP Ajax request
I've got a modal dialog that pops up and requests users to change their passwords after a certain condition has been met.
This works perfectly, however, when the request is completed, it returns the ...
0
votes
2answers
53 views
Show author name and not author id under comments
In my application I have 2 controllers, one for articles (Articles) and one for article comments (Article_Comments). Their tables look like this:
Articles
id, author_id, type_id, body, created, ...
0
votes
1answer
59 views
Check users password on login with cakePHP
I want to check the password of a user after login.
What would be the easiest way to do this?
I have a Users controller which has the login and logout actions, and then I have the App Controller ...
0
votes
1answer
48 views
Cakephp: add minutes to datetime object
I am new to cakephp and i wish to do the following:
I have a dateTime object and i want to add and subtract 30 minutes to it.
Following is my code in controller :
$time = ...
0
votes
0answers
77 views
cakephp 2.2 generate breadcrumbs from tree
I'm having some trouble generating my breadcrumbs.
I have a categories table with multiple sublevels that uses the tree behaviour to retrieve data. This categories table hasMany products which belongs ...
0
votes
1answer
46 views
CakePHP 2.2 / AclExtras / aco_sync takes ages to execute
I have a intraweb application which uses AclExtras.
When i execute in shell
./Console/cake AclExtras.AclExtras aco_sync
it takes about 4-5 minutes (!!!).
Is there maybe something not correctely ...
0
votes
1answer
21 views
grouping contained models
PresentationView hasMany SlideView
SlideView model has field duration.
The presentation_duration = sum of all SlideView.duration fields from slide views that belong to the presentation.
I want to ...
0
votes
2answers
65 views
Cake Email Gives an Error
In my Controller file i wrote the following code for attaching an image to the mail,But it gives an error
$email->attachments(array('/localhost/projname/app/webroot/img/file.png'));
It shows an ...
0
votes
1answer
28 views
Multiple prefixed routes and DRY principle
I use CakePHP 2.2.7
In my app I have a public area and admin area.
I use prefixed routes so for admin actions I use
admin_index() etc.
Now I need to add additional admin area for managers. This ...
0
votes
2answers
99 views
Ticket System with cakePHP
I'm attempting to create an ticket type of system for our companies IT related issues.
This ticket system should work as follows:
User logs on and submits and 'IT Query'
The query is saved with a ...
1
vote
1answer
128 views
Why won't my flash messages show? CakePHP 2.2.5
Why won't my flash messages show when I call the user controller? Here is my code:
AppController.php
<?php
App::uses('Controller', 'Controller');
class AppController extends Controller {
...
1
vote
0answers
124 views
How to Include mage.php of Magento in cakephp
I have install magneto 1.7 in cakephp 2x root directory and i want include Mage class in user controller.
My cakephp root directory stractucher is:-
skinrevive/app
skinrevive/magento
skinrevive/lib
...
0
votes
1answer
50 views
How to remove parent model data by filtering on child model data?
Task
I'm trying to return a set of data based on a condition in the related model.
The problem
Currently the closest I can get is using Containable to return all matching model data, but only ...
0
votes
1answer
68 views
Submitting multiple forms from a single view
Using CakePHP I have a page where I have multiple forms. Each form updates a single field on a record. I'm trying to implement a way to submit all the forms through a single "Submit All" button. ...
0
votes
1answer
61 views
Foreach loop involving $date Variable CAKEPHP
I'm new to cakephp and I'm trying to write a for each loop that will get each event that is less than or equal to (<=) today's date.
First of all I'm not really sure if a for each loop is the best ...
2
votes
2answers
172 views
CakePHP 2.x - Virtual fields max foreach items
System
CakePHP 2.x
Database
Houses --> id, name
Visits --> id, date, house_id
Models
Visit belongsTo House
House hasMany Visit
View
I have a view for all houses called ...
0
votes
1answer
33 views
Adding table 1 data to table 2 dropdown
Background
I'm writing an app where I need to pull all the employees (table 1) and add them to a dropdown. This then saves the employee_id in the supervisors table (Table 2).
What I have
I have the ...
0
votes
2answers
74 views
Blocks can only contain strings error when saving to disk
Background
I'm generating an Excel sheet that get's emailed to a certain address. It works perfectly on localhost (saves perfectly, can't test the mailing as I have no local mailserver running). When ...
2
votes
2answers
153 views
CakePHP routes named parameters in base path (/)
I get user referrer with r parameter. (r:code).
It works well on all :controller/:action/* pages, but when try to pass it to base path (/), my webserver returns error 403.
Here is my routes.php ...
0
votes
1answer
41 views
Achieve the same recursion effect with cakePHP
Background
I'm in the process of moving all my old scripts over to the cakePHP framework. Reason for this is less time spent trying to find and fix bugs and just must better layout and structure. Oh, ...
0
votes
1answer
142 views
Session not starting on Cakephp 2.2.3
I'm having a strange issue with sessions on cakephp 2.2.3... my sessions are not starting on the webserver. I tried to use this code on a controller:
<?php
if ($this->Session->write('Test', ...
-1
votes
1answer
115 views
cakephp 2 - load helper depending on layout
i would like to load helpers depending on layouts.
i want something like this, but id doesnt't work:
function beforeRender(){
if (array_key_exists($this->request->action, ...
0
votes
1answer
562 views
Using PHPExcel in CakePHP
Background
Well I tried to ask this question, but it got closed down faster than a horrible security leak. I want to write an excel file using PEAR's Spreadsheet Excel Writer. I Google'd endlessly ...
-1
votes
1answer
216 views
CakePHP : paginate not working on search results
I have a method, that performs a search and sends the results to its view. The search results are available only on the first page of the pagination results. The subsequent paginated pages do not ...
0
votes
1answer
76 views
Mail sending, but no variables in mail - cakePHP
Background
I have a script that sends an email. This email is sent fine. It sends the template, the design is working fine and all the hard coded text is in there.
Problem
Although the mail sends ...
0
votes
0answers
75 views
cakephp 2.2 not allowing login
I have a cakePHP installation, and can't work out how to allow users to login. I've built a registation page, and that's putting the data into the database just fine. I have a User model with a ...
0
votes
2answers
56 views
Issue viewing list after adding virtual fields - cakePHP
I have a page that lists all the employees working in the company. It's been working fine all the time until I added virtual fields to the Users Model.
Now it's giving me the following error:
Error: ...
0
votes
2answers
38 views
How to assign an object instance to a Behavior?
I'm struggling to get my Behavior class to use an object instance in the callbacks.
class SomethingBehavior extends ModelBehavior
{
public function setObject($obj)
{
// do stuff
...
1
vote
1answer
214 views
How to get Zend Studio auto-complete working with CakePHP models?
I would like Zend Studio to recognize the class type for all the controller's models, in a CakePHP 2.x project.
This is how I currently do it.
class MyController extends AppController
{
public ...
2
votes
1answer
92 views
User sessions and two CakePHP applications running in the same machine
I have 2 CakePHP applications running on the same machine.
Both of them need a previous registration to have access to them and the first thing users see is the login form.
I have realized that ...
1
vote
0answers
217 views
CakePHP form authentication for normal requests with basic authentication for JSON
I'm attempting to to build a web application that can be view by a user in a browser but also has an API for developers to interface with my application. My question is how do I change the ...
0
votes
1answer
113 views
cakePHP show Cart on default.ctp
I have a standard cakePHP 2.2 installation and wish to show a cart on the homepage, which is a cookie, storing an array of productIDs mapped to quantities. The cookie is being set correctly, I've ...



