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

learn more… | top users | synonyms

0
votes
1answer
30 views

Strings in model are not translated

My application has Contact model in app/models/contact.php. I have used _construct to add some list in array which its values should be translated using _('some text',true) as follows: class Contact ...
0
votes
1answer
33 views

cakephp 1.2 saving multiple checkboxes

Using cakephp 1.2, I am attempting to save checkboxes as a string to the database. However, even though I am storing the checkboxes as a string, it is not saving.. Here is view: <?php echo ...
0
votes
1answer
81 views

Using JSON data in Jquery to populate text boxes

Ok, so I am using a combination of cakephp 1.2, jquery, and ajax with JSON. Here is what I'm doing: When a person inputs an employee id, I get the result of that employee id, if there is one, and I ...
0
votes
2answers
62 views

.htaccess redirect if a folder name in url of CakePHP

Building on this question: .htaccess redirect if folder name in url I'd like to know how to apply the .htaccess rules regarded there, in the .htaccess of the webroot of the CakePHP app. without ...
0
votes
3answers
197 views

cakephp 1.2 multiple update checkboxes with dropdown menu

I trying to update a list of students class by checking on the checkboxes with a selection from the dropdown menu. I've selected four checkboxes. Hence, the debug correctly show 248,268,244,1220. but ...
0
votes
2answers
83 views

Special routing for page:1 in CakePHP pagination

I modified the paginator helper of CakePHP to printout the first page link without page, for example: myexample.com/controller/action/id/page:1 It will be myexample.com/controller/action/id/ and ...
0
votes
0answers
45 views

My component conflicts with Auth component

