Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Any ideas on how to debug a modified field that is not being updated? The created field works fine.

I'm not sure what code you would need to look at so let me know!

Thanks

share|improve this question

4 Answers

up vote 4 down vote accepted

Like Anh Pham said, the modified and created field need to be DATETIME and they also need to default to NULL, as explained in the CakePHP book about the subject.

share|improve this answer
Yeap, they are both DATETIME, and default to NULL. Created does work, however when calling $this->Model->save() in the edit function it does not update the modified field. – alexBrand Aug 1 '11 at 13:50
2  
you probably provide those fields again in the form. those are not allowed to be present in the form or on save to be updated correctly! – mark Aug 1 '11 at 13:58

That field should be named 'modified' with 'datetime' type. Cake should update the field automatically for you. If you want to check, just query it, or look into the database.

share|improve this answer

You should try checking if you didn't use

 $this->ModelName->read(NULL, $id); 

before saving your data, if you think you didn't - double check it

share|improve this answer

The problem might also arise if you use manual update queries. The field is updated only when you use Cake's own functions.

share|improve this answer
I am using the Model->save() function. – alexBrand Aug 1 '11 at 13:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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