active questions tagged cakephp - Stack Overflow most recent 30 from stackoverflow.com 2009-11-21T19:17:09Z http://stackoverflow.com/feeds/tag/cakephp http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1776168/there-is-a-way-to-use-a-controller-action-directly-as-an-element-in-cakephp 0 There is a way to use a controller action directly as an element in CakePHP? jald 2009-11-21T17:45:22Z 2009-11-21T17:45:22Z <p>I want to use the view for one controller action inside another view with CakePHP, and passing some variables. Anybody has been work on this situation or something similar?</p> http://stackoverflow.com/questions/1751686/conditions-in-associated-models-using-model-find-cakephp 0 Conditions in associated models using Model->find() (CakePHP) Wolfram 2009-11-17T20:52:50Z 2009-11-21T17:18:56Z <p>Hi, I am having some issues with CakePHP's find() method and conditions in 'deeper' model associations. There are some of these around but I could not find an answer to this so far.</p> <p>My model associations are <code>User hasMany Post hasMany Comment hasMany Vote</code> and <code>Vote belongsTo Comment belongsTo Post belongsTo User</code> respectively. The <code>belongsTo</code> associations use inner joins ('type' => 'INNER').</p> <p>How do I find all comment votes for posts of a specific user with CakePHP's model->find() method?</p> <p>I used a chain of four models deliberately, because this seems to work for conditions in directly associated models. So there is no using the foreign-key-holding column in the neighbouring table (condition 'Post.user_id == 1' instead of 'User.id == 1').</p> <p>In SQL this would be:</p> <pre><code>SELECT v.* FROM votes v JOIN comments c ON (v.comment_id = c.id) JOIN posts p ON (c.post_id = p.id) JOIN users u ON (p.user_id = u.id) WHERE u.id = 1 </code></pre> <p>I am unable to reproduce these joins using find() + the Containable behavior. Although I could simply get a user with all his data, I would then have to collect all votes from inside the resulting array.</p> <p>It is not working like this (Warning: unknown column 'User.id'):</p> <pre><code>$this-&gt;Vote-&gt;recursive = 2; // or higher $this-&gt;Vote-&gt;find('all',array('conditions' =&gt; array('User.id' =&gt; 1))); </code></pre> <p>In fact, this doesn't even work using Post instead of User (Vote->Comment->Post) as soon as I add the condition. The manufactured SQL query only joins votes and comments. </p> <p>The returning array should only contain votes the SQL query above would return, everything else should be "joined away" in the process.</p> <p>Note: My question is quite close to this one, which helped me getting started: <a href="http://stackoverflow.com/questions/813294/in-cakephp-how-can-i-do-a-find-with-conditions-on-a-realted-field">http://stackoverflow.com/questions/813294/in-cakephp-how-can-i-do-a-find-with-conditions-on-a-realted-field</a></p> http://stackoverflow.com/questions/1769493/mvc-pattern-in-cakephp 1 MVC Pattern in cakephp BALA 2009-11-20T10:04:42Z 2009-11-21T07:20:48Z <p>Could someone explain me about MVC pattern? How does it help cakephp framework?</p> http://stackoverflow.com/questions/1767371/habtm-data-not-saving-cakephp 0 HABTM data not saving (cakephp). Frank Luke 2009-11-19T23:36:39Z 2009-11-21T03:24:37Z <p>Hello,</p> <p>I have two models related HABTM (documents and people).</p> <pre><code>class Person extends AppModel { var $name = 'Person'; var $hasAndBelongsToMany = array( 'Document' =&gt; array( 'className' =&gt; 'Document', 'joinTable' =&gt; 'documents_people', 'foreignKey' =&gt; 'person_id', 'associationForeignKey' =&gt; 'document_id', 'unique' =&gt; false ) ); class Document extends AppModel { var $name = 'Document'; var $hasAndBelongsToMany = array( 'Person'=&gt;array( 'className' =&gt; 'Person', 'joinTable' =&gt; 'documents_people', 'foreignKey' =&gt; 'document_id', 'associationForeignKey' =&gt; 'person_id', 'unique' =&gt; false ) ); </code></pre> <p>I have the add view of documents populated with one checkbox for each person that will be related to the document.</p> <pre><code> echo $form-&gt;input('People', array('type'=&gt;'select', 'multiple'=&gt;'checkbox', 'options'=&gt;$people, 'label' =&gt; 'People: ')); </code></pre> <p>This is the line from the controller that is supposed to be doing the saving.</p> <pre><code>$this-&gt;Document-&gt;create(); if ($this-&gt;Document-&gt;saveAll($this-&gt;data)) { </code></pre> <p>I noticed that the data was not getting saved into the documents_people table. So, I dumped $this->data.</p> <p>The document portion looks like this:</p> <pre><code>[Document] =&gt; Array ( [file_name] =&gt; asdasd [tags] =&gt; habtm [People] =&gt; Array ( [0] =&gt; 6 [1] =&gt; 12 [2] =&gt; 15 ) [image] =&gt; img/docs/2009-11-19-233059Jack.jpg ) </code></pre> <p>Those are the ids of the people I want associated with this document. However, nothing is transferred to documents_people. What have I done wrong?</p> <p>Thank you, Frank Luke</p> http://stackoverflow.com/questions/1766975/multiple-database-relationship-on-field-other-than-primary-key-in-cakephp 1 multiple database relationship on field other than primary key in CakePHP popefelix 2009-11-19T22:17:29Z 2009-11-21T03:16:01Z <p>I have a project that necessarily spans several databases. </p> <p>One database has tables:</p> <pre><code>CREATE TABLE device { device_uid integer unsigned not null primary key auto_increment, os varchar(50), name varchar(50) } CREATE TABLE platform { platform_id integer unsigned not null primary key auto_increment, name varchar(50) } </code></pre> <p>The other database has the table:</p> <pre><code>CREATE TABLE oses_platforms { platform_id integer unsigned not null primary key auto_increment, os varchar(50), platform_id integer unsigned } </code></pre> <p>I've created Models for the tables and the relationship:</p> <pre><code>&lt;?php class Platform extends AppModel { var $name = 'Platform'; var $useTable = 'platform'; var $primaryKey = 'platform_id'; var $useDbConfig = 'otherdb'; var $hasOne = array( 'OsesPlatform' =&gt; array( 'className' =&gt; 'OsesPlatform', 'foreignKey' =&gt; 'platform_id' ) ); } class Device extends AppModel { var $name = 'Device'; var $primaryKey = 'device_uid'; var $useDbConfig = 'otherdb'; } class OsesPlatform extends AppModel { var $useDbConfig = 'default'; var $name = 'OsesPlatform'; var $primaryKey = 'os'; var $belongsTo = array( 'Platform' =&gt; array( 'className' =&gt; 'Platform', 'foreignKey' =&gt; 'platform_id', ), ); var $hasMany = array( 'Device' =&gt; array( 'className' =&gt; 'Device', 'foreignKey' =&gt; 'os', 'dependent' =&gt; false, ) ); } ?&gt; </code></pre> <p>If all three tables resided in 'default' or 'otherdb', I could do it in the 'conditions' argument to a hasOne or belongsTo relationship from Device to OsesPlatform, and in fact the hasOne relationship between Platform and OsesPlatform works fine. However, it's the relationship between Device and Platform that I need to model.</p> http://stackoverflow.com/questions/1769499/cakephp-session-lost-in-flash-player 0 Cakephp Session lost in Flash player Joel 2009-11-20T10:06:23Z 2009-11-20T19:02:33Z <p>Just want to know if anyone have the same problem.</p> <p>The website need to login to perform certain task. We use stock Auth component to do the job.</p> <p>Everything is fine until it hits an interface which build in Flash. Talking to Amf seems fine. But when the Flash player try to talk to other controller - got redirect because the session in not presented.</p> <p>So basically when a user login - I need to somehow find a way to login the Flash player in as well.</p> http://stackoverflow.com/questions/1769311/advantages-of-cakephp-over-other-frameworks -1 Advantages of CakePHP over other frameworks. BALA 2009-11-20T09:25:23Z 2009-11-20T17:55:46Z <p>What makes cakephp to stand ahead of other frameworks. Is this really topping the chart in terms of PHP programming?</p> http://stackoverflow.com/questions/1766862/cakephp-save-with-a-table-where-the-primary-key-is-not-id 1 Cakephp Save with a table where the primary key is not 'id' Steven smethurst 2009-11-19T21:57:46Z 2009-11-20T10:17:06Z <p>I have an existing web application that I am converting to use CakePHP. The problem is that the primary keys for most of the tables are in this format "${table_name}_id" (story_id) instead of the CakePHP way of 'id'</p> <p>When ever I try to update some of the fields for a row in the story table, the Save() function will return false. Is there any way of getting a more detailed error report from the Save() function. ?</p> <p>When I set <code>Configure::write('debug', 2);</code> in <code>core.php</code> and check the SQL statements I do not see any UPDATE command, only SELECT statements. </p> <p>I tried to edit the controller adding the following line to manually set the id field for the controller but it did not help. </p> <pre><code>$this-&gt;Story-&gt;id = $this-&gt;data['Story']['story_id'] ; </code></pre> <p>I'm running out of ideas. Any suggestions? </p> <p>I have included the source code that I am using below</p> <p><strong>Story controller:</strong></p> <pre><code> function admin_edit($id = null) { if (!$id &amp;&amp; empty($this-&gt;data)) { $this-&gt;Session-&gt;setFlash(__('Invalid '. Configure::read('Site.media') , true)); $this-&gt;redirect(array('action'=&gt;'index')); } $this-&gt;layout = 'admin'; if (!empty($this-&gt;data)) { if ($this-&gt;Story-&gt;save($this-&gt;data)) { $this-&gt;Session-&gt;setFlash(__('The '. Configure::read('Site.media') .' has been saved', true)); } else { $this-&gt;Session-&gt;setFlash(__('The '. Configure::read('Site.media') .' could not be saved. Please, try again.', true)); } } $this-&gt;data = $this-&gt;Story-&gt;read(null, $id ); } </code></pre> <p><strong>Story model:</strong></p> <pre><code> class Story extends AppModel { var $name = 'Story'; var $primaryKey = 'story_id'; var $validate = array( 'author_id' =&gt; array('numeric'), 'title' =&gt; array('notempty'), 'story' =&gt; array('notempty'), 'genra' =&gt; array('notempty'), 'form' =&gt; array('notempty'), 'wordcount' =&gt; array('Please enter a number between 1 and 1000' =&gt; array( 'rule' =&gt; array('range', 1, 1001), 'message' =&gt; 'Please enter a number between 1 and 1000' ), 'Required' =&gt; array( 'rule' =&gt; 'numeric', 'required' =&gt; true ) ) ); //The Associations below have been created with all possible keys, those that are not needed can be removed var $belongsTo = array( 'Author' =&gt; array( 'className' =&gt; 'Author', 'foreignKey' =&gt; 'author_id' ) ); var $hasMany = array( 'UserNote' =&gt; array( 'className' =&gt; 'UserNote', 'foreignKey' =&gt; 'story_id', 'dependent' =&gt; false, 'conditions' =&gt; 'UserNote.notes != ""' ) ); } </code></pre> <p><strong>Story view:</strong></p> <pre><code> echo $form-&gt;create('Story', array('action' =&gt; 'edit' ) ); echo $form-&gt;input('story_id',array('type'=&gt;'hidden') ); echo $form-&gt;input('title'); echo $form-&gt;input('story'); echo $form-&gt;input('bio' ); echo $form-&gt;end('Update story details');?&gt; </code></pre> <p><strong>Story table</strong></p> <pre><code>CREATE TABLE IF NOT EXISTS `stories` ( `story_id` int(11) NOT NULL AUTO_INCREMENT, `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `closed` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `author_id` int(11) NOT NULL, `title` varchar(255) NOT NULL, `story` text NOT NULL, `genra` varchar(255) NOT NULL, `form` varchar(128) DEFAULT NULL, `wordcount` varchar(255) NOT NULL, `terms` varchar(255) NOT NULL DEFAULT '0', `status` varchar(255) NOT NULL DEFAULT 'slush', `published` date NOT NULL, `payment` varchar(255) NOT NULL DEFAULT 'none', `paypal_address` varchar(255) NOT NULL, `resubmission` tinyint(1) NOT NULL DEFAULT '0', `bio` text NOT NULL, `password` varchar(255) NOT NULL DEFAULT 'yyggrrdd', `comments` text NOT NULL, PRIMARY KEY (`story_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=10905 ; </code></pre> http://stackoverflow.com/questions/1766621/how-do-i-handle-json-data-sent-as-an-http-post-to-a-cakephp-app 1 How do I handle json data sent as an HTTP Post to a cakephp app? casper 2009-11-19T21:14:55Z 2009-11-20T08:41:18Z <p>If I'm being sent an HTTP Post where the body of the http request is just a UTF8 encoded string, how do I access that data in my cakephp controller? It appears that $this->params only contains the following:</p> <pre><code>{ "pass":[], "named":[], "controller":"users", "action":"checkin", "plugin":null, "url":{ "ext":"json", "url":"users\/checkin.json" }, "form":[], "isAjax":false } </code></pre> <p>The data being posted looks something like this:</p> <pre><code>{ "sessionkey":"somecrazykey", "longitude":"-111.12345", "latitude":"33.12345", "reqtype":"checkin", "location":"the mall", "public":"true" } </code></pre> http://stackoverflow.com/questions/1718482/using-distinct-in-a-cakephp-find-function 1 Using DISTINCT in a CakePHP find function Frank Luke 2009-11-11T22:22:35Z 2009-11-20T07:48:14Z <p>Hello,</p> <p>I am writing a CakePHP 1.2 app. I have a list of people that I want the user to be able to filter on different fields. For each filterable field, I have a drop down list. Choose the filter combination, click filter, and the page shows only the records that match.</p> <p>In people_controller, I have this bit of code:</p> <pre><code>$first_names = $this-&gt;Person-&gt;find('list', array( 'fields'=&gt;'first_name', 'order'=&gt;'Person.first_name ASC', 'conditions'=&gt; array('Person.status'=&gt;'1') )); $this-&gt;set('first_names', $first_names); </code></pre> <p>(Status = 1 because I am using a soft delete.)</p> <p>That creates an ordered list of all first_names. But duplicates are in there.</p> <p>Digging around in the Cookbook, I found an example using the DISTINCT keyword and modified my code to use it.</p> <pre><code>$first_names = $this-&gt;Person-&gt;find('list', array( 'fields'=&gt;'DISTINCT first_name', 'order'=&gt;'Person.first_name ASC', 'conditions'=&gt; array('Person.status'=&gt;'1') )); </code></pre> <p>This gives me an SQL error like this:</p> <pre><code>Query: SELECT `Person`.`id`, DISTINCT `Person`.` first_name` FROM `people` AS `Person` WHERE `Person`.`status` = 1 ORDER BY `Person`.`first_name` ASC </code></pre> <p>The problem is obvious. The framework is adding Person.id to the query. I suspect this comes from using 'list'.</p> <p>I will use the selected filter to create an SQL statement when the filter button is clicked. I don't need the is field, but can't get rid of it.</p> <p>Thank you, Frank Luke</p> http://stackoverflow.com/questions/1737295/array-transformation-in-php 0 array transformation in php ondrobaco 2009-11-15T11:30:07Z 2009-11-19T16:27:00Z <p>how would you turn this array:</p> <pre><code>Array ( [0] =&gt; 234234234 [1] =&gt; 657567567 [2] =&gt; 234234234 [3] =&gt; 5674332 ) </code></pre> <p>into this:</p> <pre><code>Array ( [contacts] =&gt; Array( [0] =&gt; Array ( [number] =&gt; 234234234 [contact_status] =&gt; 2 [user_id] =&gt;3 ) [1] =&gt; Array ( [number] =&gt; 657567567 [contact_status] =&gt; 2 [user_id] =&gt;3 ) [3] =&gt; Array ( [number] =&gt; 234234234 [contact_status] =&gt; 2 [user_id] =&gt;3 ) [4] =&gt; Array ( [number] =&gt; 5674332 [contact_status] =&gt; 2 [user_id] =&gt;3 ) ) ) </code></pre> <p>is there a cakephp specific way how to transform this array?</p> <p>thank you</p> http://stackoverflow.com/questions/1752668/why-does-cakephp-use-different-plural-singular-naming-conventions 1 Why does CakePHP use different plural/singular naming conventions? Simon 2009-11-17T23:40:16Z 2009-11-19T13:40:52Z <p>Can somebody perhaps explain here why on earth CakePHP has a convention of using plural names for db tables and controllers and singular for models? Why not always use singular terms, or always plural? For me it seems confusing to always have to think "now do I use plural or singular here?" (Or is there an easy way to remember??) And then you have the join-tables that use a combination of both!</p> <p>I assume there's a good reason somewhere, but just have not come across it. <br><i>(I really hope it's not just because Ruby-on-Rails works that way.)</i></p> <p><strong>Simon.</strong></p> http://stackoverflow.com/questions/1761307/advice-needed-from-php-cake-php-expert 0 Advice needed from PHP/Cake PHP expert Hiro 2009-11-19T06:37:55Z 2009-11-19T13:00:16Z <p>I'm very new to programming (besides SQL and databases), but I ultimately want to master Cake PHP for web development. </p> <p>Now, given how new I am, I'm rather lost as to how I get started. Down the road, I want to use MVC framework so that I help myself be disciplined in the way I build. However, I know basic knowledge of PHP and OOP PHP are required. So my question is this: what are the right steps to mastering Cake PHP? I don't want to skip critical phases of learning before learning to Cake PHP. At the same time, I don't want to spend more time than required learning PHP if I can learn it directly through Cake PHP knowledge. </p> <p>Any advice would be appreciated.</p> http://stackoverflow.com/questions/1761414/cakephp-return-the-sql-for-modelfind-rather-than-running-it 0 CakePHP: Return the SQL for Model::find() rather than running it nickf 2009-11-19T07:02:56Z 2009-11-19T07:27:48Z <p>Is there a way to get the SQL which would be run for a particular <code>find()</code> query, rather than actually running it?</p> <p>For example:</p> <pre><code>echo $this-&gt;Users-&gt;find_sql('all'); // "SELECT User.id, User.username FROM users User WHERE 1=1" </code></pre> <p>My own situation would be a little more complicated than this, but I hope it illustrates the desired output.</p> http://stackoverflow.com/questions/1680412/validation-errors-not-showing 0 Validation Errors not showing. Josh Crowder 2009-11-05T13:00:21Z 2009-11-18T20:23:04Z <p>I am trying to validate a user when they register to my application. Nothing is getting set to validationErrors, which is strange can anyone help me out?</p> <p>Here is my MembersController</p> <pre><code>&lt;?php class MembersController extends AppController { var $name = 'Members'; var $components = array('RequestHandler','Uploader.Uploader'); function beforeFilter() { parent::beforeFilter(); $this-&gt;layout = 'area'; $this-&gt;Auth-&gt;allow('register'); $this-&gt;Auth-&gt;loginRedirect = array('controller' =&gt; 'members', 'action' =&gt; 'dashboard'); $this-&gt;Uploader-&gt;uploadDir = 'files/avatars/'; $this-&gt;Uploader-&gt;maxFileSize = '2M'; } function login() {} function logout() { $this-&gt;redirect($this-&gt;Auth-&gt;logout()); } function register() { if ($this-&gt;data) { if ($this-&gt;data['Member']['psword'] == $this-&gt;Auth-&gt;password($this-&gt;data['Member']['psword_confirm'])) { $this-&gt;Member-&gt;create(); if ($this-&gt;Member-&gt;save($this-&gt;data)) { $this-&gt;Auth-&gt;login($this-&gt;data); $this-&gt;redirect(array('action' =&gt; 'dashboard')); } else { $this-&gt;Session-&gt;setFlash(__('Account could not be created', true)); $this-&gt;redirect(array('action' =&gt; 'login')); pr($this-&gt;Member-&gt;invalidFields()); } } } } </code></pre> <p>} ?></p> <p>Member Model</p> <pre><code>&lt;?php </code></pre> <p>class Member extends AppModel {</p> <pre><code>var $name = 'Member'; var $actsAs = array('Searchable'); var $validate = array( 'first_name' =&gt; array( 'rule' =&gt; 'alphaNumeric', 'required' =&gt; true, 'allowEmpty' =&gt; false, 'message' =&gt; 'Please enter your first name' ), 'last_name' =&gt; array( 'rule' =&gt; 'alphaNumeric', 'required' =&gt; true, 'allowEmpty' =&gt; false, 'message' =&gt; "Please enter your last name" ), 'email_address' =&gt; array( 'loginRule-1' =&gt; array( 'rule' =&gt; 'email', 'message' =&gt; 'please enter a valid email address', 'last' =&gt; true ), 'loginRule-2' =&gt; array( 'rule' =&gt; 'isUnique', 'message' =&gt; 'It looks like that email has been used before' ) ), 'psword' =&gt; array( 'rule' =&gt; array('minLength',8), 'required' =&gt; true, 'allowEmpty' =&gt; false, 'message' =&gt; 'Please enter a password with a minimum lenght of 8 characters.' ) ); var $hasOne = array('Avatar'); var $hasMany = array( 'Favourite' =&gt; array( 'className' =&gt; 'Favourite', 'foreignKey' =&gt; 'member_id', 'dependent' =&gt; false ), 'Friend' =&gt; array( 'className' =&gt; 'Friend', 'foreignKey' =&gt; 'member_id', 'dependent' =&gt; false ), 'Guestbook' =&gt; array( 'className' =&gt; 'Guestbook', 'foreignKey' =&gt; 'member_id', 'dependent' =&gt; false ), 'Accommodation' ); var $hasAndBelongsToMany = array('Interest' =&gt; array( 'fields' =&gt; array('id','interest') ) ); function beforeSave($options = array()) { parent::beforeSave(); if (isset($this-&gt;data[$this-&gt;alias]['interests']) &amp;&amp; !empty($this-&gt;data[$this-&gt;alias]['interests'])) { $tagIds = $this-&gt;Interest-&gt;saveMemberInterests($this-&gt;data[$this-&gt;alias]['interests']); unset($this-&gt;data[$this-&gt;alias]['interests']); $this-&gt;data[$this-&gt;Interest-&gt;alias][$this-&gt;Interest-&gt;alias] = $tagIds; } $this-&gt;data['Member']['first_name'] = Inflector::humanize($this-&gt;data['Member']['first_name']); $this-&gt;data['Member']['last_name'] = Inflector::humanize($this-&gt;data['Member']['last_name']); return true; } </code></pre> <p>} ?></p> <p>login.ctp</p> <pre><code> &lt;div id="login-form" class="round"&gt; &lt;h2&gt;Sign In&lt;/h2&gt; &lt;?php echo $form-&gt;create('Member', array('action' =&gt; 'login')); ?&gt; &lt;?php echo $form-&gt;input('email_address',array('class' =&gt; 'login-text', 'label' =&gt; array('class' =&gt; 'login-label') ));?&gt; &lt;?php echo $form-&gt;input('psword' ,array('class' =&gt; 'login-text', 'label' =&gt; array('class' =&gt; 'login-label','text' =&gt; 'Password') ))?&gt; &lt;?php echo $form-&gt;end('Sign In');?&gt; &lt;/div&gt; &lt;div id="signup-form" class="round"&gt; &lt;h2&gt;Don't have an account yet?&lt;/h2&gt; &lt;?php echo $form-&gt;create('Member', array('action' =&gt; 'register')); ?&gt; &lt;?php echo $form-&gt;input('first_name',array('class' =&gt; 'login-text', 'label' =&gt; array('class' =&gt; 'login-label') ));?&gt; &lt;?php echo $form-&gt;input('last_name',array('class' =&gt; 'login-text', 'label' =&gt; array('class' =&gt; 'login-label') ));?&gt; &lt;?php echo $form-&gt;input('email_address',array('class' =&gt; 'login-text', 'label' =&gt; array('class' =&gt; 'login-label') ));?&gt; &lt;?php echo $form-&gt;input('psword' ,array('class' =&gt; 'login-text', 'label' =&gt; array('class' =&gt; 'login-label','text' =&gt; 'Password') ))?&gt; &lt;?php echo $form-&gt;input('psword_confirm' ,array('class' =&gt; 'login-text', 'label' =&gt; array('class' =&gt; 'login-label','text' =&gt; 'Confirm'), 'div' =&gt; array('style' =&gt; ''), 'type' =&gt; 'password' ))?&gt; &lt;?php echo $form-&gt;end('Sign In');?&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1743649/cakephp-1-2-paginator-and-passedargs 0 Cakephp 1.2 Paginator and PassedArgs Sunchaser 2009-11-16T17:29:53Z 2009-11-18T15:27:37Z <p>Problem: when i have a search resultset with pagination, the links next, prev and numbers do not keep the search parameters. Seems to be a common problem.</p> <p>I searched everywhere on the internet, and at last i found that i should put this statement in the view:</p> <pre><code>$paginator-&gt;options(array('url' =&gt; $this-&gt;passedArgs)); </code></pre> <p>However, i can't make it work, Should i do something on $this->passedArgs in the controller? </p> <p>Please help </p> <p>Thanks </p> <p><hr></p> <p><strong>controller code:</strong> </p> <pre><code>function search($category=null) { $this-&gt;paginate['Cat'] = array( 'limit' =&gt; 10, 'order' =&gt; array ('Cat.id' =&gt; 'desc') ); $conditions = array('Cat.category' =&gt; $this-&gt;data['Cat'] ['category']); $this-&gt;set( 'data', $this-&gt;paginate('Cat', $conditions ) ); $this-&gt;render( 'index_ar' ); return; } </code></pre> <p><strong>view code:</strong> </p> <pre><code>&lt;?php $paginator-&gt;options(array('url' =&gt; $this-&gt;passedArgs)); echo $paginator-&gt;numbers( ); ?&gt; &lt;table class='grid'&gt; &lt;tr&gt; &lt;th&gt;&lt;?php echo $paginator-&gt;sort('ID', 'id'); ?&gt;&lt;/th&gt; &lt;th&gt;&lt;?php echo $paginator-&gt;sort('Nome', 'name'); ?&gt;&lt;/th&gt; &lt;th&gt;&lt;?php echo $paginator-&gt;sort('Categoria', 'category'); ?&gt;&lt;/th&gt; &lt;th&gt;Foto&lt;/th&gt; &lt;th&gt;&lt;?php echo $paginator-&gt;sort('Stato', 'status'); ?&gt;&lt;/th&gt; &lt;th width='25%'&gt;&lt;/th&gt; &lt;/tr&gt; &lt;?php $i = '0'; $count = '1';?&gt; &lt;?php foreach ($data as $cats): ?&gt; &lt;?php $class = (is_int($i/2)) ? 'data-grid-row-1' : 'data-grid- row-2';?&gt; &lt;tr class="&lt;?php echo $class?&gt;"&gt; &lt;td&gt;&lt;?php echo $cats['Cat']['id'] ?&gt;&lt;/td&gt; &lt;td&gt;&lt;?php echo $cats['Cat']['name'] ?&gt;&lt;/td&gt; &lt;td&gt;&lt;?php echo $cats['Cat']['category'] ?&gt;&lt;/td&gt; &lt;td style='width:25px'&gt; [cut] </code></pre> http://stackoverflow.com/questions/1615515/cakephp-find-not-working-accross-models 0 CakePHP find() not working accross models AlexMax 2009-10-23T19:44:42Z 2009-11-18T04:25:26Z <p>I am having a very curious problem. I am trying to do a find with conditions that work across model relationships. To wit...</p> <pre><code>$this-&gt;Model-&gt;find('first', array( 'conditions' =&gt; array( 'Model.col1' =&gt; 'value', 'RelatedModel.col2' =&gt; 'value2'))); </code></pre> <p>...assuming that Model has a hasMany relationship to RelatedModel. This particular find bombs out with the following error message:</p> <pre>Warning (512): SQL Error: 1054: Unknown column 'RelatedModel.col2' in 'where clause' [CORE/cake/libs/model/datasources/dbo_source.php, line 525]</pre> <p>Looking at the SELECT being made, I quickly noticed that the comparison in the related model was in fact being placed in the WHERE clause, but for some reason, the only thing in the FROM clause was Model, with no sign of RelatedModel. If I remove the comparison that uses the relationship, related models ARE pulled in the result.</p> <p>I'm using Cake 1.2.4. At first glance, there's nothing in the 1.2.4 -> 1.2.5 changelog that I see that covers this, and you would think that such an obvious bug would be hunted down and fixed a few days later, as opposed to waiting a full month and not mentioning anything in the release annoucement.</p> <p>So, uh, what's going on?</p> http://stackoverflow.com/questions/1753585/cakephp-same-view-for-multiple-functions 0 CakePHP same 'view' for multiple functions Steven smethurst 2009-11-18T04:15:17Z 2009-11-18T04:17:35Z <p>I have a Cakephp project the controller has several different methods. </p> <pre><code>function Index() function IndexAuthor() </code></pre> <p>And I want to use the same 'view' (or template, Index.ctp) for both of the methods of the control.</p> http://stackoverflow.com/questions/1753045/cakephp-bulider 0 CakePHP Bulider adisembiring 2009-11-18T01:28:42Z 2009-11-18T01:32:11Z <p>I have found GUI cakePHP builder in <a href="http://www.widgetpress.com/" rel="nofollow">http://www.widgetpress.com/</a>, but it used for Mac.</p> <p>there is GUI CakePHP Builder for windows ?</p> http://stackoverflow.com/questions/1746762/cakephp-shell-cronjob-controller-action-media-temple-server 0 Cakephp Shell Cronjob Controller Action Media Temple Server Fabian Brenes 2009-11-17T05:20:44Z 2009-11-17T23:56:51Z <p>Hi All, </p> <p>I'm trying to create a cron job that will send a weekly newsletter. I tried creating a shell task following what <a href="http://book.cakephp.org/view/110/Creating-Shells-Tasks" rel="nofollow">Cakephp manual</a> says. Then I go to the Media Temple Cron jobs and type in the following: </p> <p><code>php /home/#####/domains/domain.com/html/cake/console/cake -app /home//#####//domains/domain.com/html/vendors/shells newsletter</code></p> <p>I created the shell task on vendors/shell folder and named it newsletter.php and here's the code for it: </p> <pre><code>class NewsletterShell extends Shell { function main() { $this-&gt;sendEmailTo("Newsletter","subject","email@gmail.com"); } } </code></pre> <p>The sendEmailTo is a controller function I have in my appController so all my controller have access to it.</p> <p>My problem is every time the Cron Job runs I get this message:</p> <p>Could not open input file: /home/#####/domains/domain.com/html/cake/console/cake </p> <p>I even gave all the console files (cake.php , cake.bat etc) 0777 read write properties as well as for the vendors/shell/newsletter.php</p> <p>The ##### are the site number that media temple gives you but I'm not really sure I have it correct. They show an example of a cron job like this: /home/50838/data/script-name.sh</p> <p>So my questions are: </p> <p>Is my cake shell task correct and is the way I'm running it as a cron job accurate? </p> <p>Also does anyone know where to confirm my media temple site number so I can write that off as a possible error. </p> <p>Thanks in advance,</p> <p>Fabian </p> http://stackoverflow.com/questions/1751476/how-can-i-tell-if-im-in-beforesave-from-an-edit-or-a-create-cakephp 0 How can I tell if I'm in beforeSave from an edit or a create? CakePHP Frank Luke 2009-11-17T20:17:05Z 2009-11-17T22:10:08Z <p>Hello,</p> <p>I have a model where I need to do some processing before saving (or in certain cases with an edit) but not usually when simply editing. In fact, if I do the processing on most edits, the resulting field will be wrong. Right now, I am working in the beforeSave callback of the model. How can I tell if I came from the edit or add?</p> <p>Frank Luke</p> http://stackoverflow.com/questions/1749655/cakephp-how-to-combine-two-or-more-application-views-on-one-cakephp-layout-page 0 cakePHP: how to combine two or more application views on one cakePHP layout page? Paul 2009-11-17T15:29:06Z 2009-11-17T21:00:31Z <p>Using cakePHP my goal is to combine the index view of two or more controllers in one layout page.</p> <p>Example: I have controllers for: news, events, links. I want to show the last five entries from each table in one layout page. Also, when one of the links from the views is selected it should take the user to the respective view for that record.</p> <p>I have read through the books section on <a href="http://book.cakephp.org/view/314/Views" rel="nofollow">views</a> but don't see how making a view into an element would accomplish this.</p> <p>What confuses me is how to combine from three separate controller/views into one layout?</p> <p>Thanks</p> http://stackoverflow.com/questions/1691813/specify-which-model-relations-to-load 0 Specify which model relations to load Louis W 2009-11-07T02:51:13Z 2009-11-17T19:10:03Z <p>I am a beginning Cake user but well versed in php and frame works in general (I used to use Code Igniter). How can I call the model below and only return the Artist records and the related ArtistImage records, not the Album records.</p> <pre><code>class Artist extends AppModel { var $name = 'Artist'; var $hasMany = array('Album', 'ArtistImage'); } </code></pre> <p>Also, can you clarify what the values for $this-Artist->recursive do? </p> <p>Thanks for the help</p> http://stackoverflow.com/questions/1751029/cakephp-base-url-with-query-string 0 CakePHP Base Url with Query String rnavarro 2009-11-17T19:03:17Z 2009-11-17T19:03:17Z <p>Hello,</p> <p>I'm having an issue with one of my cake apps. It's actually pretty custom, so I'm not surprised Cake isn't handling this very special case gracefully.</p> <p>I want my application to have a baseUrl = 'addonmodules.php?module=phusion'</p> <p>I've tried a few variations of the change in my config.php:</p> <p><code>Configure::write('App.baseUrl', env('SCRIPT_NAME').'?module=phusion');</code> <code>Configure::write('App.baseUrl', env('SCRIPT_NAME').'?module=phusion&amp;url=');</code> <code>Configure::write('App.baseUrl', env('SCRIPT_NAME').'&amp;#63;module=phusion');</code> <code>Configure::write('App.baseUrl', env('SCRIPT_NAME').'&amp;#63;module=phusion&amp;#38;url=');</code></p> <p>but I can't seem to be able to get this to work. Any assistance with this would be much appreciated.</p> <p>If you need more information I'd be happy to provide it.</p> http://stackoverflow.com/questions/1745968/cakephp-how-would-i-route-all-missing-controller-action-calls-to-a-single-gener 0 Cakephp: How would I route all missing controller/action calls to a single, general error page? davethegr8 2009-11-17T01:03:34Z 2009-11-17T17:02:53Z <p>I've got a cakephp app that I'm trying to get to serve up the <code>Pages::404</code> function (and corresponding view) whenever Cake encounters any error (missing controller, action, etc).</p> <p>What's the best way to do that?</p> http://stackoverflow.com/questions/1749297/cakephp-how-do-i-globally-limit-crud-operations-on-data-to-the-owner-of-that 0 CakePHP - How do I globally limit (C)RUD operations on data to the owner of that data? Wolfram 2009-11-17T14:33:54Z 2009-11-17T15:23:53Z <p>Hi there,</p> <p>I have a model where everything is associated somehow to a single user (e.g. User->Client->Profile). Now a user should only be allowed to (C)RUD on his data (only a profile's owner should be successful accessing /profile/edit/[hisId]), so on nearly every database operation a condition like "'User.id' => $this->Session->read('Auth.User.id')" should be included. This requires that the model functions (like find) always join "their way through" to the user table (or saving the data owner in multiple tables which does not seem to be a good way of doing this).</p> <p>How is this done the right way for various models and actions (especially without comparing user IDs in every action)? Might be in the model's callback functions, but right now I do not see a general solution.</p> <p>This does not seem to be a farfetched scenario so I might be missing a very obvious solution. </p> <p>Thank you for your assistance!</p> http://stackoverflow.com/questions/1746965/how-to-set-an-option-for-form-input-multiplecheckbox 0 how to set an option for form->input( 'multiple'=>'checkbox') vincent low 2009-11-17T06:26:58Z 2009-11-17T13:44:32Z <p>i plan to set a checkbox with selected option in my form. but i am unable to show my checkbox content in the form, i cant see any value instead of just a box for me to select.</p> <p>how to show value while i using checkbox? i able to show my value while i using select. this is in a HABTM model. any hints?</p> <p>here is my selection code.</p> <blockquote> <p>input('User',array('label' => 'Select Related Potential', 'multiple'=>'checkbox', //'options' => $users, <br> 'legend'=>$users, <br> //'value'=>$users, <br> //'id'=>$ownUserId, <br> 'default'=>$ownUserId, 'style'=>'width:200px;height:100px', 'selected' => $ownUserId, )); ?></p> </blockquote> http://stackoverflow.com/questions/1746048/cakephp-function-to-convert-dotted-arrays-to-multidimensional 0 CakePHP function to convert dotted arrays to multidimensional nickf 2009-11-17T01:32:37Z 2009-11-17T06:29:00Z <p>In CakePHP, it seems like a lot of functions can take their arguments as nested, multidimensional arrays, or as dotted strings:</p> <pre><code>$this-&gt;MyModel-&gt;contain(array( 'Something', 'Something.Else', 'Something.Else.Entirely' )); $this-&gt;MyModel-&gt;contain(array( 'Something' =&gt; array( 'Else' =&gt; 'Entirely' ) )); </code></pre> <p>Therefore, I figure there must be a function somewhere in the core to switch from dotted to nested associative, but I can't find it for the life of me. Any ideas?</p> http://stackoverflow.com/questions/1746914/how-double-underscore-works-in-cakephp 0 How double underscore works in cakePHP? joetsuihk 2009-11-17T06:08:46Z 2009-11-17T06:11:07Z <p>which means, can i change the result of find() to another model using sth like:</p> <pre><code>&lt;?php fields = array('sum(vote.score) as Post__score_sum'), ?&gt; </code></pre> <p>and return:</p> <pre><code>array( 'Post'=&gt; array( 'score_sum' =&gt; 5 ) ); </code></pre> <p>related: <a href="http://stackoverflow.com/questions/1611311/cakephp-pagination-sort-data-out-of-model">http://stackoverflow.com/questions/1611311/cakephp-pagination-sort-data-out-of-model</a></p> http://stackoverflow.com/questions/1739736/in-view-call-to-controller-function-in-cake-php 1 in view call to controller function in cake php vincent low 2009-11-16T02:28:04Z 2009-11-16T19:42:12Z <p>i need some help</p> <p>which is when i on my index.ctp/view.ctp, i need to call to my controller function to perform some task. what code i can use to perform this action?</p> <ul> <li>i need to call to my controller function, which send in a value (user_id) to the function and get me a certain action. how can i do that? i might calling in a javascript function as well.</li> </ul>