I decided to handle the Facebook functionality into a component I wrote the following code to start my own Facebook component: <?php class FacebookComponent extends Object{ var $name = ...
0
votes
1answer
75 views

Facebook PHP SDK works only on localhost

I have a mobile app which was interfacing with the PHP Facebook SDK fine until recently. Now it will only sign in when I have it pointed at my localhost development server. Frankly, I'm completely ...
0
votes
1answer
41 views

CakePHP 1.2.x Warning with themed view only [closed]

When I use themed view in my app based on CakePHP 1.2.10 it gives the following symptoms: The favicon does not printed out in the source. the following warning are generated: Warning (2): ...
1
vote
1answer
97 views
+50

Getting randomly logged out when using ckeditor in cakephp 1.2

I have an old cakephp-1.2 application in production. This system has a screen where html content can be edited using ckeditor 3.2. The problem is that almost every time when I try to edit some html ...
1
vote
1answer
87 views

cakephp logic - other methods to get the same result

i've been trying to solve this problem for days. please assist or suggest another methods if possible. i am able to display the total score of the 10 lessons for every student in chrome, safari and ...
0
votes
1answer
13 views

cakephp emailers duplicating email component issue

I am using cakephp 1.2.8 To schedule newsletters we are using email component and set the URL in cron job. The issue we facing is, its sending emails multiple times. We have checked in logs and cron. ...
1
vote
1answer
75 views

A way to find one in CakePHP

The model method read() in CakePHP returns only one record, so we don't need to loop arround the result set as follws: //In Controller $item = $this->Item->read(null,$id); ...
4
votes
3answers
84 views

Pass a string in query without using quotes ''

I have this code for the query: $conditions[]=array('codiceBiblio IN (?)'=> $tot); Where $tot is a string (eg: 2345,5657,4565,5678). In this case, the query will be: SELECT [...] WHERE ...
0
votes
0answers
71 views

Mysql returns only the first result

I have this query for a search form: // General Query $conditions = array( 'editore LIKE' => "%$e%", 'titolo LIKE' => "%$t%" ); Now, if the user chooses fill some field (eg author, ...
0
votes
2answers
169 views

set::extract cakephp

I have an array in this structure: Array ( [0] => Array ( [cd_bibliotem] => Array ( [codiceBiblio] => 119179 [codiceTematica] => ...
0
votes
0answers
135 views

Inner Join cakephp

I have these 2 tables: cd_biblio (which contains a list of books) and cd_bibliotem (which contains only the id of book and id of tag). I want to make a query where the user can choose also the tag of ...
0
votes
0answers
46 views

cakephp application reconfiggured to run on new machine fails?

I have a cakephp application that runs fine on one machine but fails on another. My cakephp application is set up to run with XAMPP. Here are some steps I performed to reconfigure the application on ...
0
votes
1answer
110 views

Hide/Show new menus based on user's selection

I have this menu: Classificazione&nbsp;&nbsp;<select onchange="if(this.value == 'D'){ document.getElementById('menu2').style.display = 'block'; } else { ...
0
votes
1answer
120 views

Set the default value of drop-down list with the last value choosen

I'm using cakephp 1.2, and I have a search form which has also this menu: Classificazione&nbsp;&nbsp;<select style="margin-top: 5px;" name="classificazione"> <option ...
0
votes
1answer
34 views

Get a field lenght in mysql for query

I'm using cakephp 1.2, and I have this situation: I have a table which has a 'class' field, where class can be 'A','B','C','G', or a string of three letters 'DBB','ABA', etc. Every string has sense ...
1
vote
1answer
119 views

SQL Query cakePHP 1.2 from 2 different tables

In cakephp 1.2, I have a table (biblio) with the list of books, and another table (tematiche) where I have the list of tags. I have this code to get the list of books: if (isset($autore_diviso)) ...
0
votes
1answer
175 views

How to increase the session life time in cakephp?

I am trying to increase the session lifetime in cakephp app. I have a remember me checkbox in login page. When checking the checkbox, I need to extend session time to 1 hour more to current time and ...
0
votes
2answers
91 views

Auto fill insert form with $_GET data

I have a search form, where the user can insert in the same field the name of one or more authors. I have this code: Author<br /><input type="text" name="autore" value=<?php echo ...
0
votes
1answer
57 views

Search one or more authors query cakephp

I have a search form, and I want to let the user to search one or more authors who writes a book. I have this code that put the string in an array: if (strpos($a,' ')||strpos($a,',')) { ...
0
votes
2answers
62 views

Search Query in cakePHP 1.2

I have this query: $conditions = array( 'editore LIKE' => "%$e%", 'titolo LIKE' => "%$t%" ); if (isset($autore_diviso)) $conditions[] = ...
0
votes
1answer
66 views

How to semplify code for query in cakePHP 1.2

I have this portion of code in my controller: if ((!empty($params))&&(isset($params['autore'])||isset($params['titolo'])||isset($params['editore'])||isset($params['anno']))) { $a = ...
0
votes
2answers
236 views

multiple checkboxes with cakephp 1.2

I have a page with a list of books, and every row has a checkbox. (I'm using cakephp 1.2). I want to let the user to save multiple books. For now I have this checkbox in my view (in a cycle, where I ...
0
votes
0answers
24 views

How can i convert my query from model to controller in cakephp?

How can i convert this: SELECT * FROM `logs` Log LEFT OUTER JOIN equipment Equipment ON Equipment.`id`=Log.`equipment_id` WHERE Log.`user_id` = $id AND Log.`remarks`='individual' AND ...
0
votes
1answer
176 views

CakePHP : call controllers functions in external php files

This is my situation: 1) a simple_php.php file in webroot folder 2) the users_controller.php in the app/controllers 3) the follow function in the users_controller.php : function ...
0
votes
0answers
16 views

how to access logged in user in a model in cakephp?

Ive already pasted this to my app model function getCurrentUser() { // for CakePHP 1.x: App::import('Component','Session'); $Session = new SessionComponent(); $user = ...
0
votes
2answers
128 views

How to access params in components in cake php?

Access $this->params and $this->data in components. class LoginComponent extends Object { /* */ public function login() { pr($this->params); pr($this->data); } } ...
0
votes
2answers
43 views

find('count') keep getting total no. of rows instead of the value 0

Why do I keep getting the total no. of rows instead of the value 0 when i've entered "" - empty ? Controller $totalSchools = $this->Classroom->find('count', array('conditions' => ...
0
votes
0answers
124 views

cakephp error using Plugins : Cannot use string offset as an array in configure.php

I'm trying to include a plugin in my cakephp project. I create a the /app/plugin/myplugin folder and put in it the plugin files. Then I include in the AppController these lines (because the plugin ...
1
vote
2answers
127 views

CakePHP Parent_ID Name

My DB STUDENT TABLE ID NAME PARENT_ID (VARCHAR) 1 JOHN NULL 2 MATT NULL 3 PETER 1,2 Display in a list of Table ID NAME MENTOR NAME 1 JOHN NULL 2 ...
0
votes
1answer
48 views

Working with abstract models in cakephp 1.2

I'm working on a project based on cakephp 1.2.2. And I'm having the following situation. I have a few model classes with the following hierarchy Human_Abstract extends AppModel { var $table = ...
0
votes
0answers
46 views

404 not found error from error template in cakephp

I want to send en 404 error from a cakephp 2.1 error.ctp template hrow new NotFoundException(__('Invalid module')); doen't work from a view template header("HTTP/1.0 404 Not Found"); Doen't ...
0
votes
0answers
61 views

CakePHP 1.2 cookie authentication issue in plugin

Using cakephp 1.2 We have created a site that has a number of plugins. The site also uses the auth component when any of the plugin urls visited authentication fails placing ...
1
vote
1answer
164 views

Prefix routing and plugins in CAKEPHP 1.2/1.3

Doe any body have examples of setting up the routes.php table when using plugins and prefix routing in CAKEPHP e.g. a shops controller, using the manage prefix to access certain management ...
2
votes
2answers
274 views

Change id from autoincrement to char 36 in CakePHP

I have web application built on CakePHP 1.2.11. and mysql database. In this application I have two tables, namely, users and actions. Users hasMany actions and the user_id (id in users tables) is the ...
0
votes
1answer
101 views

Unable to set up POST method route in CakePHP

I've set up the following route in CakePHP 1.2: Router::connect( "/inbound/:hash", array('controller' => 'profiles', 'action' => 'inbound', '[method]' => 'POST'), array('hash' ...
0
votes
1answer
78 views

ajax button in cakephp 1.2

I'm trying to make something like this: an html form with 5 button (each one with a differn value). if you click one of this button will be dispayed an text input (with a default value depending to ...
0
votes
0answers
144 views

CakePHP 1.2 cascading ajax select elements

I'm using CakePHP 1.2 and have managed to get a dynamic, cascading set of select boxes working using observeField. My select boxes are for quickly picking a suburb, starting with Country, then State, ...
0
votes
2answers
301 views

CakePHP: Insert record with specific id

This is essentially the same question as CakePHP: Is it possible to insert record with pre-defined primary key value?. In CakePHP 1.2 I want to insert a record with a pre-determined id. The id's ...
7
votes
1answer
141 views

How to prevent controller and action from coming up in URL in cakephp?

I have one route that looks like this: Router::connect('/Album/:slug/:id',array('controller' => 'albums', 'action' => 'photo'),array('pass' => array('slug','id'),'id' => '[0-9]+')); ...
0
votes
1answer
126 views

CAKEPHP 1.2 CHECKBOXES

I got a problem with getting multiple values for checkboxes from a column in database. In my database i got a value of '9,10' in a column However, in the edit view i only got 9, which mean only the ...
0
votes
0answers
148 views

3 way SQL table model relationship issues - CakePHP 1.2

I have 3 tables I am trying to associate for my application: resources: MySQL Table CakePHP Model Association +----------+-------------+ class Resource ...
0
votes
2answers
257 views

CakePHP complex find conditions

For example I have a Store model with fields fromH and toH, I want to retrieve stores from database that are open in given hour (@t). SQL query would look like this select * from store where ( ...
1
vote
1answer
125 views

CakePHP Making a form to be global with validation

My application has contacts controller with add action which able to post contacts message to the database table comments. It works fine with its validation. Now I want to use the add view (The ...
1
vote
1answer
143 views

RUpdate/refresh session variable on CakePhp

I'm having a problem with Cake Sessions. In one of my views, I'm showing a value using $session->read('User.image') When the user logs in, the Session is created and everything goes fine. But ...

1 2 3 4 5 6