All over sudden, no one can register by my site. I disabled all the hooks and I still get
Quote:
Fatal error: Unable to proceed with save while $errors array is not empty in class vb_datamanager_user in /includes/class_dm.php on line 779
|
How can I troubleshoot this. Looks like there is an empty field somewhere
I solved my problem, but I need some help please.
In class_dm_user I found an entry that I removed: the last entry drafts.
Now that hack is very important for me. My question is: how do I handle it? Will it be ok if I put it back and make it not required?
Or do I need to also put somekind of entry in register.php?
Thank you.
Quote:
var $validfields = array(
'userid' => array(TYPE_UINT, REQ_INCR, VF_METHOD, 'verify_nonzero'),
'username' => array(TYPE_STR, REQ_YES, VF_METHOD),
'drafts' => array(TYPE_INT, REQ_YES),
|