Column count doesn't match value count at row 1
Brought to you by:
the_bude
When I try to register I get this error: "Column count doesn't match value count at row 1" so I got into the PHP and you're missing a field at the end.
Here's the fixed query (line 20 in register.php):
$query = "INSERT INTO mp3act_users VALUES (NULL,\"".$_POST['register']['new_username']."\",\"".$_POST['register']['firstname']."\",\"".$_POST['register']['lastname']."\", PASSWORD(\"".$_POST['register']['password']."\"),1,NOW(),1,\"".$_POST['register']['email']."\",\"streaming\",0,\"s\",\"$md5\",\"\",\"\",1,\"\",\"\",\"\",0)";
It was missing a /"/" blank field at the end.
Logged In: YES
user_id=1550808
Originator: YES
whoops... thats \ not / in my last line...
Logged In: NO
booo
Logged In: NO
thanks for fixing that. I was having the same problem