我正在从 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']