Got a bit deeper in it. The registration on the website is what causes it. Ill just rewrite the thing. (/www/loader.php) Fix: loader.php Line 252 from: Code: mysql_query("INSERT INTO users (username, password, email) VALUES ('".beveilig($_POST['user'])."', '".beveilig($pass)."', '".beveilig($_POST['email'])."')"); to: Code: mysql_query("INSERT INTO users (username, password, email, signedup, lastactivity, club_lastupdate) VALUES ('".beveilig($_POST['user'])."', '".beveilig($pass)."', '".beveilig($_POST['email'])."', NOW(), NOW(), NOW())");