これは、エラーを生成している add.ctp ファイルです
<?php
echo $form->create('Category');
echo $form->input('name');
echo $form->end('Save Post');
?>
これは、add.ctp に関連付けられた CategoriesController.php ファイルです。
<?php
class CategoriesController extends AppController {
var $name = 'Categories';
function index() {
$this->set('categories', $this->Category->find('all'));
}
function add() {
if (!empty($this->data)) {
if ($this->Category->save($this->data)) {
$this->Session->setFlash('Your category has been saved.');
$this->redirect(array('action' => 'index'));
}
}
}
}
?>
次のエラー メッセージが表示され続けます。
Call to a member function create() on a non-object