vote up 0 vote down star

Hi,

CakePHP is driving me nuts!

Here is my code:

if($this->Page->save($datavalue))
{
$this->Session->setFlash('Page content updated successfully.');
}
else
{
$this->Session->setFlash('Page content was not updated.');
}

it always says updated successfully, but nothing is updated in the database. Here is the content of $datavalue:

Array
(
    [Page] => Array
        (
            [id] => 1
            [name] => home
            [title] => Home page1
            [meta_keywords] => keyword1
            [meta_description] => this is home page
            [content] => home page content
            [sidebar] => sidebar content
        )

)

I am new to CakePHP, can you please give me a general idea of what could be wrong with it?

Thanks in advance.

-happyhardik

Here is my model code:

<?php

class Page extends AppModel
{   
    var $name='Page';
    var $useTable = false;    
}
?>

Hope this helps! I tried to add this two lines before save, in a hope that it will help:

$this->Page->set($datavalue);
$this->Page->id = $id;

but none of them helped.


Here is the table structure:

id               int(10) UNSIGNED  auto_increment  Primary
name             varchar(250) 
title            varchar(250) 
meta_keywords    text   
meta_description text
content          text 
sidebar          text
created          datetime
modified         datetime

Let me know, if need any more information. Thanks for reading.

flag

75% accept rate
Set debug to 2 in core.php and tell us what your SQL debug looks like. – deceze Nov 5 at 5:45
Its set to 3, the bottom of the page says: (default) 0 query took ms – happyhardik Nov 5 at 5:53
Do you have any validation rules defined for Page? – dhofstet Nov 5 at 6:10
Are you doing anything funky in the Page model, like overriding the save() method? – deceze Nov 5 at 6:10
I don't have any validation or im not overiding the save method, check my model code above. I don't knw how to add funky stuff in Cake, as I am still figuring out what it is. :) – happyhardik Nov 5 at 6:40

1 Answer

vote up 3 vote down check
var $useTable = false;

Well, you're not using any table, which makes save() pretty much a NOOP. :-)

Remove that line and you should be fine.

link|flag
Thanks for the answer Deceze. It worked. – happyhardik Nov 5 at 8:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.