I can't seem to find why this doesn't work. I know it's vague, but it's really all there is to say. Checking /posts I can't add the author. (Yes, I added one on /users)
Database tables: users:
id int(11)
username varchar(50)
password varchar(50)
created datetime
modified datetime
posts:
id int(11)
title varchar(50)
body text
created datetime
modified datetime
user_id int(11)
Models User:
class User extends AppModel {
var $name = 'User';
var $hasMany = 'Post';
}
Post:
class Post extends AppModel {
var $name = 'Post';
var $belongsTo = 'User';
}
Controllers both scaffold.
