active questions tagged cakephp - Stack Overflowmost recent 30 from stackoverflow.com2010-02-10T00:43:47Zhttp://stackoverflow.com/feeds/tag/cakephphttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2173434/dynamic-layouts-in-cakephp1Dynamic layouts in CakePHPAlex Ciminian2010-01-31T21:31:20Z2010-02-09T23:40:14Z
<p>Sorry about the question title, but I couldn't find a more appropriate way to phrase this.</p>
<p>I am currently building a CakePHP powered website and I'm not quite sure how to approach the following issue. The website looks something like the follwing mockup: </p>
<p><img src="http://i49.tinypic.com/157mn7.jpg" alt="Website Mockup ">.</p>
<p>The greyed out areas are part of the layout, because their content does not change between views. In the sidebar, I have a collection of ads who are linked to several models. I need controller logic to determine the picture associated with an ad. Also, the ad list needs to be dynamic. Where should I put the logic for building the sidebar? </p>
<p>I've thought about:</p>
<ul>
<li>putting the logic into the <code>AppController</code> (<code>beforeFilter</code> / <code>afterFilter</code>) - the problem is I can't use the controller logic I need (the other controllers inherit from <code>AppController</code>, I'm not sure how to use them there).</li>
<li>making a component - is it okay to build components that rely on controllers?</li>
<li>replicating the sidebar code in all controllers that render views - this seems kind of stupid to me.</li>
</ul>
<p>What is <em>the Cake way</em> for this?</p>
http://stackoverflow.com/questions/2232913/kayak-like-filter-sliders-using-jquery-and-ajax-pagination-in-cakephp0Kayak-like filter sliders using jQuery and AJAX pagination in CakePHPFlowTag2010-02-09T22:12:02Z2010-02-09T22:12:02Z
<p>Hey everyon, I was looking at <a href="http://teknoid.wordpress.com/2009/01/14/kayak-like-filter-sliders-using-jquery-and-ajax-pagination-in-cakephp/" rel="nofollow">this tutorial</a> and was wondering if anyone has an example of the completed effect.</p>
<p>I just want to know if it filters through the result when using the sliders but also updates the paginated numbers like on the kayak site. So lets say there is 10 pages, then you use the filter and then there are 5 pages.</p>
<p>If anyone has actually done or know of some place where I can see the end result as there is no demo on that site. Thanks. </p>
http://stackoverflow.com/questions/2232538/city-belongsthroughcountyto-province-association-how-to-simplify-the-code0City belongsThroughCountyTo Province association, how to simplify the code?Paweł Mysior2010-02-09T21:08:29Z2010-02-09T21:29:33Z
<p><strong>Tables:</strong></p>
<p><code>Province hasMany County</code>, <code>County belongsTo Province</code>, <code>County hasMany City</code>, <code>City belongsTo County</code></p>
<p>So basically something like: <code>City belongsThroughCountyTo Province</code></p>
<p><strong>Situation:</strong></p>
<p>In a search form I have a select drop down menu with provinces.</p>
<p><strong>The "code":</strong></p>
<p>When I list the results, I first get ids of counties that belong to the specified province, and then do a <code>City.county_id IN (array_of_counties_ids_here)</code>.</p>
<p><strong>Question:</strong></p>
<p>My question is, could I be doing it in a better way? Without first accessing the counties table. A simple three way join should do the trick, but I don't have an idea on how to implement it in Cake.</p>
<p>Adding a <code>province_id</code> field to the cities table isn't a solution in my case (can't alter tables).</p>
http://stackoverflow.com/questions/2231119/what-are-the-best-php-forums0what are the best PHP forums? [closed]Imran2010-02-09T17:38:46Z2010-02-09T17:45:20Z
<p>What are the best PHP forums? If you can list as many as possible please.</p>
<p>Thank you in advance;-)</p>
http://stackoverflow.com/questions/2230076/file-upload-cakephp0file upload cakephpudhaya2010-02-09T15:14:52Z2010-02-09T15:14:52Z
<p>when uploading an image to the server using cakephp</p>
<p>$this->Model->Behaviors->attach('ImageUpload', Configure::read('photo.files'));</p>
<p>photo uploaded successfully, and the database fields also</p>
<p>but shows following error instead of returning to index page.</p>
<hr>
<p>Notice (8): Undefined index: class [CORE\cake\libs\model\behaviors\upload.php, line 104]</p>
<p>Notice (8): Undefined index: class [CORE\cake\libs\model\behaviors\upload.php, line 107]</p>
<p>Warning (2): Cannot modify header information - headers already sent by (output started at E:\umoorthy_105act10\projects\dev1base\core\cake\basics.php:111) [CORE\cake\libs\controller\controller.php, line 614]</p>
<hr>
<p>wat to do?</p>
http://stackoverflow.com/questions/2215684/adding-a-logo-in-cake-framework-by-editing-default-ctp0adding a logo in cake framework by editing default.ctpadam 2010-02-07T02:34:19Z2010-02-09T10:44:24Z
<p>where do i put the code for the image, then where would i put the actual image file itself </p>
<pre><code> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php echo $html->charset(); ?>
<title>
<?php __('neigh*borrow'); ?>
<?php echo $title_for_layout; ?>
</title>
<?php
echo $html->meta('icon');
echo $html->css('cake.generic');
echo $scripts_for_layout;
?>
</head>
<body>
<div id="container">
<div id="header">
<h1><?php echo $html->link(__('neigh*borrow, the communty for borrowing things you need when you need them. NYU students interested in participating in the BETA should enter an item they would like to borrow along with their .NYU.EDU email address. ', true), 'http://cakephp.org'); ?></h1>
</div>
<div id="content">
<?php $session->flash(); ?>
<?php echo $content_for_layout; ?>
</div>
<div id="footer">
<?php echo $html->link(
$html->image('cake.power.gif', array('alt'=> __("CakePHP: the rapid development php framework", true), 'border'=>"0")),
'http://www.cakephp.org/',
array('target'=>'_blank'), null, false
);
?>
</div>
</div>
<?php echo $cakeDebug; ?>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/2220065/cakephp-acl-confusion-how-do-i-apply-acls-to-objects-not-actions1CakePHP ACL confusion, how do I apply ACLs to objects, not actions?michael2010-02-08T07:05:17Z2010-02-09T09:26:31Z
<p>Can anyone suggest a scalable design pattern for implementing access control on Photos and Albums, each with individual privacy settings (i.e. owner, group member, public)? </p>
<p>I'm using CakePHP, and the examples I have read on the ACL component seem to control access to controller/actions, not objects themselves. It seems to get out of hand when I try to track </p>
<ul>
<li>/C/R/U/D privileges
<li>per controller-action
<li>per privacy setting (i.e. owner, group member, public)
<li>per Album, Photo, etc.
</ul>
<p>Especially when you might have 1000s of photos per Album, and Photos habtm Albums. Am I right or am I missing something completely?</p>
<p>Can someone add some pseudo code to help me understand how to tackle this problem? Or point me in the right direction Because I know it's been done before on sites like Flickr.</p>
<p>tia.</p>
http://stackoverflow.com/questions/2227293/how-to-use-or-condition-in-paginate-function-in-cakephp0How to use OR Condition in Paginate function in Cakephp ??www.samay.info2010-02-09T06:48:19Z2010-02-09T07:59:30Z
<p>Hi! I am facing a problem while fetching values using paginate function in cakephp. In the "to" field of message I have CSV fields of userid. To search messages for a single user. I am using the code below... </p>
<pre><code>$this->set('message', $this->paginate('Message', array(
'or'=> array(
"Message.to LIKE" => "".$this->Session->read('Auth.User.id').",",
"Message.to LIKE" => ",".$this->Session->read('Auth.User.id').","
)
)));
</code></pre>
<p>But the query is formed in this manner which is not what I want.. I want to two conditions with OR condition.</p>
<pre><code>SELECT `Message`.`id`, `Message`.`timestamp`, `Message`.`to`, `Message`.`from`,
`Message`.`message`, `Message`.`subject`, `Message`.`urgent`, `Message`.`read`,
`Message`.`tag`, `Message`.`open`, `Message`.`reply_id`, `User`.`id`,
`User`.`fname`, `User`.`lname`, `User`.`user`, `User`.`password`,
`User`.`photo`, `User`.`created`, `User`.`access`, `User`.`login`,
`User`.`status`, `User`.`role`
FROM `messages` AS `Message`
LEFT JOIN `users` AS `User` ON (`Message`.`to` = `User`.`id`)
WHERE `Message`.`to` LIKE ',1,'
ORDER BY `Message`.`timestamp` desc
LIMIT 5
</code></pre>
http://stackoverflow.com/questions/2225818/redirecting-paginator-sort-to-the-first-page-in-cakephp2Redirecting paginator->sort to the first page in Cakephpuser2690982010-02-09T00:03:09Z2010-02-09T02:31:39Z
<p>How do I do a paginator sort and also specify it to go to the first page:</p>
<p>echo $paginator->sort('Make', 'Car.make');</p>
<p>If you're on page 6 and want to sort the list by car make. It sorts the list but puts you on page 6 of the sorted list. When someone clicks on the sort by "make" button, I want the paginator to take them to page 1 of the sort. I know there is an options['url']['page'] variable and that the sort function can be 'sort($title, $key = NULL, $options = array())'. However, I have no idea what the proper syntax is for setting that flag in the $paginator->sort statement above. Please help, thanks!</p>
http://stackoverflow.com/questions/1217096/problem-installing-cake-php3Problem installing cake phpAdit2009-08-01T17:40:06Z2010-02-09T00:55:45Z
<p>I have installed wampserver on my pc. I unzipped the cake php installation files in the "www" folder of wampserver. Now, when I try to run- "http://localhost/cakephp", I get a whole list of errors along with the cake php getting started page. Here are some of the errors:</p>
<pre>
Deprecated: Assigning the return value of new by reference is deprecated in
D:\wamp\www\cakephp\cake\libs\inflector.php on line 131
Deprecated: Assigning the return value of new by reference is deprecated in
D:\wamp\www\cakephp\cake\libs\configure.php on line 136
Deprecated: Assigning the return value of new by reference is deprecated in
D:\wamp\www\cakephp\cake\libs\configure.php on line 226
Deprecated: Assigning the return value of new by reference is deprecated in
D:\wamp\www\cakephp\cake\libs\configure.php on line 906
</pre>
<p>How do I fix this? I got similar errors for codeignite. </p>
http://stackoverflow.com/questions/2224907/cakephp-is-truncating-a-text-field-probably-encoding-related0CakePHP is truncating a text field, probably encoding relatedmabwi2010-02-08T21:11:09Z2010-02-08T21:27:50Z
<p>Here's what I'm trying to do:</p>
<p>I'm parsing incoming email, and using it to create posts in the system. This works almost completely, but there's a few bugs to work out. The one that's currently giving fits is coming up when an email contains certain characters (for example, ® – “ ”), the email body is being truncated at the special character when inserting in to the database. It's happening during the $Model->save() call.</p>
<p>The email is not UTF-8 encoded (and since any user can send email, we can't control the incoming mail encoding), but the database is UTF-8. It seems to work correctly when the email comes in as UTF-8. </p>
<p>Any suggestions? Is there a way to convert the encoding before attempting to save?</p>
http://stackoverflow.com/questions/2220557/cakephp-appmodel-save-question1cakephp appmodel save questionjodeci2010-02-08T09:26:44Z2010-02-08T20:01:59Z
<p>I'm just getting familiar with cakephp (thanks to the developer before me), and ran into something funny. I have finally found out what went wrong, but still do not know why. In very pseudo code:</p>
<p>a controller function calls bar() twice in the same scope:</p>
<pre><code>$value = 'A';
$this->foo->bar($value);
// do other stuff
$value = 'B';
$this->foo->bar($value);
</code></pre>
<p>bar() basically just calls cakephp's save() model to write $value to table foobar$:</p>
<pre><code>$AppModel->save(array(
'AppModel'=> array('value'=>$value)
));
</code></pre>
<p>I expected that save() would create two rows in foobar$, however this was not the case. It first created a row with value A, then updated that row to value B. When the second call ran, it recognized the DB id generated by the previous call, decided it was the same entry and made it an update instead of insert. It sort of makes sense, but they still are separate calls, right? What obvious thing am I missing here? Thanks a lot.</p>
http://stackoverflow.com/questions/2197600/feedback-confirmation-pages-using-cake1feedback / confirmation pages using cakeadam 2010-02-04T05:48:58Z2010-02-08T15:04:18Z
<p>whats the best way to implement text feedback after entering the two fields and clicking SUBMIT?</p>
<p><a href="http://nyu.neighborrow.com/items" rel="nofollow">http://nyu.neighborrow.com/items</a></p>
http://stackoverflow.com/questions/2220722/subqueries-while-using-linkable-or-containable-behaviors-in-cakephp0Subqueries while using Linkable or Containable Behaviors in CakePHP?bakerjr2010-02-08T10:01:59Z2010-02-08T10:01:59Z
<p>Hi is there a way to create a subquery while using the Linkable or Containable behavior with CakePHP?</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/2212627/cake-php-use-of-table-relations0cake php use of table relationsudhaya2010-02-06T09:12:37Z2010-02-08T03:11:11Z
<p>Whats the usage of creation relations like </p>
<pre><code> var $belongsTo = array(
'UserType' => array(
'className' => 'UserType',
'foreignKey' => 'user_type_id',
'conditions' => '',
'fields' => '',
'order' => ''
)
);
//The Associations below have been created with all possible keys, those that are not needed can be removed
var $hasMany = array(
'UserOpenid' => array(
'className' => 'UserOpenid',
'foreignKey' => 'user_id',
'dependent' => true)
);
</code></pre>
<p>What if i added a table which created in the sense of "belongsTo", in "hasMany"?
Any error occurs.
How cake uses the relationships specified in the model?</p>
http://stackoverflow.com/questions/2219073/refreshing-or-double-clicking-on-a-link-too-quickly-causes-a-cakephp-app-using-th0Refreshing or double clicking on a link too quickly causes a CakePHP app using the Auth component to log the user outFrank2010-02-08T01:01:09Z2010-02-08T01:39:16Z
<p>I've noticed that when I refresh the page twice in a row or double click on a link, the user is automatically logged out. I'm using cakephp 1.2 and the Auth component. I don't have a lot of experience with CakePHP, any ideas what could cause this?</p>
http://stackoverflow.com/questions/2218075/using-git-with-your-cakephp-project0Using Git with your CakePHP Projecttrobrock2010-02-07T19:54:04Z2010-02-07T20:01:14Z
<p>I use git as my primary version control system, and have recently started using git on my CakePHP projects. This is my current .gitignore file:</p>
<pre><code>app/tmp
vendors/
</code></pre>
<p>As used in the cakephp git repo, but this causes a bit more work for me when deploying the project to a server, because I have to go in and create all the app/tmp/ sub-directories by hand before they will work correctly. Is there a way to set it up to ignore the contents on these folders, but to still have them under git control so they appear when I clone the repo into the hoted directory?</p>
<p>I also have been having an issue with my git index being reset while I am working on it, which is causing me to have to do a lot more commits than should be necessary, any ideas on that also?</p>
http://stackoverflow.com/questions/2216131/cake-layout-putting-text-to-the-right-of-the-data-fields0Cake Layout-- putting text to the right of the data fieldsadam 2010-02-07T06:03:21Z2010-02-07T06:25:12Z
<p><a href="http://nyu.neighborrow.com/items" rel="nofollow">http://nyu.neighborrow.com/items</a></p>
<p>should i be editing the items file or a separate layout controller file</p>
<pre><code><?php /* ITEMS - Index Template */ ?>
<h1> 1. Enter an item that you need, that can be used again when you are done.</h1>
<?php
print $form->create('Item', array('action' => 'index'));
print $form->input('Item.item');
print $form->input('User.email');
print $form->end('Submit');
?>
<?php echo $html->link(__('neigh*borrow, the communty for borrowing things you need when you need them. NYU students interested in participating in the BETA should enter an item they would like to borrow along with their .NYU.EDU email address. ', true), 'http://cakephp.org'); ?>
</code></pre>
http://stackoverflow.com/questions/2213614/cakephp-media-plugin-with-php-safe-mode0CakePHP Media plugin with php safe_modeLC-A2010-02-06T15:33:19Z2010-02-06T15:33:19Z
<p>Hi, i'm trying CakePHP( 1.2.6 ) and Media plugin( 0.60 ) on shared server with php_5.2.5( safe_mode : On ).</p>
<p>And upload jpeg file by media plugin, following error message apear on attachments.ctp( media plugin's element ).</p>
<blockquote>
<p>An error occured while transferring
the file.</p>
</blockquote>
<p>How can i fix this error without php cgi_mode on shared server ?</p>
<p>when i checked safe_mode turn off( on my local linux box), Media plugin is work.</p>
<p><a href="http://wiki.github.com/davidpersson/media/" rel="nofollow">http://wiki.github.com/davidpersson/media/</a></p>
http://stackoverflow.com/questions/2142591/names-of-html-form-naming-conventions1Names of HTML form naming conventionsRichard JP Le Guen2010-01-26T20:59:21Z2010-02-06T06:37:41Z
<p>In Rails and CakePHP1.2, forms tend to include input elements with names like the following:</p>
<pre><code><input name="comment[author]" />
</code></pre>
<p>Is there a formal name for the notation used in the "name" attribute?</p>
<p>Likewise, in CakePHP1.1 I do believe that the same would have looked like this:</p>
<pre><code><input name="comment/author" />
</code></pre>
<p>Again, is there a formal name for the notation used in the "name" attribute?</p>
http://stackoverflow.com/questions/1442324/how-to-password-protect-a-static-page-in-cakephp0How to password protect a static page in CakePHP?Dan Berlyoung2009-09-18T02:31:16Z2010-02-06T05:30:24Z
<p>I have a rather simple CakePHP app that uses the Auth component to restrict access to the admin funcitons. That all works fine and good but I use the Pages Controller to display the home page and Admin main page.</p>
<p>How can I set up auth to control access to pages like '/' for home and '/admin'?</p>
http://stackoverflow.com/questions/2207733/cakephp-customize-add-view-change-dropdownlist-to-radio-buttons0[CAKEPHP] Customize add view - Change dropdownlist to radio buttonsNoOne2010-02-05T14:14:26Z2010-02-06T00:10:49Z
<p>I have a add.ctp... In the model I want to add I have a relation belongsTo, so when I generate that add view he creates a dropdownlist input.</p>
<p>But I want to use radiobuttons instead... I already have the code of the radio button and inside the view I can get wich one is selected.</p>
<p>My problem is, how I pass that value to the controler inside the $this->data array? Or should I just use $_POST inside the controler and do a savefield after the record is created?</p>
http://stackoverflow.com/questions/2207983/cakephp-ctp-create-form-input-php0Cakephp ctp create form input - php udhaya2010-02-05T14:52:23Z2010-02-06T00:04:48Z
<p>i am creating a calender prog, using cakephp
when calling a method disp with month and year as params, it should disp the calender..</p>
<p><strong>this my index.ctp//$month int 1 to 12 //$mon[12]=='December'</strong></p>
<pre><code><?php echo $form->create('Calendar', array('action' => 'disp', 'class' => 'normal')); ?>
<?php
echo $form->input('month', array('options' => $mon, 'empty'=>$mon[$month]));
echo $form->input('year', array('options' => $yr, 'empty' => $year));
?>
<?php echo $form->end('Submit'); ?>
</code></pre>
<p>month contains jan to dec and years 1990 to 2010</p>
<p><strong>this is disp method</strong></p>
<pre><code>function disp()
{
$month= $this->data['Calendar']['month'];
$year= $this->data['Calendar']['year'];
$this->redirect(array('controller' => 'calendars', 'action' => 'index',$month,$year));
}
</code></pre>
<p>when calling function it displays the calender perfectly
my prob is the loaded month should select in drop down list
by default it shows the first value
i used <code>'empty'=>$mon[$month]</code> this disp the month but duplicate..</p>
<p>what to do to select the month in the list, which was displaying at current??</p>
http://stackoverflow.com/questions/2210011/where-should-one-store-the-cipher-key-when-using-aes-encryption-with-php2Where should one store the cipher key when using AES encryption with PHP?William Golden2010-02-05T19:58:30Z2010-02-05T20:10:03Z
<p>I am implementing AES-256 bit encrpytion in my web app:</p>
<p><a href="http://www.utoxin.name/2009/07/automatic-db-field-encryption-in-cakephp/" rel="nofollow">http://www.utoxin.name/2009/07/automatic-db-field-encryption-in-cakephp/</a></p>
<p>One of the steps says to store the cipher used and key in a boostrap file. But what is stopping someone from scanning the file system with PS or something and decrypting the data? </p>
<p>What is the best way to secure the data?</p>
http://stackoverflow.com/questions/308659/session-not-saving-when-moving-from-ssl-to-non-ssl2Session not saving when moving from ssl to non-sslJustin2008-11-21T12:53:19Z2010-02-05T18:35:21Z
<p>I have a login screen that I force to be ssl, so like this:
<a href="https://www.foobar.com/login" rel="nofollow">https://www.foobar.com/login</a>
then after they login, they get moved to the homepage:
<a href="https://www.foobar.com/dashbaord" rel="nofollow">https://www.foobar.com/dashbaord</a></p>
<p>However, I want to move people off of SSL once logged in (to save CPU), so just after checking that they are in fact logged in on <a href="https://www.foobar.com/dashbaord" rel="nofollow">https://www.foobar.com/dashbaord</a> I move them to
<a href="http://www.foobar.com/dashbaord" rel="nofollow">http://www.foobar.com/dashbaord</a></p>
<p>Well this always seems to wipe out the session variables, because when the page runs again, it confirms they are logged in (as all pages do) and session appears not to exist, so it moves them to the login screen.</p>
<p>Oddness/findings:</p>
<ol>
<li>List item</li>
<li>The second login always works, and happily gets me to <a href="http://www.foobar.com/dashbaord" rel="nofollow">http://www.foobar.com/dashbaord</a></li>
<li>It successfully creates a cookie the first login</li>
<li>If I login twice, then logout, and login again, I don't need two logins (I seem to have traced this to the fact that the cookie exists). If I delete the cookie, I'm back to two logins.</li>
<li>After the second login, I can move from non-ssl from ssl and the session persists.</li>
<li>On the first login, the move to the non-ssl site wipes out the session entirely, manually moving back to the ssl site still forces me to login again.</li>
<li>The second login using the exact same mechanism as the first, over ssl</li>
</ol>
<p>What I tried:</p>
<ol>
<li>Playing with Cake's settings for security.level and session.checkagent - nothing</li>
<li>Having cake store the sessions in db (as opposed to file system) - nothing</li>
<li>Testing in FF, IE, Chrome on an XP machine.</li>
</ol>
<p>So I feel like this is something related to the cookie being created but not being read. </p>
<p>Environment:
1. Debian
2. Apache 2
3. Mysql 4
4. PHP 5
5. CakePHP
6. Sessions are being saved PHP default, as files</p>
http://stackoverflow.com/questions/2192956/cakephp-cakeschema-question0CakePHP CakeSchema questionblackliteon2010-02-03T15:15:35Z2010-02-05T15:47:51Z
<p>Hi!
If there any manual or article on how use CakeShema?
I'm interested in using models & using bare sql in before() and after() methods.</p>
http://stackoverflow.com/questions/2206121/how-to-group-by-and-order-by-datetime-cakephp0How to group by and order By datetime Cakephp?bakerjr2010-02-05T09:19:10Z2010-02-05T10:57:41Z
<p>Hi how do I group by and order by a datetime field with CakePHP?</p>
http://stackoverflow.com/questions/2205559/populating-dropdown-menu-with-json-data0Populating dropdown menu with JSON Datakwhohasamullet2010-02-05T07:09:34Z2010-02-05T07:40:53Z
<p>Hi Guys,</p>
<p>Im tyring to use AJAX to populate a dropdown box based on the selection of another dropdown. I followed a tutorial using jQuery located here - <a href="http://remysharp.com/2007/01/20/auto-populating-select-boxes-using-jquery-ajax/" rel="nofollow">http://remysharp.com/2007/01/20/auto-populating-select-boxes-using-jquery-ajax/</a> and have altered the select box ID names in the select box names in the script.</p>
<p>When a chagne the value of the main checkbox the ajax is sent and returns as below:</p>
<pre><code>{"1":"Kieran Hutchinson","2":"Caleb Tan","3":""}
</code></pre>
<p>THis is slightly different to the JSON string that is returned in the tutorials code which looks like this</p>
<pre><code>[{optionValue:10, optionDisplay: 'Remy'}, {optionValue:11, optionDisplay: 'Arif'}, {optionValue:12, optionDisplay: 'JC'}]
</code></pre>
<p>Im thinking this is the issue but i have no idea how to get the correct values out of my JSON response.</p>
<p>The javascript is as below:</p>
<pre><code>$(function(){
$("select#ContactCompanyId").change(function(){
$.getJSON("contactList",{id: $(this).val(), ajax: 'true'}, function(j){
var options = '';
for (var i = 0; i < j.length; i++) {
options += '<option value="' + j[i].optionValue + '">' + j[i].optionDisplay + '</option>';
}
$("select#QuoteContactId").html(options);
})
})
})
</code></pre>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/2198958/timer-in-web-application0Timer in Web ApplicationFuruno2010-02-04T10:40:05Z2010-02-04T17:05:09Z
<p>I'm trying to create a web based test (as in exam) application with CakePHP.</p>
<p>When a test is started the webserver stores the exact start time in session. When the test ended and the client submit the answers to the webserver, the webserver will recheck the submission time with the previous start time. If the total test time is within a specified error margin (e.g. 5 min), the test result will be accepted.</p>
<p>I've done this part already and currently using the <a href="http://keith-wood.name/countdown.html" rel="nofollow">jQuery Countdown Plugin</a> to display the timer in the client (browser). This timer is also used to automatically submit the form if it's expired.</p>
<p>The problem is refreshing the page will reset the timer. Going back and forward will also do so (as it's essentially refreshing).</p>
<p>Altough the total test time taken is recorded and verified in the server (if a user tampered with the timer and submitted the test, the system will reject it), is there anyway to prevent this or at least give a warning, or even better, submit the test automatically in the event of user tampering (which of course will be rejected)?</p>
<p>I know I might be able to do that by using AJAX (still a beginner in this), but the higher-ups told me not do to so because of bandwidth limitation (which I don't think so). So... anyone?</p>
<p>Thanks before!</p>
http://stackoverflow.com/questions/2195068/cakephp-pagination-problem-with-next-previous0Cakephp pagination problem with next/previousNicolas2010-02-03T20:09:38Z2010-02-04T15:08:12Z
<p>Hello,</p>
<p>Let's say I have this page with pagination:</p>
<p>localhost/fr/users/index/page:1</p>
<p>I see the correct results for page 1 based on how I have defined the paginate var in my controller. But when I click the next button, the url change to page:2 but the results don't change and are the same as page:1, same thing for page:3, page:4 and so on...</p>
<p>If I first sort a column, let's say username, then I can use the previous/next link without any problem, the data change on each page.</p>
<p>The only thing I can think of that could cause me problem is that I use a language param in my urls but I have no idea how to fix this...</p>
<p>I'm currently using Cake 1.2.5. I also tried with 1.3 beta with same results.</p>
<p>Ok so here's my Users controller code:</p>
<pre><code>var $paginate = array('limit'=>'5');
function index() {
$this->User->recursive = 0;
$this->set('users', $this->paginate());
}
</code></pre>
<p>I'm using teknoid tutorial for language switching:</p>
<p><a href="http://teknoid.wordpress.com/2008/11/28/cakephp-url-based-language-switching-for-i18n-and-l10n-internationalization-and-localization/" rel="nofollow">URL-based language switching...</a></p>
<p>language param added through app_helper.php </p>
<pre><code>function url($url = null, $full = false) {
if(!isset($url['language']) && isset($this->params['language'])) {
$url['language'] = $this->params['language'];
}
return parent::url($url, $full);
}
</code></pre>
<p>and language switching done using a method in the app_controller.php:</p>
<pre><code>function _setLanguage() {
if ($this->Cookie->read('lang') && !$this->Session->check('Config.language')) {
$this->Session->write('Config.language', $this->Cookie->read('lang'));
}
else if (isset($this->params['language']) && ($this->params['language']
!= $this->Session->read('Config.language'))) {
$this->Session->write('Config.language', $this->params['language']);
$this->Cookie->write('lang', $this->params['language'], null, '20 days');
}
}
</code></pre>