I installed 0.9.6 today, and when I go to create a new user through the web signup form, for the blogs, it will not create a web user,
it just pops up an error: "Missing user name. Please insert a user name"
This is a bug, see
http://modxcms.com/forums/index.php/topic,14253.msg97219.html#msg97219Easy to fix (but hard to find out): just remove the wsu_ part of the names of the inputs in the template for the web signup.
But when that is done you will have problems if displaying the websignup form at the same time as displaying the side bar login form because there is a naming conflict.
Sorry for this confusing answer, it's early here

I hope some one smarter than me will greate a new login system based on eForm, the current one is not really good. I tried to make a new one based on eForm, but came up with no good solution so far.
I got it fixed without any conflicts with the sidebar login by just changing only the values in websignup.inc.php to the same that are in the FormSignup chunk.
starting at line 28:
$username = $modx->db->escape($modx->stripTags($_POST['username']));
to
$username = $modx->db->escape($modx->stripTags($_POST['wsu_username']));
line 30:
$email = $modx->db->escape($modx->stripTags($_POST['email']));
to
$email = $modx->db->escape($modx->stripTags($_POST['wsu_email']));
line 31:
$password = $modx->db->escape($modx->stripTags($_POST['password']));
to
$password = $modx->db->escape($modx->stripTags($_POST['wsu_password']));
Then at line 72:
if ($_POST['password']!=$_POST['confirmpassword']) {
Change to:
if ($_POST['wsu_password']!=$_POST['confirmpassword']) {
hope this helps
