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.
0
votes
1answer
12 views
clamav cl_scanfile takes a long time to finish
How to optimize clamav cl_scanfile so it is faster? On average It takes about 15-20 seconds for scanning the file. Thus if in one form I have 2 upload field, it will take almost 40 seconds or more, ...
0
votes
0answers
14 views
Why is scaffolding not available in Cakephp in combination with ACL and AUTH?
I want to use scaffolding in my Groupscontroller but I'm getting the error: You are not authorized to access that location. all the time. I've used $this->Auth->allow() in my AppController and ...
0
votes
2answers
32 views
How to use CakePHP to do a query bounded by data in two indirectly-related tables
Presume the Query works:
SELECT
users.id,
subscriptions.name,
users.user_type
FROM users
LEFT JOIN users_subscriptions
ON users.id = users_subscriptions.user_id
LEFT JOIN ...
0
votes
2answers
16 views
Multi-table generic query model for CakePHP
I have approximately 25 join queries I need to build to run in a project on CakePHP.
It is much faster to just work in MySQL WorkBench or phpMyAdmin building the queries,
and then drop into PHP code ...
0
votes
1answer
9 views
cakephp PaginationRecall component crashes my application with a different url/pages
The PaginationRecall component is giving me a headache, it let my application crash.
I have a region view, I can call it with /views/[number of region]
I found out that the reason for the crash is ...
0
votes
1answer
23 views
How can I disable cakephp security?
I used
public function beforeFilter() {
parent::beforeFilter();
$this->Security->validatePost = false;
$this->Security->csrfCheck = false;
...
0
votes
1answer
27 views
5 star rating using CakeDC plugin
I am using CakeDC ratings to make a star rating in my site. I managed to make it work but it is displaying radio choices. I really wanted it to be a 5-star like functionality. In their documentation ...
0
votes
1answer
11 views
Stop callback propagation
I have a Behavior which update a record instead of delete from beforeDelete callback.
public function beforeDelete(Model $model, $cascade = true) {
[...]
return true;
}
When I return true, ...
0
votes
1answer
24 views
CakePHP Insert Statements
I am having trouble inserting data into a MySQL table using CakePHP. I am making a table that once a row is inserted, it should not be able to be overwritten. With the save method of CakePHP, if I try ...
-1
votes
1answer
38 views
CakePHP You don't have permission to access /app/webroot/ on this server [closed]
I have a problem with CakePHP. I downloaded CakePHP and unzip framework to my project folder: ProjectCake. Then run my site(localhost): conrad.lh .The browser display:
You don't have permission to ...
1
vote
1answer
49 views
How to use sessions on the database.php file
What I would want to do is to switch between development_db and local_db.
in the index page, there is a list of databases that i can choose from if i click a database name on the list, the whole app ...
0
votes
1answer
19 views
How do I intregate paypal adaptive payment with cake php 1.3 version?
I have a application in Cakephp 1.3 where I need to integrate latest paypal adaptive payment system. I get code sample from paypal web site for adaptive payment. I get code here ...
0
votes
1answer
16 views
CakePHP Getting Language Strings from Labels with Extract
I am getting language strings from labels with extract.
I have the following code in a view:
<?php echo $this->Form->input('observee', array('label' => __(Observee), 'type' => ...
0
votes
1answer
33 views
Cakephp : search by date ,without range
I am new to cakephp.
How to search by date in cakephp , without range .
pick a date using date picker and search.
In my index part created records are there .I have one datepicker and search button ...
0
votes
0answers
19 views
Multiple form with same model name on single page cakephp
I have two form on a single page: login form and register form. When I submit the register form, it validates both: form fields that are in login and registeration. How can I handle it if both form ...
0
votes
1answer
20 views
Column not found, retreiving data associated model
I've got the following find() function
$this->User->find('all',array(
'conditions' => array('User.id' => $this->Auth->user('id')),
'fields' => ...
0
votes
1answer
35 views
cakephp - datepicker bootstrap not populate when use a edit action
I'm using a datepicker for bootstrap in my application. Here is my HTML code:
<div class="input-append date pull-right" id="dp3" data-date-format="dd-mm-yyyy">
<input name="dataregisto" ...
0
votes
1answer
50 views
Cakephp: pass parameter or data to another page
Our group create a database for patron to attend an event (booking) which has lots of entities.
We have three tables: patron, booking, booking_patron (join table).
We want to create 2 pages in the ...
-1
votes
1answer
25 views
Function call on database.php Cakephp [closed]
is there a way to call a function on the database.php file?
what i'm trying to accomplish is to permanently switch between database on the fly.
but i'm still having trouble on how do it.
0
votes
1answer
27 views
CakePHP in sub-url (not sub-directory)
I can find dozens of articles on installing CakePHP in a sub-directory and getting it to appear in the root url. That is NOT what I am asking for. I rarely down-vote, but if you give that answer, I ...
-2
votes
1answer
26 views
CAKEPHP - disable/enable a button through a specific controller [closed]
its possible, in CAKEPHP, through my controller (UsersController), put a button (found at sight 'default') disable?
and show a label with some information? (everything from the users controller).
...
0
votes
2answers
21 views
How i can get the error when cake are saving?
I have a form, with some fields. When i try save, not happens and I don´t know what´s the problem.
How can i see whats happening on the save moment ?!
Thanks you!.
0
votes
1answer
21 views
Cakephp Local session logic
I have a simple if checking for a customer_id in the session.
<?php if($this->Session->read('customer_id')){ ?>
<?php echo $this->element('watchlist'); ?>
<? } else ...
0
votes
1answer
28 views
How can input change between normal text type and checkbox in cakephp?
In one of my friend's cakephp project,her colleague wrote a checkbox like this :
https://pbs.twimg.com/media/BKt5D1lCAAA1ZfJ.jpg
And he created it in this way:
echo ...
1
vote
0answers
35 views
CakePHP app black holes routed form requests
I have a CakePHP 2.3 setup with the following route:
Router::connect('/contact', array('controller' => 'old_layout', 'action' => 'contact'));
In my AppController, I define
public $components ...
0
votes
0answers
34 views
Change CakePHP settings for tests
The Code
AppController.php
<?php
App::uses('Controller', 'Controller');
class AppController extends Controller {
public $components = array(
'Auth' => array(
...
0
votes
0answers
42 views
Form with multiple models associated with another model in CakePHP
Lets say I have three models: Ant, Bear, Coon.
Now Coon belongs to Ant and Bear.
Bear hasMany Coons, Ant hasMany Coons.
I want to submit form where I create 1 Bear, 1 Ant, and just 1 Coon which ...
1
vote
1answer
45 views
Login with CakePHP and jQuery Mobile
I'm building a mobile application with CakePHP 2.3 and jQuery Mobile.
I'm having a tough time making the login work.
I send out links that contain surveys, and if the user is not logged in on their ...
0
votes
2answers
27 views
Paginate in cakephp
I am using cakephp to create an application.
I am facing trouble with paginating data from model other than controller's model.
var $uses = array('Admin.Provider','Admin.Page');
And in my ...
0
votes
2answers
26 views
Posting to controller with jquery ajax in CakePHP
I want to post data to a controller in CakePHP, but posting with JQuery always results in an error and I can't figure out why.
In my view I have the following method, that posts the data to the ...
0
votes
1answer
29 views
Saving spatial data in CakePHP
I have a problem saving spatial data in CakePHP with saveAll(). I really dont want to write the query manually (Handling spatial data in CakePHP) because there are number of models being saved.
Also ...
0
votes
0answers
20 views
Data not refreshing after changing value in form in cakePHP 1.3
My task was to add one more tab to a page which has 2 tabs already named 'Day'and 'Month'. This new tab would pick up data from a new table 'Finbills', populate the drop down list of a form, and ...
0
votes
1answer
25 views
CakePHP 2.3.0 component $controller is not accessible
I am using Cakephp 2.3.0, loading following component.
class BreadCrumbsComponent extends Component {
public $components = array();
public $controller = null;
public function ...
0
votes
1answer
25 views
Forum Plugin for Cakephp 1.3
I need the forum plugin for cakephp 1.3. I couldn't find this old version. Does anyone know where can I find it and how can I install it? I could just find the new version of cupcake from here.
0
votes
0answers
32 views
unable to login using cakephp
I am using the Auth component and login functionality in my application. But whenever I try to login, it gives me an invalid username and password error.
And it also throws also a warning like:
...
0
votes
1answer
38 views
how to post database fetch values from one page to anthor page using HTML table
in this code
"<td align="left"><a href="admin_order_update.php">' .$row['o_id'] .'</a></td>"
i generate multiple o_id so when i click on other particular o_id this o_id post ...
0
votes
0answers
16 views
Cakephp- Date Conversion while reading from excel sheet
Using Cakephp, I am reading from an Excel sheet (I'm using Libre Office) and the date is not converted properly.
I'm using PHP spreadsheet excel reader to import the excel sheet into the database.
...
0
votes
1answer
23 views
import Only CakePHP Html Helpers in Custom MVC project
I have an unusual task at hand, I just need to import a specific portion of CakePHP framework in my custom MVC project, i.e HTML helpers.
Can anyone tell me what code libraries from CakePHP do I need ...
0
votes
1answer
21 views
Is it possible to create custom functions when use sqlite in cakephp
I need to create a custom function silimar with mysql. But this must be in sqlite to run tdd.
I have not found how to do this in documentation or in code structure.
Reference: ...
0
votes
1answer
25 views
Styling a FormHelper multiselect checkbox
I had this multiple checkbox:
<?php echo $this->Form->input('Power', array('type'=>'select', 'multiple' => 'checkbox', 'options' => $poderes, 'label' => false)); ?>
Thats ...
0
votes
2answers
29 views
How to exclude a form file field on $this->save()?
When a user is created he upload a file.
I want to edit this user, but, when he save and not select any file, in other words, he wants to keep the original, I get this error:
SQL Query: UPDATE ...
0
votes
1answer
33 views
CakePHP Can't insert record with foreign key error
I'm getting the following error when trying to insert a record into the table:
Error: SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint ...
0
votes
1answer
27 views
cakephp passedArgs empty
I have a simple form in a a view and I am trying to access the $this=>passedArgs but it is coming back empty.
I am actualy trying to use the cakeDC search plugin which uses the $this=>passedArgs. It ...
0
votes
0answers
20 views
CakePHP 2.3 AJAX dynamic form
I am trying to develop a CakePHP 2.3 application with a dynamic form and I am having trouble understanding how AJAX works with the newer versions of CakePHP. I have done a lot of google searching and ...
0
votes
0answers
9 views
CakePHP Acl controlled application failed ARO/ACO lookup - Permissions not registering
I am building an profile based application. I am attempting to use the simple acl controlled application tutorial found here: ...
0
votes
0answers
37 views
Data disappears from Xcache in CakePHP
I've tried to learn as much as I could before posting here so here is my little "reasearch"
This is my one of my cache configs (this one was made to debug the issue) from /bootstrap.php:
...
0
votes
1answer
49 views
How to confirm user password in the cheapest way
I need users to confirm their current password before editing some information. Comparing it with session auth information is supposed to be the best way but the current password is not stored in the ...
-1
votes
1answer
52 views
Why is not the same between query in php and query in SQL Server?
I have a CakePHP project with a SQL server, but I am confused when running this query:
result = $this->Manager->query('SELECT TOP(10) name, id
FROM ...
0
votes
0answers
11 views
Pass multiple values with cakephp ajax jquery using Js helper
I have a form with following elements
echo $this->Form->create('Timetable');
echo $this->Form->input('course_id',array('id'=>'courseid'));
echo ...
0
votes
1answer
34 views
How to show the unicode in cakephp when using SQL server
I use the cakephp with SQL server 2012. In my database I have declare nvarchar instead of varchar to show the unicode. But when I use
$this->set('types',$this->Manager->query('select * from ...

