Quote:
Originally Posted by Delphiprogrammi
Phrases will not work you could try enabling debuginfo in that file
find
PHP Code:
$userdm->save();
replace with
PHP Code:
$userdm->pre_save();
if(!empty($userdm->errors))
{
die(print_r($userdm->errors));
}
else
{
$userdm->save();
}
if you try to run it now it should come up with error messages now if anything is wrong
|
Thanks. I went to try that with the current kill_warns.php and now it works. :dunno: