Quote:
Originally Posted by EdQ
Any idea if using the old kill_warns.php will be a problem?
|
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