This tag relates to the 1.3.x branch of CakePHP MVC framework.

learn more… | top users | synonyms

-1
votes
0answers
19 views

CakePHP pagination not working properly

I am using cakephp 2.3 version. I need to wrap tag for current page number only and there should be no tag wrap for default numbers. I tried following: <?php echo ...
0
votes
1answer
9 views

CakePHP $this->model->query

I am trying to run following code and getting error only if I use not condition in where clause. I know I should use cake's save method but because of some sort of reason I have to use ...
1
vote
0answers
30 views

Email template not using themed version

I am using CakePHP 1.3 and the built in email features as described in the documentation. I have the html version of the template located in app/views/elements/email/html/reservation.ctp and its ...
0
votes
1answer
19 views

select distinct year from created date in mysql db table using cakephp 1.3

I have working sql query that returns one row for each year that there is a report. I need the syntax for cakephp 1.3 controller to achieve the same results. SELECT DISTINCT Year( `dated` ) FROM ...
0
votes
0answers
10 views

CakePHP newsletter component not working

I am working with cakePHP Email newsletter component. I have downloaded it from GitHub. I copied all the files correctly. I updated my database with the given tables. When I try to access component a ...
0
votes
0answers
53 views

CakePHP form not calling action

Following is my controller file, reports_controller.php: <?php class ReportsController extends AppController { var $name = 'Reports'; var $uses = array( ...
0
votes
0answers
23 views

cakePHP, processing a huge table in a loop

I have a table (3,000,000 records) which I need to process. I've created a for loop, using SQL COUNT result for the upper boundary. Now I need to iterate through each row, manipulate some data and ...
0
votes
3answers
48 views

Searching table for null values

I trying to search my users table to determine whether the field token is NULL or not (indicating whether the user activated, confirmed or not). I am using CakePHP 1.3 and am having some problem ...
0
votes
1answer
39 views

How to disable cache on logout in CakePHP

I am using cakephp 2.3 version. I need to disable cache only when the user logs out. This is to prevent login in case the back button is pressed. But for all other scenarios I don't want to disturb ...
1
vote
3answers
42 views

How to use “set” in component especially in cakephp?

How to use Set function inside components in cake php especially in cake version 1.3 ? class DevicesComponent extends Object { function startup($controller) { $this->controller = ...
0
votes
2answers
56 views

How to assign or append a unique ID in javascript with row integer from html

I have rows of forms with unique ID and its own Submit button. I used a for loop to get my rows. for ( $i = 0 ; $i < count($areaList) ; $i++ ) sample html output below. In my javascript, I need ...
0
votes
1answer
51 views

CakePHP form not posting data

I am trying to use 2 forms in CakePHP in a tab. I am trying to use action 'financial_day_begin' in the view. The controller has 2 functions 'financial_day' and 'financial_bill_day' both of which I ...
1
vote
0answers
19 views

missing field value in cakephp 1.3 post array due to auto generation of dynamic form fields using JS

I cannot receive all the form fields in my post array. This occurs due to auto - generation of form fields using JS. how can i overcome this? I am not using security component. Is there a limit in ...
0
votes
0answers
15 views

Performing logic on CakePHP 404

I was wondering if there is an acceptable way to modify CakePHP's 404 logic so that I can do something before the page is rendered (i.e. send an email). I have found the documentation on how to create ...
0
votes
1answer
40 views

How to override CakePHP Log() function

I need to override the default CakePHP Log() function so that it writes to the database instead of a file. I don't care whether or not this is a good idea, I simply want to know how I would go about ...
0
votes
1answer
32 views

Prevent the same setFlash() message from being output on every page

I am new to CakePHP and have inherited a project which uses CakePHP v1.3 and displays various messages to the user using $this->Session->setFlash(). One such instance where the message is ...
0
votes
1answer
78 views

Function name is used as SQL query

I've got a problem very similar to the ones found here and here, but these solutions aren't helping me fix my version of the problem. I'm using CakePHP 1.3 and I'm trying to call some model functions ...
0
votes
1answer
54 views

CakePHP 1.3 - Getting nested data from Form->input()?

I'm upgrading a system from CakePHP 1.1 to CakePHP 1.3. In 1.1 I was able to use the HTML helper to do something like: $html->input('User/email'); To get back data nested in: ...
0
votes
1answer
29 views

CakePHP 2 form fields with same name

I have a form with a select for my user to select his / her occupation, i it`s not listed there they can write it on a text field bellow. The data saves corretly, but only for the text field, as it`s ...
0
votes
0answers
47 views

$this->webroot not working in CAKEPHP 1.3

I am using $this->webroot throughout my project. It runs very well in local system, but when I upload it to the server it shows "/". Please tell me why this occurs. I compared the index.php file ...
0
votes
2answers
46 views

CakePHP paginate last page never ends

I, i have a problem with the Cake (1.3) pagination limiter, here is the code: $page = (!empty($this->params['form']['page'])) ? $this->params['form']['page'] : 1 ; # Consulta ...
0
votes
0answers
37 views

view cache fails when data is posted - CakePHP

I am using view caching in cakePHP 1.3, which is working fine. what I am trying to do it, I am also caching add & edit action. 1st time form is displaying properly but when I post data (form ...
0
votes
1answer
29 views

verify views which are cached - CakePHP

I am using CakePHP 1.3 for an application. Now I am caching views as explained on http://book.cakephp.org/1.3/en/The-Manual/Core-Helpers/Cache.html#caching-in-the-controller. but problem is I don't ...
1
vote
1answer
64 views

using sql union on same table in cakephp find query

let's say I have a query like this: (SELECT * FROM user WHERE id < 5 order by id DESC LIMIT 1) UNION (SELECT * FROM user WHERE id = 5) UNION (SELECT * FROM user WHERE id > 5 LIMIT 1) How can ...
0
votes
3answers
37 views

find entries to the left and right of a certain entry in a mysql table in a single query

Let's say I have a table in a database like this table. Let's say that I want to get the entries on the left and right of the entry whose the primary key is equal to 5 (or any other primary key). So ...
0
votes
3answers
82 views

cakephp complex find query example

I would like to perform a find('all') query on a table in a CakePHP application with the following conditions: 1- The primary key value is equal 17 AND 2- The value of another column my_column_id ...
-1
votes
3answers
117 views

CakePHP renders HTML email with <p> tags at every new line

Here is the cake code..... notice the $email_body <?php $this->Email->reset(); $this->Email->delivery = 'smtp'; $this->Email->smtpOptions = array( 'port'=>'465', ...
0
votes
0answers
18 views

CakePHP `find('threaded')` does not find all elements all the sudden

I have a bookmark application written in CakePHP 1.3. There are “keywords” for the bookmarks that have a parent_it field in the database. They are retrieved with a ...
-3
votes
0answers
57 views

How to calculate a machine efficiency? [closed]

want to calculate a machine efficiency: inputs here: machine name how many hours machine worked (per day) machine efficiency per hour: like(machine do digging 1 feet area per hour). machine rent ...
0
votes
1answer
86 views

CakePHP site upgrade from 1.3.3 to 2.3.2

Update: Found out via cake/VERSION.txt that it's actually 1.3.3 I have website running on cakePHP v 0.2.9 built in 2008. but now in PHP 5 some functions and functionality are deprecated. And my ...
1
vote
2answers
56 views

validating string in cakephp 1.3 controller with preg_match “script”

How can I find if string contains "script" tag with preg_match,... ? I'm trying to avoid/aboard submission if data passed as "script" $short_status = $this->params['form']['value']; $regex = ...
0
votes
0answers
27 views

foreignKey table in habtm relationship gets wrongly updated with the latest revision id

I have two models in a habtm relationship: Person & Company. Both of them have the revision behaviour: ...
0
votes
0answers
30 views

cakephp 1.3 HABTM relation not recognizing useTable

I've created a a HABTM relationship in CakePHP 1.3 within a plugin. The plugins name is Products, the two models are "Asset" and "AssetCategory". Essentially we have Products (Assets) and those ...
0
votes
3answers
39 views

how to access array in controller

Hey there I need one help I have "Products" table and "Services" table.There is an association between these two tables. 'Products' belongs to 'Services' and 'Services' has many 'Products'. I have ...
0
votes
2answers
95 views

php count and get last record in foreach loop

I'm trying to be able to count total events for a given day (today) for a specific venue. Using 24 hour time, I tried to find last event of the day within the foreach loop and then when the end_time ...
-2
votes
1answer
93 views

Cakephp how to add multiple view files within a single controller using ajax

I have a controller called User.i write three functions in that controller, ie; function1,function2,function3 each functions have corresponding view file in the View/User folder.my problem is , in my ...
1
vote
2answers
42 views

Wrong values received in function

Something very weird is going on in a website I've made with CakePHP 1.3.10, and I don't know if it's a CakePHP problem or a PHP problem. The problem I have is with an action inside a controller that ...
1
vote
1answer
37 views

cakephp force index at model

I use find method which use "FORCE INDEX" in Model. Model is fine, but when I make a test for that find method, the SQL error happened. I use test/fixture and define DB schema and data. In the ...
0
votes
0answers
25 views

How can I bootstrap CakePHP 1.3 in PHPUnit [duplicate]

I am currently working with a legacy CakePHP 1.3 application and would like to start adding tests as I go. While I am aware that CakePHP has its own test classes which, in 1.3x use SimpleTest, we ...
0
votes
3answers
59 views

create php array using simpleXMLobject

I'm trying to get this array ($resdata) with object(SimpleXMLElement) into a php array: $resdata = array(59) { [0]=> ... [10]=> object(SimpleXMLElement)#294 (28) { ["reservation_id"]=> ...
1
vote
2answers
56 views

CakePHP 1.3 - Having problems baking with oracle

The comand 'cake bake all' works fine when my database is MySQL, but it fails when I try to generate the mvc code using Oracle. The application works as expected when the database.php file is ...
0
votes
0answers
92 views

Highslide JS ajax navigation, loosing editable java script on next or previous page

can anyone help please,... I have Highslide JS script install on cake 1.3 Have photo pages where I can edit Photo Name right from the page itself using jquery.jeditable script and it works fine when ...
0
votes
0answers
45 views

dynatree with lazy loadind: expand all is slow

I have using dynatree, its a great API, working really good for my requirements, now i have a scenario, where i have 5000 node, and the levels for tree are 10, i have implemented lazy load, and its ...
0
votes
1answer
61 views

writing output to a file with CakePHP shell

I am trying to just simply write "hello world" to a file, from a cakephp shell, with plans to eventually write a sitemap.xml file using our product models. I found this: Question which got me ...
1
vote
1answer
80 views

When i use 'group' in cakephp , pagination not work

I have model IndividualSystemSerialNumber in cakephp1.3 and when i try to group by mac_address pagination not working. But when i remove group from paginate , it's working fine. $this->paginate ...
0
votes
0answers
20 views

Unable to achieve results needed when using 'joins' in Model::find()

I'm having an issue while containing a model and supplying conditions to the parent model based on the the associated model's data. This is possible by default in cakephp 1.3 for hasOne and belongsTo ...
0
votes
0answers
29 views

PHPMailer integration cakephp 1.3

The email.php file is in components . I m printing this print_r($result ); and getting following error. The following From address failed: xxxxxxxxx@gmail.com : Called Mail() without being connected. ...
-3
votes
1answer
710 views

TypeError: $(…).on is not a function

I am using jQuery litebox. After adding JS and CSS files I got this error TypeError: $(...).on is not a function at this line in js file "return ...
0
votes
1answer
123 views

CakePHP autorender not stopping default view

I'm trying to run a method in a controller that renders the default view on a normal browser, but renders a mobile view when the request is coming from a mobile device. In app_controller.php ...
0
votes
1answer
59 views

CakePHP 1.3: getting authError message on successful login

I'm trying to implement a login feature where a user can use his username or email address. I've worked out the login with both, but when the user logs in successfully with his email address, the ...

1 2 3 4 5 37