0

我正在从 mysql 数据库切换到 sql server。新数据库与以前的数据库相同。但是在创建用户操作中,我遇到了这种类型的错误。

include( .php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory

谁能建议我能做些什么来解决这个问题?

问题出现在这条线上

$profile->attributes = $_POST['YumProfile'];

我从代码中检查了所有对象都在工作并且我正在$_POST['YumProfile']正确地获得价值。

实际上,此逻辑与其他表一起正常工作user并且正在插入值,但是当我尝试将带有表单的数据插入profile表中时,它会显示这种类型的错误。从输入看一切都很好,但我不明白为什么

 $profile->attributes = $_POST['YumProfile'];

这条线甚至会给出错误,profile->validate()并且在正常工作并填充正确的值profile->save()时也会给出此错误。$profile->attributes$_POST['YumProfile']

4

1 回答 1

0

似乎您的模型的验证规则有问题。检查那里的一切是否到位,可能你错过了什么。这是一个api文档

于 2012-05-24T15:04:40.320 回答