0
votes
1answer
31 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
36 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
83 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
67 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
212 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
91 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
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): ...
5
votes
1answer
115 views

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 ...
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
85 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
177 views

set::extract cakephp

I have an array in this structure: Array ( [0] => Array ( [cd_bibliotem] => Array ( [codiceBiblio] => 119179 [codiceTematica] => ...
0
votes
0answers
140 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
47 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 ...
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
177 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
1answer
58 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
244 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
1answer
178 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
2answers
132 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' => ...
1
vote
2answers
129 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
49 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 = ...
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
0answers
145 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
304 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 ...
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
144 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 ...
2
votes
1answer
104 views

Cakephp modify pot file without i18n

Sometimes I have to change or add one untranslated text to my CakePHP application. In this case I have to run cake i18n to scan all the project's files to produce new pot file, then I use Poedit to ...
0
votes
0answers
54 views

switch cakePHP errors to webserver's default action

I'm using CakePHP 1.2 and I'd like to change 403 and 404 errors back to Apache's default "static" behavior (for performance obviously). I've already tried adding ErrorDocument 400 ...
1
vote
1answer
38 views

datbase.php of cakephp not uploading to github

I have recently started using GitHub. I am uploading my cakephp website. Also, I am using GitHUb for windows, http://windows.github.com/ Now, after I added my CakePHP files -> committed the changes ...
3
votes
1answer
156 views

CakePHP - Creating 2 $content_for_layout variables

I am working on a complete redesign for my company and I have run into a problem. We are building if off the Cake Framework (1.2.0.7296 RC2) and I am trying to find the best solution to create a solid ...
0
votes
2answers
221 views

Auth Component, Controller other than Users

I don't have a User table. I got a Customer table. It seems like Cakephp Auth doesn't recognise any other table beside User. Is there any way to walk around this error? If I tried using ...
0
votes
2answers
390 views

cakephp 1.2 requestAction pagination

I am using Cakephp 1.2. I should be able to sort by A-Z or Z-A with the paginate. However, I got this error below. No much information found in the other resources. please help. Notice (8): Undefined ...
0
votes
1answer
413 views

cakephp 1.2 GET URL PARAMETER

development03/carts/listview/cat_id:5 I want to receive the cat_id, which is 5. I am using $this->params['catId']) to get the cat_id. However, i got this error below Notice (8): Undefined index: ...
0
votes
1answer
126 views

The Zend_Gdata library for Youtube is not imported to cakephp 1.2 application in linux environment

I am using the Zend_Gdata plugin to authenticate Youtube account credentials in our web application using cakephp 1.2 . The Zend/Gdata/ClientLogin.php file is used to call the authentication methods ...
0
votes
2answers
94 views

CakePHP append to Containable/Contain

How to append to contain when it's already declared? I call a regular contain/find: // A controller $this->Site->contain(array('User')); $site = $this->Site->find(); I want to ...
0
votes
2answers
207 views

Opposite of requireSecure in CakePHP

CakePHP has a requireSecure function in the SecurityComponent. I'm using this to force SSL when passing sensitive information such as a credit card number. Questions: Is there a requireNonSecure ...
0
votes
1answer
71 views

Relocating Cake's default layouts folder

I'm working on a CakePHP 1.2 app where I don't have control over the /app directory and have relocated my views folder to, say /path/to/mycomponent/views and can render my views by setting my ...
0
votes
0answers
100 views

CakePHP doesn't load function properly

I have an installation of CakePHP 1.2 and I am unable to access functions within my controller. I can access the controller and if I put a die in the constructor it dies, but if I try to load a ...
1
vote
1answer
330 views

Multiple ajax pagination for single Model and Controller on the same page in cakephp

I have made one method which will be called using ui tab jquery function debate_view_commenttab_content(){ $this->autoRender = false; $this->layout=null; ...
0
votes
1answer
140 views

CakePHP 1.2 Number Helper - Currency method format to GDP £

How Do I format this code to display a Great British Pound Currency (£) sign but only next to the $item['total']? <?php echo $id; ?>Total"><?php echo $number->currency ...

1 2 3 4 5