Unserialized() Error

Hi,

i have this within my project:
Notice: unserialize(): Error at offset 464 of 500 bytes in E:\WEB\Project2020\phpfn.php on line 10962and when i trace it comes from this section on phpfn.php :protected function loadProfile($profile)
{
$ar = unserialize(strval($profile));
if (is_array($ar))
$this->Profile = array_merge($this->Profile, $ar);
}anyone could help me to solved this.thanks

Make sure in your users table has field Profile with text or memo field type.You may also refer to the demo project file, and check/compare with the Profile field in employees table.