CakePHP is a rapid development framework for PHP that provides an extensible architecture for developing, maintaining, and deploying applications. It uses commonly known design patterns like MVC and ORM within the convention over configuration paradigm. Current stable branches are cakephp-1.2, ...
0
votes
1answer
15 views
cakePHP isAuthorized not working
I have a table which splits my users (user_levels) linked to the users table (user_level_id). Level 5 is administrator.
I want to limit certain actions from being viewed and understand I can do this ...
0
votes
1answer
23 views
Slow CakePHP form input
I'm creating some quite complex forms (much input, mostly checkboxes) with CakePHP. The problem is that it's quite slow : around 1ms / input, so around 1sec for 1000 inputs.
I'm using the CakePHP ...
0
votes
1answer
22 views
Warnin:Illegal offset type [CORE\Cake\Model\Model.php, line 2734] came on click of login in PHP
I created a simple login form using Cake Php.When i click on the Login button one Warning appear
Illegal offset type [CORE\Cake\Model\Model.php, line 2734
I have use link as a reference ...
0
votes
0answers
52 views
read all files in a directory php
Good day every one
I have a problem.
I have a folder in my webroot/files that has some documents in it, mainly doc files.
I want to read all the contents of the files. e.g. if there are 2 files, ...
0
votes
1answer
22 views
Username in URL using Regex & Route
I have a method in my Users Controller called view, which should display a specified (by URL) user:
public function view($username = null) {
$this->User->username = $username;
if ...
0
votes
0answers
10 views
2
votes
1answer
26 views
CakePHP data not saving and validation not working
When my model goes to validate my form
it always come as false,
it doesn't save in the database.
I dont understand why this isn't working, it was working until I unbind on a few of my functions.
...
0
votes
1answer
29 views
directory separator in cakephp disables my CSS
is what I get, everytime I use this,
$certpath = APP."Plugin".DS."PaypalIpn".DS."Controller".DS."Certificates".DS;
in my code, it ruins my css. Well, not necessarily ruins but my page is as if not ...
0
votes
2answers
24 views
CakePHP “Fatal error: Call to a member function getCoalitions() on a non-object”
I try to call an assisting function "getColition($id)" in a model from view in CakePHP application and i get this error:
Fatal error: Call to a member function getCoalition() on a non-object
in ...
0
votes
0answers
16 views
using unbind on delete function
Hi all I need to delete a record in a table, for it to work I need to unbind it from another table but since I do not have a find function how could I do it/How could I word a find function to help ...
0
votes
0answers
8 views
Loading xml from another server with CakePHP 2.1
In CakePHP 2.1, how do I pass XML data from one server to another. I assume that Xml::build() would allow me to retrieve data through GET, but I need to POST, so I have been trying to use HttpSocket, ...
0
votes
0answers
14 views
How to implement a complicate sorting in cakephp pagination?
Purpose: to implement a search function to get latest and interested research papers from db. So it should be based on both keywords matching scores and the publishing time (time difference from now). ...
2
votes
1answer
26 views
linking tables cakephp
Hi all I finally got my validation for my invoices model working 100% but now its thrown off my validation in relationship model(which was working) because now it references everything in the wrong ...
0
votes
0answers
27 views
CakePHP Auth.redirect not being written
I have followed the authentication tutorial in the cakephp documentation and created a working login system.
One thing I'm trying to do is have the user redirected to the action they were trying to ...
0
votes
1answer
25 views
Returning HTML fragments with JsonView in CakePHP
I'm using Cake 2.1, and with it comes the new JsonView. What I'd like to do is POST to a method in my controller and render an html fragment so that I can return it as a value in json.
Previously I'd ...
0
votes
1answer
22 views
cakePHP authentication problems
I am unable to wrap my head around how the Auth component works in cakePHP. I am using 2.1
My login works perfectly, and from my understanding I can set the default component in the appController, ...
0
votes
2answers
22 views
Validation always coming back false
why is my model taking it consistently to return false everytime I try input two names into my database. here is my entire model. All I'm doing is checking to see that both to/biller, ...
-1
votes
0answers
14 views
querying a nonjoined table in model cakephp
hi all I'm trying to create a validation with the invoices table where it checks the fields of the relationships table, to make sure that both the sender and receiver of the bill are in an active ...
1
vote
1answer
18 views
CakePHP and tinyint as boolean
How can I force CakePHP 2.x to retrieve tinyint database column not as boolean but as tinyint?
MySQL:
Column | type
-------------------------------
... | ...
category_id | ...
0
votes
1answer
27 views
Why is cakephp throwing a database error?
When I'm trying to insert a new invoice into the database, cakephp is throwing an error saying that it can't find the column relationship.partytwo in the where clause. What I'm trying to achieve is ...
0
votes
1answer
15 views
CakePHP Email encoding issue
I have a form that once submitted sends an email to the person who entered the details. This form is for a Japanese website.
I need the encoding of the email to be in UTF-8 not swift-jis
I have ...
2
votes
1answer
18 views
Using “soft delete” with HABTM relationships in CakePHP 2
Using HABTM tables in CakePHP 2.x, what is the best way to use a "soft delete" technique (i.e. having "deleted" boolean field within a join table) so that when removing associations the "deleted" ...
0
votes
0answers
27 views
CakePHP Sort by group maximum/minimum
What I want is to sort data I get from a query with find('all') by the minimum (maximum) of a group they belong to in CakePHP 2.1.
I already explained my problem here in more detail and with examples ...
0
votes
1answer
11 views
auth component in cakePHP2.0
I have a link whose target i need to change depending on whether a user is logged in or not.
If a user is logged in I direct him to a different page and If he is not I intend to show a dialog box that ...
1
vote
1answer
20 views
Reverse Routing /:controller/:id
Keeping this short and sweet: I can quite easily specify something like the following in routes.php and make urls of the desired form work:
Router::connect('/:controller/:id',
...
1
vote
1answer
27 views
How to use DebugKit toolbar in cakephp 2.1.3 or cakephp 2.0
I have tried to use cakephp Debugkit toolbar for cakephp 2.1.3... but it is not working fine..
I have implemented debugkit on cakephp 1.3 it is working fine..
i downloaded debugkit for cakephp ...
0
votes
2answers
16 views
Extending the life of the CakePHP Session Cookie
In my Cake 2 app I have the following code in APP/Config/core.php:
Configure::write('Session', array(
'defaults' => 'database',
'cookie' => 'mycookie',
'timeout' ...
2
votes
1answer
36 views
CakePHP and Twitter bootstrap
I saw few different solutions to implement twitter bootstrap with cakephp
My question is - what the best solution of them???
I wish to use for my app latest versions of cakephp and twitter ...
0
votes
1answer
16 views
Implementing plugins cakePHP
I am trying to implement a search plugin that I found into an application I am creating.
This is the plugin;
So far I have put the plugin into '..cakePHP/app/Plugin/', added CakePlugin::loadAll() in ...
0
votes
0answers
31 views
Simple Search Function
I am just trying to implement a simple search for my database. My database got two tables, person and cat.
Person
personid
name
Cat
catid
cattype
personid
One person can have many cats. I ...
0
votes
1answer
15 views
CakePHP Changing Auth Fields isn't working
I'm currently trying to change my cakephp login from using the username field to using the email field.
When using the username field, the login works fine, here's the code for the login with ...
2
votes
2answers
46 views
CakePHP callback functions equivalent in ASP.Net MVC
I am new to ASP.Net MVC and was wondering if there are callback functions or methods equivalent to those in CakePHP beforeFilter(), afterFilter(), beforeRender() etc.
What i am trying to do is use ...
-1
votes
0answers
11 views
How can make MySQL query in AppController (CakePHP2)?
How can make MySQL query in AppController ?
I have a dynamic menu (element) and that has consistently failed to make inquiries in ManyController for this menu I want to make a request in ...
0
votes
0answers
9 views
Unable to make Ajax Request CakePhp 2.x
I am trying to make an ajax call to a controller. The URL in firebug is perfectly correct because when i open it in new tab it works as required. But when i make an ajax request, it doesnt work. The ...
0
votes
1answer
22 views
function beforeFilter is not working in cakephp2.0
I am using cakephp2.0.I have used the following code in my AppController.php
public function beforeFilter() {
parent::beforeFilter();
$this->setOrderConfigValues();
}
public function ...
0
votes
0answers
12 views
Auth allow and Acl component together not working
I am implementing ACL , for which i used ACLExtras plugin to populate my aros table. Following is my code in which i assigned permissions.
public function install() {
$group = ...
0
votes
3answers
34 views
cake php link to the current page with different prefix
In my default layout I would like to show link which points to the current page but with different prefix. I am using prefix 'language' to use address like www.site.com/eng/controller/action/param.
I ...
2
votes
0answers
26 views
Cakephp validation issue
Hey guys got an issue with Cakephp validation..
I want to know why is partytwo validation going straight to false?
Here is my Relationship model:
<?php
class Relationship extends ...
0
votes
0answers
6 views
HTTP Error in PaypalIpnSource::isValid while posting back to PayPal in cakephp
I'm sorry for this dumb question/situation..I dunno where to look first having this error logged in my log file. I searched for it but the results doesn't seem to be helpful enough for me to ...
0
votes
1answer
12 views
Loading Components in cake php according to certain conditions
In app_controller.php
var $components = array('Session', 'Component1', 'Component2');
I want to avoid loading of all components when $this->params['prefix'] == admin, only
var $components = ...
1
vote
0answers
36 views
cakephp 2.0 & Translate Behaviour
I have a model named 'Country' with the database table named 'countries'.
The Country Model is as follows:
<?
class Country extends CountryAppModel {
public $name = 'Country';
public ...
1
vote
2answers
19 views
cake php mail function helper not found
3 I am getting error in sending mail.here below i have mentioned my code.
in controller file
var $components = array('RequestHandler', 'Filter','Image','Email','Captcha','RandomHelper');
then in my ...
0
votes
2answers
13 views
import of HttpSocket in Paypal in cakephp
Well, here's what i got. I have a line of code here that imports HttpSocket in my CakePHP-paypal integration.
It is located in my /app/PaypalIpn/Model/DataSource/PaypalIpnSource.php. Here it is:
...
0
votes
1answer
20 views
Create an controller in app folder in cake php?
How to create an controller in app folder in cake php?
class AppSessionController extends AppController {
}
I want to create another controller parallely to AppController, then I want to extends ...
0
votes
1answer
22 views
Dropdown List in cakephp
The database is like this. Owner has many cats.
Owner ownerID ownerName
Cat catID catType ownerID
I am trying to add the new cat and on the field of ownerID, I want to show the droplist of all ...
0
votes
0answers
24 views
'deep' => TRUE is not working for save Associated
Following are the tables and their relations :
User hasMany Restaurants
Restaurant hasMany RestaurantCuisine, RestaurantAddress
RestaurantAddress belongsTo City
City belongsTo Province
Province ...
0
votes
0answers
18 views
Is MyISAM table preventing CounterCache?
I am trying to use a counterCache field in one of my tables. In the child table's $belongsTo relationship, I set 'counterCache' => true, and yet the field in the parent table is not incrementing when ...
-1
votes
1answer
24 views
How to update a div content using jquery in cakephp2.1
so i want to click a button an update a controller'action within a div,like this:
$('.navMenuButton').click(function(){
$('#workarea').load('/controller/action');
})
can i do that in cakephp ...
1
vote
1answer
13 views
CakePHP form, printing out certain queries
hi all just wanting to know if you were printing stuff out in a foreach loop how would you code it so that only a specific set of data pertaining to that person. For example I want it to print when ...
1
vote
1answer
33 views
cakePHP form custom validation
Hi all I'm creating an invoice system and trying to make sure that the person sending the request, is sending it to a person who exists. The code that I currently have isn't working and was wondering ...