You cannot post messages because only members can post, and you are not currently a member.
Description:
Search this group before posting anything. There are over 50,000 posts and it's very likely your question has already been answered.
Visit the IRC channel #cakephp at irc.freenode.net.
The group is moderated to prevent spam, so please be patient if you are new member.
|
|
|
Getting started: Where To Get Help
   
|
| |
[link]
Cheers,
AD
PS. If you've been on this group for more than a week or so, you may
have noticed that the google group pages/files have been/are in the
process of being removed. The pages have been integrated to the
cookbook to allow moderation, prevent spamming and take a step towards... more »
|
|
Release: CakePHP 1.2.5
   
|
| |
The CakePHP development team is happy to announce CakePHP 1.2.5[1].
1.2.5 is a bug fix release of the latest stable branch. Check the
changelog[2] for all the changes.
CakePHP 1.2.5 Includes almost 40 commits and more than 20 fixes.
Furthermore, due to popular demand CakePHP 1.2.5 is compatible with... more »
|
|
CakeFest IV - America - Help us pick a location!
|
| |
Hi all,
The CakePHP team has been considering the location for the next upcoming CakeFest.
We've decided to bring it back home to the United Sates of America.
Thus far we haven't chosen a location for the event, but to ensure we reach as many people as possible, we'd like your opinion on where we... more »
|
|
CakePHP performance 1.2 - is future any better?
|
| |
Hello!
We are running quite growing social network in Poland for students at
CakePHP, now 70k users and 0.5M hits a day.
We have 3 app servers for it with CakePHP 1.2.5 installed on each.
Servers are Quad Core i7 920 + 8G RAM, so rather good machines.
DB on separate box + nginx frontend for static content on other box.... more »
|
|
Beginning
|
| |
Hi guys...
Sorry for any typos, I'm from Brazil.
I'm new on cakePHP and I'd like to now one little thing.
When I start one project, do I have to create a folder in the cake
directory? Or the cake directory is my project folder?!
I tried to watch a screencast on the Blog tutorial but I'm having some... more »
|
|
Pagination on cached data?
|
| |
Hi dudes,
is there a way to paginate cached data? I wanna cache the result from
a $controller->paginate() request an use it the next time the page is
requested. But i've i bind the cached data for the view, i've the
problem that paginate() wasn't called so the paginate-helper functions
in the view dont work ("Undefined variable: paginator").... more »
|
|
how do you show validation errors in multi-model form?
|
| |
Hello.
i have a form like this one:
echo $form->create("Order");
echo $form->input("code")
for($i=0,$i<10,$i++) {
echo $form->input("Item.$i.code");
echo $form->input("Item.$i.quantity ");
...
how do you show errors if more than 1 row fails validation?
div @ the end of the form?... more »
|
|
need a little help with model::saveAll function
|
| |
hello
i have a form like this:
echo $form->create("Order");
echo $form->input("code")
for($i=0,$i<10,$i++) {
echo $form->input("Item.$i.code");
echo $form->input("Item.$i.quantity ");
...echo $form->end();
i'm saving this form using saveAll with "validate" option set to
"first"... more »
|
|
alphaNumeric not allowing valid entry (1.2.5)
|
| |
Hi All,
I have PHP 5.1.6 with CakePHP 1.2.5 and I am having problems with
validating user entry using the alphaNumeric rule. All other rules
seem to work ok, so I am guessing it is an issue relating to how my
version of PHP handles regex.
Does anyone have any pointers or resources that could help me resolve... more »
|
|
requireAuth not working as expected (Security Component)
|
| |
I read this...
"The authentication key is regenerated every time a form is evaluated
with requireAuth. This means that if a user submits a form with a key
that has already been used, the form submission will be considered
invalid. There are several cases in which this could occur, including
but not limited to using multiple browser windows, using the Back... more »
|
|
About multilingual websites
|
| |
Hi there,
One month ago, I did a multilanguage website using CakePHP but putting
all the multilangual content in my dB.
From what I read today, this was the right way to display short
messages in various languages with CakePHP :
[link]... more »
|
|
Pass variables to Javascript
|
| |
Hi there,
I've been using CakePHP since 6 months and never had a single problem
BUT now I have one issue I can't solve. Here it is:
I need to Preload some images for my website. I did it using JQuery
and it perfectly works:
CODE
$(document).ready(function(){
// Preload
$.preloadImages("img/button_ho me_en_over.gif", "img/... more »
|
|
ClassRegistry::int() instead of $uses use on AppController
|
| |
Good afternoon
I'm using CakePHP to develop a system and would like to know how can I
use the ClassResitry: init () instead of $uses.
Currently the model of paper is as follows:
<?php
class Livro extends AppModel{
var $name = 'Livro';
var $Categoria = ClassRegistry::int('Model','Ca tegoria');... more »
|
|
|