【发布时间】:2013-06-20 16:51:09
【问题描述】:
我刚刚将我的网站从本地主机移动到真实主机......问题就开始了。
在我的 Windows 机器上,关系有效,但在我的主机上,kohana 抛出 Kohana_Exception [ 0 ]: The klinikas property does not exist in the Model_User class
我的 Model_User 类包含这些关系
protected $_has_many = array(
'klinikas' => array('model'=>'klinika','through'=>'klinikas_users'),
'roles' => array('model' => 'role', 'through' => 'roles_users'),
);
问题是什么导致了这个问题,我该如何解决这个问题?
【问题讨论】:
标签: php kohana-3 kohana-orm